interface BridgeFlowSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaConnect.CfnBridgeSourcePropsMixin.BridgeFlowSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediaconnect#CfnBridgeSourcePropsMixin_BridgeFlowSourceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediaconnect.CfnBridgeSourcePropsMixin.BridgeFlowSourceProperty |
Python | aws_cdk.cfn_property_mixins.aws_mediaconnect.CfnBridgeSourcePropsMixin.BridgeFlowSourceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediaconnect » CfnBridgeSourcePropsMixin » BridgeFlowSourceProperty |
The source of the bridge.
A flow source originates in MediaConnect as an existing cloud flow.
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 bridgeFlowSourceProperty: mediaconnect.CfnBridgeSourcePropsMixin.BridgeFlowSourceProperty = {
flowArn: 'flowArn',
flowVpcInterfaceAttachment: {
vpcInterfaceName: 'vpcInterfaceName',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| flow | string | The ARN of the cloud flow used as a source of this bridge. |
| flow | IResolvable | Vpc | The name of the VPC interface attachment to use for this source. |
flowArn?
Type:
string
(optional)
The ARN of the cloud flow used as a source of this bridge.
flowVpcInterfaceAttachment?
Type:
IResolvable | Vpc
(optional)
The name of the VPC interface attachment to use for this source.

.NET
Go
Java
Python
TypeScript