Interface CfnControlPanelProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnControlPanelProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-10-31T19:13:04.801Z")
@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
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 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.- See Also:
-
getTags
The tags associated with the control panel.- See Also:
-
builder
- Returns:
- a
CfnControlPanelProps.Builder
ofCfnControlPanelProps
-