CfnConfigurationAssociationPropsMixin

class aws_cdk.cfn_property_mixins.aws_amazonmq.CfnConfigurationAssociationPropsMixin(props, *, strategy=None)

Bases: Mixin

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configurationassociation.html

CloudformationResource:

AWS::AmazonMQ::ConfigurationAssociation

Mixin:

true

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.cfn_property_mixins import aws_amazonmq as amazonmq
import aws_cdk as cdk

# merge_strategy: cdk.IMergeStrategy

cfn_configuration_association_props_mixin = amazonmq.CfnConfigurationAssociationPropsMixin(amazonmq.CfnConfigurationAssociationMixinProps(
    broker="broker",
    configuration=amazonmq.CfnConfigurationAssociationPropsMixin.ConfigurationIdProperty(
        id="id",
        revision=123
    )
),
    strategy=merge_strategy
)

Create a mixin to apply properties to AWS::AmazonMQ::ConfigurationAssociation.

Parameters:

Methods

apply_to(construct)

Apply the mixin properties to the construct.

Parameters:

construct (IConstruct)

Return type:

None

supports(construct)

Check if this mixin supports the given construct.

Parameters:

construct (IConstruct)

Return type:

bool

Attributes

CFN_PROPERTY_KEYS = ['broker', 'configuration']

Static Methods

classmethod is_mixin(x)

Checks if x is a Mixin.

Parameters:

x (Any) – Any object.

Return type:

bool

Returns:

true if x is an object created from a class which extends Mixin.

ConfigurationIdProperty

class CfnConfigurationAssociationPropsMixin.ConfigurationIdProperty(*, id=None, revision=None)

Bases: object

A list of information about the configuration.

Parameters:
  • id (Optional[str]) – Required. The unique ID that Amazon MQ generates for the configuration.

  • revision (Union[int, float, None]) – The revision number of the configuration.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html

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.cfn_property_mixins import aws_amazonmq as amazonmq

configuration_id_property = amazonmq.CfnConfigurationAssociationPropsMixin.ConfigurationIdProperty(
    id="id",
    revision=123
)

Attributes

id

Required.

The unique ID that Amazon MQ generates for the configuration.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-id

revision

The revision number of the configuration.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configurationassociation-configurationid.html#cfn-amazonmq-configurationassociation-configurationid-revision