CfnClusterProps
- class aws_cdk.aws_route53recoverycontrol.CfnClusterProps(*, name, tags=None)
Bases:
object
Properties for defining a
CfnCluster
.- Parameters:
name (
str
) – Name of the cluster. You can use any non-white space character in the name except the following: & > < ‘ (single quote) “ (double quote) ; (semicolon).tags (
Optional
[Sequence
[Union
[CfnTag
,Dict
[str
,Any
]]]]) – The tags associated with the cluster.
- 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_route53recoverycontrol as route53recoverycontrol cfn_cluster_props = route53recoverycontrol.CfnClusterProps( name="name", # the properties below are optional 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).
- tags
The tags associated with the cluster.