Interface CfnConfigurationAssociationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConfigurationAssociationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
date="2025-11-04T09:27:33.123Z")
@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();
- See Also:
-
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.- See Also:
-
getConfiguration
The configuration to associate with a broker.Returns union: either
IResolvableorCfnConfigurationAssociation.ConfigurationIdProperty- See Also:
-
builder
-