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 Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnControlPanelProps
static final class
An implementation forCfnControlPanelProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnControlPanelProps.Builder
builder()
default String
The 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
-
getName
The name of the control panel.You can use any non-white space character in the name.
-
getClusterArn
The Amazon Resource Name (ARN) of the cluster for the control panel. -
getTags
The value for a tag. -
builder
- Returns:
- a
CfnControlPanelProps.Builder
ofCfnControlPanelProps
-