CfnBridgeOutputMixinProps
- class aws_cdk.mixins_preview.aws_mediaconnect.mixins.CfnBridgeOutputMixinProps(*, bridge_arn=None, name=None, network_output=None)
Bases:
objectProperties for CfnBridgeOutputPropsMixin.
- Parameters:
bridge_arn (
Optional[str]) – The Amazon Resource Name (ARN) of the bridge that you want to update.name (
Optional[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],None]) – The network output of the bridge. A network output is delivered to your premises.
- 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_output_mixin_props = mediaconnect_mixins.CfnBridgeOutputMixinProps( bridge_arn="bridgeArn", name="name", network_output=mediaconnect_mixins.CfnBridgeOutputPropsMixin.BridgeNetworkOutputProperty( ip_address="ipAddress", network_name="networkName", port=123, protocol="protocol", ttl=123 ) )
Attributes
- bridge_arn
The Amazon Resource Name (ARN) of the bridge that you want to update.
- name
The network output name.
This name is used to reference the output and must be unique among outputs in this bridge.
- network_output
The network output of the bridge.
A network output is delivered to your premises.