interface CfnControlPanelProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Route53RecoveryControl.CfnControlPanelProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsroute53recoverycontrol#CfnControlPanelProps |
Java | software.amazon.awscdk.services.route53recoverycontrol.CfnControlPanelProps |
Python | aws_cdk.aws_route53recoverycontrol.CfnControlPanelProps |
TypeScript | aws-cdk-lib » aws_route53recoverycontrol » CfnControlPanelProps |
Properties for defining a CfnControlPanel.
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-lib';
const cfnControlPanelProps: route53recoverycontrol.CfnControlPanelProps = {
name: 'name',
// the properties below are optional
clusterArn: 'clusterArn',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the control panel. |
| cluster | string | ICluster | The Amazon Resource Name (ARN) of the cluster for the control panel. |
| tags? | Cfn[] | The tags associated with the control panel. |
name
Type:
string
The name of the control panel.
You can use any non-white space character in the name.
clusterArn?
Type:
string | ICluster
(optional)
The Amazon Resource Name (ARN) of the cluster for the control panel.
tags?
Type:
Cfn[]
(optional)
The tags associated with the control panel.

.NET
Go
Java
Python
TypeScript