interface CfnBridgeOutputMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaConnect.Mixins.CfnBridgeOutputMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediaconnect/mixins#CfnBridgeOutputMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.mediaconnect.mixins.CfnBridgeOutputMixinProps |
Python | aws_cdk.mixins_preview.aws_mediaconnect.mixins.CfnBridgeOutputMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_mediaconnect » mixins » 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 { mixins as mediaconnect_mixins } from '@aws-cdk/mixins-preview/aws-mediaconnect';
const cfnBridgeOutputMixinProps: mediaconnect_mixins.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