Interface CfnControlPanelProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnControlPanelProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:16.944Z")
@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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnControlPanelPropsstatic final classAn implementation forCfnControlPanelProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnControlPanelProps.Builderbuilder()default ObjectThe Amazon Resource Name (ARN) of the cluster for the control panel.getName()The name of the control panel.getTags()The tags associated with the control panel.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the control panel.You can use any non-white space character in the name.
- See Also:
-
getClusterArn
The Amazon Resource Name (ARN) of the cluster for the control panel.Returns union: either
StringorIClusterRef- See Also:
-
getTags
The tags associated with the control panel.- See Also:
-
builder
- Returns:
- a
CfnControlPanelProps.BuilderofCfnControlPanelProps
-