Interface CfnMultiplexprogram.MultiplexProgramSettingsProperty

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

@Stability(Stable) public static interface CfnMultiplexprogram.MultiplexProgramSettingsProperty extends software.amazon.jsii.JsiiSerializable
Multiplex Program settings configuration.

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.*;
 MultiplexProgramSettingsProperty multiplexProgramSettingsProperty = MultiplexProgramSettingsProperty.builder()
         .programNumber(123)
         // the properties below are optional
         .preferredChannelPipeline("preferredChannelPipeline")
         .serviceDescriptor(MultiplexProgramServiceDescriptorProperty.builder()
                 .providerName("providerName")
                 .serviceName("serviceName")
                 .build())
         .videoSettings(MultiplexVideoSettingsProperty.builder()
                 .constantBitrate(123)
                 .statmuxSettings(MultiplexStatmuxVideoSettingsProperty.builder()
                         .maximumBitrate(123)
                         .minimumBitrate(123)
                         .priority(123)
                         .build())
                 .build())
         .build();
 

See Also: