Interface CfnBridgeSourceProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBridgeSourceProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:12.622Z")
@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")
.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 that you want to describe.default ObjectAdd a flow source to an existing bridge.getName()The name of the flow source.default ObjectAdd a network source to an existing bridge.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBridgeArn
The ARN of the bridge that you want to describe.- 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
Add a flow source to an existing bridge.- See Also:
-
getNetworkSource
Add a network source to an existing bridge.- See Also:
-
builder
- Returns:
- a
CfnBridgeSourceProps.BuilderofCfnBridgeSourceProps
-