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-12-17T21:37:25.253Z")
@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() .engineType("engineType") .name("name") // the properties below are optional .authenticationStrategy("authenticationStrategy") .data("data") .description("description") .engineVersion("engineVersion") .tags(List.of(TagsEntryProperty.builder() .key("key") .value("value") .build())) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnConfigurationProps
static final class
An implementation forCfnConfigurationProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
Optional.default String
getData()
The base64-encoded XML configuration.default String
The description of the configuration.The type of broker engine.default String
The 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
-
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:
-
getData
The base64-encoded XML configuration.- 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.Builder
ofCfnConfigurationProps
-