CfnConfigurationPropsMixin

class aws_cdk.mixins_preview.aws_amazonmq.mixins.CfnConfigurationPropsMixin(props, *, strategy=None)

Bases: Mixin

Creates a new configuration for the specified configuration name.

Amazon MQ uses the default configuration (the engine type and version).

See:

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

CloudformationResource:

AWS::AmazonMQ::Configuration

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.mixins_preview import mixins
from aws_cdk.mixins_preview.aws_amazonmq import mixins as amazonmq_mixins

cfn_configuration_props_mixin = amazonmq_mixins.CfnConfigurationPropsMixin(amazonmq_mixins.CfnConfigurationMixinProps(
    authentication_strategy="authenticationStrategy",
    data="data",
    description="description",
    engine_type="engineType",
    engine_version="engineVersion",
    name="name",
    tags=[amazonmq_mixins.CfnConfigurationPropsMixin.TagsEntryProperty(
        key="key",
        value="value"
    )]
),
    strategy=mixins.PropertyMergeStrategy.OVERRIDE
)

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

Parameters:

Methods

apply_to(construct)

Apply the mixin properties to the construct.

Parameters:

construct (IConstruct)

Return type:

IConstruct

supports(construct)

Check if this mixin supports the given construct.

Parameters:

construct (IConstruct)

Return type:

bool

Attributes

CFN_PROPERTY_KEYS = ['authenticationStrategy', 'data', 'description', 'engineType', 'engineVersion', 'name', 'tags']

Static Methods

classmethod is_mixin(x)

(experimental) 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.

Stability:

experimental

TagsEntryProperty

class CfnConfigurationPropsMixin.TagsEntryProperty(*, key=None, value=None)

Bases: object

The list of all tags associated with this configuration.

Parameters:
  • key (Optional[str])

  • value (Optional[str])

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configuration-tagsentry.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.mixins_preview.aws_amazonmq import mixins as amazonmq_mixins

tags_entry_property = amazonmq_mixins.CfnConfigurationPropsMixin.TagsEntryProperty(
    key="key",
    value="value"
)

Attributes

key

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configuration-tagsentry.html#cfn-amazonmq-configuration-tagsentry-key

Type:

see

value

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configuration-tagsentry.html#cfn-amazonmq-configuration-tagsentry-value

Type:

see