CfnControlPanelMixinProps
- class aws_cdk.mixins_preview.aws_route53recoverycontrol.mixins.CfnControlPanelMixinProps(*, cluster_arn=None, name=None, tags=None)
Bases:
objectProperties for CfnControlPanelPropsMixin.
- Parameters:
cluster_arn (
Optional[str]) – The Amazon Resource Name (ARN) of the cluster for the control panel.name (
Optional[str]) – The name of the control panel. You can use any non-white space character in the name.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.mixins_preview.aws_route53recoverycontrol import mixins as route53recoverycontrol_mixins cfn_control_panel_mixin_props = route53recoverycontrol_mixins.CfnControlPanelMixinProps( cluster_arn="clusterArn", name="name", 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.