Interface CfnConfigurationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConfigurationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:03.268Z")
@Stability(Stable)
public interface CfnConfigurationProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnConfiguration.
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")
.name("name")
// the properties below are optional
.authenticationStrategy("authenticationStrategy")
.description("description")
.engineVersion("engineVersion")
.tags(List.of(TagsEntryProperty.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConfigurationPropsstatic final classAn implementation forCfnConfigurationProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringOptional.getData()The base64-encoded XML configuration.default StringThe description of the configuration.The type of broker engine.default StringThe version of the broker engine.getName()The name of the configuration.default List<CfnConfiguration.TagsEntryProperty>getTags()Create tags when creating the configuration.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getData
The base64-encoded XML configuration.- See Also:
-
getEngineType
The type of broker engine.Note: Currently, Amazon MQ only supports ACTIVEMQ for creating and editing broker configurations.
- See Also:
-
getName
The name of the configuration.This value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). This value must be 1-150 characters long.
- See Also:
-
getAuthenticationStrategy
Optional.The authentication strategy associated with the configuration. The default is
SIMPLE.- See Also:
-
getDescription
The description of the configuration.- See Also:
-
getEngineVersion
- See Also:
-
getTags
Create tags when creating the configuration.- See Also:
-
builder
- Returns:
- a
CfnConfigurationProps.BuilderofCfnConfigurationProps
-