Interface CfnMultiplex.MultiplexSettingsProperty

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

@Stability(Stable) public static interface CfnMultiplex.MultiplexSettingsProperty extends software.amazon.jsii.JsiiSerializable
Contains configuration for a Multiplex event.

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.*;
 MultiplexSettingsProperty multiplexSettingsProperty = MultiplexSettingsProperty.builder()
         .transportStreamBitrate(123)
         .transportStreamId(123)
         // the properties below are optional
         .maximumVideoBufferDelayMilliseconds(123)
         .transportStreamReservedBitrate(123)
         .build();
 

See Also: