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