@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:36.011Z") @Stability(value=Stable) public interface CfnConfigurationProps extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.amazonmq.*;
CfnConfigurationProps cfnConfigurationProps = CfnConfigurationProps.builder()
.data("data")
.engineType("engineType")
.engineVersion("engineVersion")
.name("name")
// the properties below are optional
.authenticationStrategy("authenticationStrategy")
.description("description")
.tags(List.of(TagsEntryProperty.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnConfigurationProps.Builder
A builder for
CfnConfigurationProps |
static class |
CfnConfigurationProps.Jsii$Proxy
An implementation for
CfnConfigurationProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnConfigurationProps.Builder |
builder() |
default String |
getAuthenticationStrategy()
Optional.
|
String |
getData()
The base64-encoded XML configuration.
|
default String |
getDescription()
The description of the configuration.
|
String |
getEngineType()
The type of broker engine.
|
String |
getEngineVersion()
The version of the broker engine.
|
String |
getName()
The name of the configuration.
|
default List<CfnConfiguration.TagsEntryProperty> |
getTags()
Create tags when creating the configuration.
|
@Stability(value=Stable) @NotNull String getData()
@Stability(value=Stable) @NotNull String getEngineType()
Note: Currently, Amazon MQ only supports ACTIVEMQ for creating and editing broker configurations.
@Stability(value=Stable) @NotNull String getEngineVersion()
@Stability(value=Stable) @NotNull String getName()
This value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). This value must be 1-150 characters long.
@Stability(value=Stable) @Nullable default String getAuthenticationStrategy()
The authentication strategy associated with the configuration. The default is SIMPLE .
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default List<CfnConfiguration.TagsEntryProperty> getTags()
@Stability(value=Stable) static CfnConfigurationProps.Builder builder()
CfnConfigurationProps.Builder of CfnConfigurationPropsCopyright © 2022. All rights reserved.