Interface CfnBridge.BridgeSourceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBridge.BridgeSourceProperty.Jsii$Proxy
- Enclosing class:
CfnBridge
@Stability(Stable)
public static interface CfnBridge.BridgeSourceProperty
extends software.amazon.jsii.JsiiSerializable
The bridge's source.
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.*; BridgeSourceProperty bridgeSourceProperty = BridgeSourceProperty.builder() .flowSource(BridgeFlowSourceProperty.builder() .flowArn("flowArn") .name("name") // the properties below are optional .flowVpcInterfaceAttachment(VpcInterfaceAttachmentProperty.builder() .vpcInterfaceName("vpcInterfaceName") .build()) .build()) .networkSource(BridgeNetworkSourceProperty.builder() .multicastIp("multicastIp") .name("name") .networkName("networkName") .port(123) .protocol("protocol") .build()) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnBridge.BridgeSourceProperty
static final class
An implementation forCfnBridge.BridgeSourceProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFlowSource
The source of the bridge.A flow source originates in MediaConnect as an existing cloud flow.
- See Also:
-
getNetworkSource
The source of the bridge.A network source originates at your premises.
- See Also:
-
builder
-