Interface CfnFlow.MediaStreamSourceConfigurationProperty

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

@Stability(Stable) public static interface CfnFlow.MediaStreamSourceConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The media stream that is associated with the source, 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.*;
 MediaStreamSourceConfigurationProperty mediaStreamSourceConfigurationProperty = MediaStreamSourceConfigurationProperty.builder()
         .encodingName("encodingName")
         .mediaStreamName("mediaStreamName")
         // the properties below are optional
         .inputConfigurations(List.of(InputConfigurationProperty.builder()
                 .inputPort(123)
                 .interface(InterfaceProperty.builder()
                         .name("name")
                         .build())
                 .build()))
         .build();
 

See Also: