Interface CfnNodeMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnNodeMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-07-22T17:37:44.824Z")
@Stability(Stable)
public interface CfnNodeMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnNodePropsMixin.
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.medialive.*;
CfnNodeMixinProps cfnNodeMixinProps = CfnNodeMixinProps.builder()
.clusterId("clusterId")
.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 forCfnNodeMixinPropsstatic final classAn implementation forCfnNodeMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnNodeMixinProps.Builderbuilder()default StringThe 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: '<'eitherIResolvableorCfnNodePropsMixin.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: '<'eitherIResolvableorCfnNodePropsMixin.SdiSourceMappingProperty>- See Also:
-
getTags
A collection of key-value pairs.- See Also:
-
builder
- Returns:
- a
CfnNodeMixinProps.BuilderofCfnNodeMixinProps
-