Interface CfnClusterMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnClusterMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-04-14T18:32:18.470Z")
@Stability(Stable)
public interface CfnClusterMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnClusterPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.route53recoverycontrol.*;
CfnClusterMixinProps cfnClusterMixinProps = CfnClusterMixinProps.builder()
.name("name")
.networkType("networkType")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnClusterMixinPropsstatic final classAn implementation forCfnClusterMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
Name of the cluster.You can use any non-white space character in the name except the following: & > < ' (single quote) " (double quote) ; (semicolon).
- See Also:
-
getNetworkType
The network-type can either be IPV4 or DUALSTACK.- See Also:
-
getTags
The tags associated with the cluster.- See Also:
-
builder
- Returns:
- a
CfnClusterMixinProps.BuilderofCfnClusterMixinProps
-