Interface CfnBridgeSourceProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBridgeSourceProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-17T14:40:55.543Z")
@Stability(Stable)
public interface CfnBridgeSourceProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnBridgeSource.
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.*;
CfnBridgeSourceProps cfnBridgeSourceProps = CfnBridgeSourceProps.builder()
.bridgeArn("bridgeArn")
.name("name")
// the properties below are optional
.flowSource(BridgeFlowSourceProperty.builder()
.flowArn("flowArn")
// the properties below are optional
.flowVpcInterfaceAttachment(VpcInterfaceAttachmentProperty.builder()
.vpcInterfaceName("vpcInterfaceName")
.build())
.build())
.networkSource(BridgeNetworkSourceProperty.builder()
.multicastIp("multicastIp")
.networkName("networkName")
.port(123)
.protocol("protocol")
// the properties below are optional
.multicastSourceSettings(MulticastSourceSettingsProperty.builder()
.multicastSourceIp("multicastSourceIp")
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBridgeSourcePropsstatic final classAn implementation forCfnBridgeSourceProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnBridgeSourceProps.Builderbuilder()The ARN of the bridge feeding this flow.default ObjectThe source of the flow.getName()The name of the flow source.default ObjectThe source of the network.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBridgeArn
The ARN of the bridge feeding this flow.- See Also:
-
getName
The name of the flow source.This name is used to reference the source and must be unique among sources in this bridge.
- See Also:
-
getFlowSource
The source of the flow.Returns union: either
IResolvableorCfnBridgeSource.BridgeFlowSourceProperty- See Also:
-
getNetworkSource
The source of the network.Returns union: either
IResolvableorCfnBridgeSource.BridgeNetworkSourceProperty- See Also:
-
builder
- Returns:
- a
CfnBridgeSourceProps.BuilderofCfnBridgeSourceProps
-