CfnBridgeOutputProps
- class aws_cdk.aws_mediaconnect.CfnBridgeOutputProps(*, bridge_arn, name, network_output)
Bases:
object
Properties for defining a
CfnBridgeOutput
.- Parameters:
bridge_arn (
str
) – The ARN of the bridge that you want to describe.name (
str
) – The network output name. This name is used to reference the output and must be unique among outputs in this bridge.network_output (
Union
[IResolvable
,BridgeNetworkOutputProperty
,Dict
[str
,Any
]]) – Add a network output 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_output_props = mediaconnect.CfnBridgeOutputProps( bridge_arn="bridgeArn", name="name", network_output=mediaconnect.CfnBridgeOutput.BridgeNetworkOutputProperty( ip_address="ipAddress", network_name="networkName", port=123, protocol="protocol", ttl=123 ) )
Attributes
- bridge_arn
The ARN of the bridge that you want to describe.
- name
The network output name.
This name is used to reference the output and must be unique among outputs in this bridge.
- network_output
Add a network output to an existing bridge.