Interface CfnFlowOutputPropsMixin.DestinationConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFlowOutputPropsMixin.DestinationConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnFlowOutputPropsMixin
@Stability(Stable)
public static interface CfnFlowOutputPropsMixin.DestinationConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The transport parameters that you want to associate with an outbound media stream.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.mediaconnect.*;
DestinationConfigurationProperty destinationConfigurationProperty = DestinationConfigurationProperty.builder()
.destinationIp("destinationIp")
.destinationPort(123)
.interface(InterfaceProperty.builder()
.name("name")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFlowOutputPropsMixin.DestinationConfigurationPropertystatic final classAn implementation forCfnFlowOutputPropsMixin.DestinationConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe IP address where you want MediaConnect to send contents of the media stream.default NumberThe port that you want MediaConnect to use when it distributes the media stream to the output.default ObjectThe VPC interface that you want to use for the media stream associated with the output.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDestinationIp
The IP address where you want MediaConnect to send contents of the media stream.- See Also:
-
getDestinationPort
The port that you want MediaConnect to use when it distributes the media stream to the output.- See Also:
-
getInterfaceValue
The VPC interface that you want to use for the media stream associated with the output.Returns union: either
IResolvableorCfnFlowOutputPropsMixin.InterfaceProperty- See Also:
-
builder
@Stability(Stable) static CfnFlowOutputPropsMixin.DestinationConfigurationProperty.Builder builder()
-