interface CfnControlPanelMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Route53RecoveryControl.Mixins.CfnControlPanelMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsroute53recoverycontrol/mixins#CfnControlPanelMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.route53recoverycontrol.mixins.CfnControlPanelMixinProps |
Python | aws_cdk.mixins_preview.aws_route53recoverycontrol.mixins.CfnControlPanelMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_route53recoverycontrol » mixins » 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 { mixins as route53recoverycontrol_mixins } from '@aws-cdk/mixins-preview/aws-route53recoverycontrol';
const cfnControlPanelMixinProps: route53recoverycontrol_mixins.CfnControlPanelMixinProps = {
clusterArn: 'clusterArn',
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| cluster | string | 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
(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