interface CfnBridgeMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaConnect.Mixins.CfnBridgeMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediaconnect/mixins#CfnBridgeMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.mediaconnect.mixins.CfnBridgeMixinProps |
Python | aws_cdk.mixins_preview.aws_mediaconnect.mixins.CfnBridgeMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_mediaconnect » mixins » CfnBridgeMixinProps |
Properties for CfnBridgePropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconnect-bridge.html
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 cfnBridgeMixinProps: mediaconnect_mixins.CfnBridgeMixinProps = {
egressGatewayBridge: {
maxBitrate: 123,
},
ingressGatewayBridge: {
maxBitrate: 123,
maxOutputs: 123,
},
name: 'name',
outputs: [{
networkOutput: {
ipAddress: 'ipAddress',
name: 'name',
networkName: 'networkName',
port: 123,
protocol: 'protocol',
ttl: 123,
},
}],
placementArn: 'placementArn',
sourceFailoverConfig: {
failoverMode: 'failoverMode',
sourcePriority: {
primarySource: 'primarySource',
},
state: 'state',
},
sources: [{
flowSource: {
flowArn: 'flowArn',
flowVpcInterfaceAttachment: {
vpcInterfaceName: 'vpcInterfaceName',
},
name: 'name',
},
networkSource: {
multicastIp: 'multicastIp',
multicastSourceSettings: {
multicastSourceIp: 'multicastSourceIp',
},
name: 'name',
networkName: 'networkName',
port: 123,
protocol: 'protocol',
},
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| egress | IResolvable | Egress | An egress bridge is a cloud-to-ground bridge. |
| ingress | IResolvable | Ingress | An ingress bridge is a ground-to-cloud bridge. |
| name? | string | The name of the bridge. |
| outputs? | IResolvable | (IResolvable | Bridge)[] | The outputs that you want to add to this bridge. |
| placement | string | The bridge placement Amazon Resource Number (ARN). |
| source | IResolvable | Failover | The settings for source failover. |
| sources? | IResolvable | (IResolvable | Bridge)[] | The sources that you want to add to this bridge. |
egressGatewayBridge?
Type:
IResolvable | Egress
(optional)
An egress bridge is a cloud-to-ground bridge.
The content comes from an existing MediaConnect flow and is delivered to your premises.
ingressGatewayBridge?
Type:
IResolvable | Ingress
(optional)
An ingress bridge is a ground-to-cloud bridge.
The content originates at your premises and is delivered to the cloud.
name?
Type:
string
(optional)
The name of the bridge.
This name can not be modified after the bridge is created.
outputs?
Type:
IResolvable | (IResolvable | Bridge)[]
(optional)
The outputs that you want to add to this bridge.
placementArn?
Type:
string
(optional)
The bridge placement Amazon Resource Number (ARN).
sourceFailoverConfig?
Type:
IResolvable | Failover
(optional)
The settings for source failover.
sources?
Type:
IResolvable | (IResolvable | Bridge)[]
(optional)
The sources that you want to add to this bridge.

.NET
Go
Java
Python
TypeScript