interface CfnControlPanelMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Route53RecoveryControl.CfnControlPanelMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsroute53recoverycontrol#CfnControlPanelMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.route53recoverycontrol.CfnControlPanelMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_route53recoverycontrol.CfnControlPanelMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_route53recoverycontrol » CfnControlPanelMixinProps |
Properties for CfnControlPanelPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_route53recoverycontrol as route53recoverycontrol } from '@aws-cdk/cfn-property-mixins';
const cfnControlPanelMixinProps: route53recoverycontrol.CfnControlPanelMixinProps = {
clusterArn: 'clusterArn',
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| cluster | string | ICluster | The Amazon Resource Name (ARN) of the cluster for the control panel. |
| name? | string | The name of the control panel. |
| tags? | Cfn[] | The tags associated with the control panel. |
clusterArn?
Type:
string | ICluster
(optional)
The Amazon Resource Name (ARN) of the cluster for the control panel.
name?
Type:
string
(optional)
The name of the control panel.
You can use any non-white space character in the name.
tags?
Type:
Cfn[]
(optional)
The tags associated with the control panel.

.NET
Go
Java
Python
TypeScript