interface CfnControlPanelProps
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.Route53RecoveryControl.CfnControlPanelProps | 
  Java | software.amazon.awscdk.services.route53recoverycontrol.CfnControlPanelProps | 
  Python | aws_cdk.aws_route53recoverycontrol.CfnControlPanelProps | 
  TypeScript  | @aws-cdk/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 * as route53recoverycontrol from '@aws-cdk/aws-route53recoverycontrol';
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 | The Amazon Resource Name (ARN) of the cluster for the control panel. | 
| tags? | Cfn[] | The value for a tag. | 
name
Type:
string
The name of the control panel.
You can use any non-white space character in the name.
clusterArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the cluster for the control panel.
tags?
Type:
Cfn[]
(optional)
The value for a tag.

 .NET
 Java
 Python
 TypeScript