Interface CfnBridge.BridgeFlowSourceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBridge.BridgeFlowSourceProperty.Jsii$Proxy
- Enclosing class:
CfnBridge
@Stability(Stable)
public static interface CfnBridge.BridgeFlowSourceProperty
extends software.amazon.jsii.JsiiSerializable
The source of the bridge.
A flow source originates in MediaConnect as an existing cloud flow.
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.*; BridgeFlowSourceProperty bridgeFlowSourceProperty = BridgeFlowSourceProperty.builder() .flowArn("flowArn") .name("name") // the properties below are optional .flowVpcInterfaceAttachment(VpcInterfaceAttachmentProperty.builder() .vpcInterfaceName("vpcInterfaceName") .build()) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnBridge.BridgeFlowSourceProperty
static final class
An implementation forCfnBridge.BridgeFlowSourceProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFlowArn
The ARN of the cloud flow used as a source of this bridge.- See Also:
-
getName
The name of the flow source.- See Also:
-
getFlowVpcInterfaceAttachment
The name of the VPC interface attachment to use for this source.- See Also:
-
builder
-