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: