Interface CfnFlowOutput.MediaStreamOutputConfigurationProperty

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

@Stability(Stable) public static interface CfnFlowOutput.MediaStreamOutputConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The media stream that is associated with the output, and the parameters for that association.

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.mediaconnect.*;
 MediaStreamOutputConfigurationProperty mediaStreamOutputConfigurationProperty = MediaStreamOutputConfigurationProperty.builder()
         .encodingName("encodingName")
         .mediaStreamName("mediaStreamName")
         // the properties below are optional
         .destinationConfigurations(List.of(DestinationConfigurationProperty.builder()
                 .destinationIp("destinationIp")
                 .destinationPort(123)
                 .interface(InterfaceProperty.builder()
                         .name("name")
                         .build())
                 .build()))
         .encodingParameters(EncodingParametersProperty.builder()
                 .compressionFactor(123)
                 // the properties below are optional
                 .encoderProfile("encoderProfile")
                 .build())
         .build();
 

See Also: