Interface CfnChannel.NetworkInputSettingsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnChannel.NetworkInputSettingsProperty.Jsii$Proxy
Enclosing class:
CfnChannel

@Stability(Stable) public static interface CfnChannel.NetworkInputSettingsProperty extends software.amazon.jsii.JsiiSerializable
Information about how to connect to the upstream system.

The parent of this entity is InputSettings.

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.*;
 NetworkInputSettingsProperty networkInputSettingsProperty = NetworkInputSettingsProperty.builder()
         .hlsInputSettings(HlsInputSettingsProperty.builder()
                 .bandwidth(123)
                 .bufferSegments(123)
                 .retries(123)
                 .retryInterval(123)
                 .scte35Source("scte35Source")
                 .build())
         .serverValidation("serverValidation")
         .build();
 

See Also: