interface GatewayBridgeSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaConnect.CfnFlowSourcePropsMixin.GatewayBridgeSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediaconnect#CfnFlowSourcePropsMixin_GatewayBridgeSourceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediaconnect.CfnFlowSourcePropsMixin.GatewayBridgeSourceProperty |
Python | aws_cdk.cfn_property_mixins.aws_mediaconnect.CfnFlowSourcePropsMixin.GatewayBridgeSourceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediaconnect » 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 { aws_mediaconnect as mediaconnect } from '@aws-cdk/cfn-property-mixins';
const gatewayBridgeSourceProperty: mediaconnect.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