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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFlowOutput.DestinationConfigurationPropertystatic final classAn implementation forCfnFlowOutput.DestinationConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The IP address where contents of the media stream will be sent.The port to use when the content of the media stream is distributed to the output.The VPC interface that is used 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 contents of the media stream will be sent.- See Also:
-
getDestinationPort
The port to use when the content of the media stream is distributed to the output.- See Also:
-
getInterfaceValue
The VPC interface that is used for the media stream associated with the output.- See Also:
-
builder
-