Interface CfnClusterProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnClusterProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-24T13:34:42.158Z")
@Stability(Stable)
public interface CfnClusterProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnCluster.
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.medialive.*;
CfnClusterProps cfnClusterProps = CfnClusterProps.builder()
.clusterType("clusterType")
.instanceRoleArn("instanceRoleArn")
.name("name")
.networkSettings(ClusterNetworkSettingsProperty.builder()
.defaultRoute("defaultRoute")
.interfaceMappings(List.of(InterfaceMappingProperty.builder()
.logicalInterfaceName("logicalInterfaceName")
.networkId("networkId")
.build()))
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnClusterPropsstatic final classAn implementation forCfnClusterProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnClusterProps.Builderbuilder()default StringThe hardware type for the cluster.default StringThe IAM role your nodes will use.default StringgetName()The user-specified name of the Cluster to be created.default ObjectOn premises settings which will have the interface network mappings and default Output logical interface.getTags()A collection of key-value pairs.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getClusterType
The hardware type for the cluster.- See Also:
-
getInstanceRoleArn
The IAM role your nodes will use.- See Also:
-
getName
The user-specified name of the Cluster to be created.- See Also:
-
getNetworkSettings
On premises settings which will have the interface network mappings and default Output logical interface.Returns union: either
IResolvableorCfnCluster.ClusterNetworkSettingsProperty- See Also:
-
getTags
A collection of key-value pairs.- See Also:
-
builder
- Returns:
- a
CfnClusterProps.BuilderofCfnClusterProps
-