CfnClusterMixinProps

class aws_cdk.mixins_preview.aws_route53recoverycontrol.mixins.CfnClusterMixinProps(*, name=None, network_type=None, tags=None)

Bases: object

Properties for CfnClusterPropsMixin.

Parameters:
  • name (Optional[str]) – Name of the cluster. You can use any non-white space character in the name except the following: & > < ‘ (single quote) “ (double quote) ; (semicolon).

  • network_type (Optional[str]) – The network-type can either be IPV4 or DUALSTACK.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – The tags associated with the cluster.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53recoverycontrol-cluster.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_route53recoverycontrol import mixins as route53recoverycontrol_mixins

cfn_cluster_mixin_props = route53recoverycontrol_mixins.CfnClusterMixinProps(
    name="name",
    network_type="networkType",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

name

Name of the cluster.

You can use any non-white space character in the name except the following: & > < ‘ (single quote) “ (double quote) ; (semicolon).

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53recoverycontrol-cluster.html#cfn-route53recoverycontrol-cluster-name

network_type

The network-type can either be IPV4 or DUALSTACK.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53recoverycontrol-cluster.html#cfn-route53recoverycontrol-cluster-networktype

tags

The tags associated with the cluster.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53recoverycontrol-cluster.html#cfn-route53recoverycontrol-cluster-tags