interface GatewayBridgeSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.CfnFlow.GatewayBridgeSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediaconnect#CfnFlow_GatewayBridgeSourceProperty |
Java | software.amazon.awscdk.services.mediaconnect.CfnFlow.GatewayBridgeSourceProperty |
Python | aws_cdk.aws_mediaconnect.CfnFlow.GatewayBridgeSourceProperty |
TypeScript | aws-cdk-lib » aws_mediaconnect » CfnFlow » GatewayBridgeSourceProperty |
The source configuration for cloud flows receiving a stream from a bridge.
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-lib';
const gatewayBridgeSourceProperty: mediaconnect.CfnFlow.GatewayBridgeSourceProperty = {
bridgeArn: 'bridgeArn',
// the properties below are optional
vpcInterfaceAttachment: {
vpcInterfaceName: 'vpcInterfaceName',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| bridge | string | The ARN of the bridge feeding this flow. |
| vpc | IResolvable | Vpc | The name of the VPC interface attachment to use for this bridge source. |
bridgeArn
Type:
string
The ARN of the bridge feeding this flow.
vpcInterfaceAttachment?
Type:
IResolvable | Vpc
(optional)
The name of the VPC interface attachment to use for this bridge source.

.NET
Go
Java
Python
TypeScript