Interface CfnChannel.HlsInputSettingsProperty

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

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

The parent of this entity is NetworkInputSettings.

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

See Also: