Interface CfnFlowOutput.DestinationConfigurationProperty

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

@Stability(Stable) public static interface CfnFlowOutput.DestinationConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The definition of a media stream that is associated with the output.

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.*;
 DestinationConfigurationProperty destinationConfigurationProperty = DestinationConfigurationProperty.builder()
         .destinationIp("destinationIp")
         .destinationPort(123)
         .interface(InterfaceProperty.builder()
                 .name("name")
                 .build())
         .build();
 

See Also: