interface CfnBridgeOutputMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaConnect.CfnBridgeOutputMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediaconnect#CfnBridgeOutputMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediaconnect.CfnBridgeOutputMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_mediaconnect.CfnBridgeOutputMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediaconnect » CfnBridgeOutputMixinProps |
Properties for CfnBridgeOutputPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mediaconnect as mediaconnect } from '@aws-cdk/cfn-property-mixins';
const cfnBridgeOutputMixinProps: mediaconnect.CfnBridgeOutputMixinProps = {
bridgeArn: 'bridgeArn',
name: 'name',
networkOutput: {
ipAddress: 'ipAddress',
networkName: 'networkName',
port: 123,
protocol: 'protocol',
ttl: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| bridge | string | The Amazon Resource Name (ARN) of the bridge that you want to update. |
| name? | string | The network output name. |
| network | IResolvable | Bridge | The network output of the bridge. |
bridgeArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the bridge that you want to update.
name?
Type:
string
(optional)
The network output name.
This name is used to reference the output and must be unique among outputs in this bridge.
networkOutput?
Type:
IResolvable | Bridge
(optional)
The network output of the bridge.
A network output is delivered to your premises.

.NET
Go
Java
Python
TypeScript