CfnBridgeSourceMixinProps
- class aws_cdk.mixins_preview.aws_mediaconnect.mixins.CfnBridgeSourceMixinProps(*, bridge_arn=None, flow_source=None, name=None, network_source=None)
Bases:
objectProperties for CfnBridgeSourcePropsMixin.
- Parameters:
bridge_arn (
Optional[str]) – The ARN of the bridge feeding this flow.flow_source (
Union[IResolvable,BridgeFlowSourceProperty,Dict[str,Any],None]) – The source of the flow.name (
Optional[str]) – 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 (
Union[IResolvable,BridgeNetworkSourceProperty,Dict[str,Any],None]) – The source of the network.
- 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.mixins_preview.aws_mediaconnect import mixins as mediaconnect_mixins cfn_bridge_source_mixin_props = mediaconnect_mixins.CfnBridgeSourceMixinProps( bridge_arn="bridgeArn", flow_source=mediaconnect_mixins.CfnBridgeSourcePropsMixin.BridgeFlowSourceProperty( flow_arn="flowArn", flow_vpc_interface_attachment=mediaconnect_mixins.CfnBridgeSourcePropsMixin.VpcInterfaceAttachmentProperty( vpc_interface_name="vpcInterfaceName" ) ), name="name", network_source=mediaconnect_mixins.CfnBridgeSourcePropsMixin.BridgeNetworkSourceProperty( multicast_ip="multicastIp", multicast_source_settings=mediaconnect_mixins.CfnBridgeSourcePropsMixin.MulticastSourceSettingsProperty( multicast_source_ip="multicastSourceIp" ), network_name="networkName", port=123, protocol="protocol" ) )
Attributes
- bridge_arn
The ARN of the bridge feeding this flow.
- flow_source
The source of the flow.
- 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
The source of the network.