CfnControlPanelProps
- class aws_cdk.aws_route53recoverycontrol.CfnControlPanelProps(*, name, cluster_arn=None, tags=None)
Bases:
object
Properties for defining a
CfnControlPanel
.- Parameters:
name (
str
) – The name of the control panel. You can use any non-white space character in the name.cluster_arn (
Optional
[str
]) – The Amazon Resource Name (ARN) of the cluster for the control panel.tags (
Optional
[Sequence
[Union
[CfnTag
,Dict
[str
,Any
]]]]) – The tags associated with the control panel.
- 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_control_panel_props = route53recoverycontrol.CfnControlPanelProps( name="name", # the properties below are optional cluster_arn="clusterArn", tags=[CfnTag( key="key", value="value" )] )
Attributes
- cluster_arn
The Amazon Resource Name (ARN) of the cluster for the control panel.
- name
The name of the control panel.
You can use any non-white space character in the name.
- tags
The tags associated with the control panel.