Interface CfnControlPanelProps
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnControlPanelProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
           date="2023-06-19T16:30:35.026Z")
@Stability(Stable)
public interface CfnControlPanelProps
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.route53recoverycontrol.*;
 CfnControlPanelProps cfnControlPanelProps = CfnControlPanelProps.builder()
         .name("name")
         // the properties below are optional
         .clusterArn("clusterArn")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnControlPanelPropsstatic final classAn implementation forCfnControlPanelProps
- 
Method SummaryModifier and TypeMethodDescriptionstatic CfnControlPanelProps.Builderbuilder()default StringThe Amazon Resource Name (ARN) of the cluster for the control panel.getName()The name of the control panel.getTags()The value for a tag.Methods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getNameThe name of the control panel.You can use any non-white space character in the name. 
- 
getClusterArnThe Amazon Resource Name (ARN) of the cluster for the control panel.
- 
getTagsThe value for a tag.
- 
builder- Returns:
- a CfnControlPanelProps.BuilderofCfnControlPanelProps
 
 
-