interface BridgeSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaConnect.Mixins.CfnBridgePropsMixin.BridgeSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediaconnect/mixins#CfnBridgePropsMixin_BridgeSourceProperty |
Java | software.amazon.awscdk.mixins.preview.services.mediaconnect.mixins.CfnBridgePropsMixin.BridgeSourceProperty |
Python | aws_cdk.mixins_preview.aws_mediaconnect.mixins.CfnBridgePropsMixin.BridgeSourceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_mediaconnect » mixins » CfnBridgePropsMixin » BridgeSourceProperty |
The bridge's source.
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 bridgeSourceProperty: mediaconnect_mixins.CfnBridgePropsMixin.BridgeSourceProperty = {
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 |
|---|---|---|
| flow | IResolvable | Bridge | The source of the bridge. |
| network | IResolvable | Bridge | The source of the bridge. |
flowSource?
Type:
IResolvable | Bridge
(optional)
The source of the bridge.
A flow source originates in MediaConnect as an existing cloud flow.
networkSource?
Type:
IResolvable | Bridge
(optional)
The source of the bridge.
A network source originates at your premises.

.NET
Go
Java
Python
TypeScript