Interface CfnNodeProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnNodeProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-07-22T17:37:29.949Z")
@Stability(Stable)
public interface CfnNodeProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnNode.
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.*;
CfnNodeProps cfnNodeProps = CfnNodeProps.builder()
.clusterId("clusterId")
// the properties below are optional
.name("name")
.nodeInterfaceMappings(List.of(NodeInterfaceMappingProperty.builder()
.logicalInterfaceName("logicalInterfaceName")
.networkInterfaceMode("networkInterfaceMode")
.physicalInterfaceName("physicalInterfaceName")
.build()))
.role("role")
.sdiSourceMappings(List.of(SdiSourceMappingProperty.builder()
.cardNumber(123)
.channelNumber(123)
.sdiSource("sdiSource")
.build()))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnNodePropsstatic final classAn implementation forCfnNodeProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnNodeProps.Builderbuilder()The ID of the Cluster that the Node belongs to.default StringgetName()The user-specified name of the Node.default ObjectAn array of interface mappings for the Node.default StringgetRole()The role of the Node in the Cluster.default ObjectAn array of SDI source mappings.getTags()A collection of key-value pairs.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getClusterId
The ID of the Cluster that the Node belongs to.- See Also:
-
getName
The user-specified name of the Node.- See Also:
-
getNodeInterfaceMappings
An array of interface mappings for the Node.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnNode.NodeInterfaceMappingProperty>- See Also:
-
getRole
The role of the Node in the Cluster.ACTIVE means the Node is available for encoding. BACKUP means the Node is a redundant Node and might get used if an ACTIVE Node fails.
- See Also:
-
getSdiSourceMappings
An array of SDI source mappings.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnNode.SdiSourceMappingProperty>- See Also:
-
getTags
A collection of key-value pairs.- See Also:
-
builder
- Returns:
- a
CfnNodeProps.BuilderofCfnNodeProps
-