CfnConfigurationAssociationProps
- class aws_cdk.aws_amazonmq.CfnConfigurationAssociationProps(*, broker, configuration)
Bases:
objectProperties for defining a
CfnConfigurationAssociation.- Parameters:
broker (
str) – ID of the Broker that the configuration should be applied to.configuration (
Union[IResolvable,ConfigurationIdProperty,Dict[str,Any]]) – Returns information about all configurations.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_amazonmq as amazonmq cfn_configuration_association_props = amazonmq.CfnConfigurationAssociationProps( broker="broker", configuration=amazonmq.CfnConfigurationAssociation.ConfigurationIdProperty( id="id", revision=123 ) )
Attributes
- broker
ID of the Broker that the configuration should be applied to.
- configuration
Returns information about all configurations.