CfnBridgeSourceProps
- class aws_cdk.aws_mediaconnect.CfnBridgeSourceProps(*, bridge_arn, name, flow_source=None, network_source=None)
Bases:
object
Properties for defining a
CfnBridgeSource
.- Parameters:
bridge_arn (
str
) – The ARN of the bridge that you want to describe.name (
str
) – The name of the flow source. This name is used to reference the source and must be unique among sources in this bridge.flow_source (
Union
[IResolvable
,BridgeFlowSourceProperty
,Dict
[str
,Any
],None
]) – Add a flow source to an existing bridge.network_source (
Union
[IResolvable
,BridgeNetworkSourceProperty
,Dict
[str
,Any
],None
]) – Add a network source to an existing bridge.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_mediaconnect as mediaconnect cfn_bridge_source_props = mediaconnect.CfnBridgeSourceProps( bridge_arn="bridgeArn", name="name", # the properties below are optional flow_source=mediaconnect.CfnBridgeSource.BridgeFlowSourceProperty( flow_arn="flowArn", # the properties below are optional flow_vpc_interface_attachment=mediaconnect.CfnBridgeSource.VpcInterfaceAttachmentProperty( vpc_interface_name="vpcInterfaceName" ) ), network_source=mediaconnect.CfnBridgeSource.BridgeNetworkSourceProperty( multicast_ip="multicastIp", network_name="networkName", port=123, protocol="protocol" ) )
Attributes
- bridge_arn
The ARN of the bridge that you want to describe.
- flow_source
Add a flow source to an existing bridge.
- name
The name of the flow source.
This name is used to reference the source and must be unique among sources in this bridge.
- network_source
Add a network source to an existing bridge.