Interface CfnBridgeSourceMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBridgeSourceMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:01.281Z")
@Stability(Stable)
public interface CfnBridgeSourceMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnBridgeSourcePropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.mediaconnect.*;
CfnBridgeSourceMixinProps cfnBridgeSourceMixinProps = CfnBridgeSourceMixinProps.builder()
.bridgeArn("bridgeArn")
.flowSource(BridgeFlowSourceProperty.builder()
.flowArn("flowArn")
.flowVpcInterfaceAttachment(VpcInterfaceAttachmentProperty.builder()
.vpcInterfaceName("vpcInterfaceName")
.build())
.build())
.name("name")
.networkSource(BridgeNetworkSourceProperty.builder()
.multicastIp("multicastIp")
.multicastSourceSettings(MulticastSourceSettingsProperty.builder()
.multicastSourceIp("multicastSourceIp")
.build())
.networkName("networkName")
.port(123)
.protocol("protocol")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBridgeSourceMixinPropsstatic final classAn implementation forCfnBridgeSourceMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBridgeArn
The ARN of the bridge feeding this flow.- See Also:
-
getFlowSource
The source of the flow.Returns union: either
IResolvableorCfnBridgeSourcePropsMixin.BridgeFlowSourceProperty- 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:
-
getNetworkSource
The source of the network.Returns union: either
IResolvableorCfnBridgeSourcePropsMixin.BridgeNetworkSourceProperty- See Also:
-
builder
- Returns:
- a
CfnBridgeSourceMixinProps.BuilderofCfnBridgeSourceMixinProps
-