Interface CfnConfigurationAssociationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConfigurationAssociationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:55.329Z")
@Stability(Stable)
public interface CfnConfigurationAssociationProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnConfigurationAssociation.
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.*;
CfnConfigurationAssociationProps cfnConfigurationAssociationProps = CfnConfigurationAssociationProps.builder()
.broker("broker")
.configuration(ConfigurationIdProperty.builder()
.id("id")
.revision(123)
.build())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConfigurationAssociationPropsstatic final classAn implementation forCfnConfigurationAssociationProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The broker to associate with a configuration.The configuration to associate with a broker.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBroker
The broker to associate with a configuration. -
getConfiguration
The configuration to associate with a broker. -
builder
-