interface BridgeFlowSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaConnect.Mixins.CfnBridgePropsMixin.BridgeFlowSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediaconnect/mixins#CfnBridgePropsMixin_BridgeFlowSourceProperty |
Java | software.amazon.awscdk.mixins.preview.services.mediaconnect.mixins.CfnBridgePropsMixin.BridgeFlowSourceProperty |
Python | aws_cdk.mixins_preview.aws_mediaconnect.mixins.CfnBridgePropsMixin.BridgeFlowSourceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_mediaconnect » mixins » CfnBridgePropsMixin » 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 { mixins as mediaconnect_mixins } from '@aws-cdk/mixins-preview/aws-mediaconnect';
const bridgeFlowSourceProperty: mediaconnect_mixins.CfnBridgePropsMixin.BridgeFlowSourceProperty = {
flowArn: 'flowArn',
flowVpcInterfaceAttachment: {
vpcInterfaceName: 'vpcInterfaceName',
},
name: 'name',
};
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. |
| name? | string | The name of the flow 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.
name?
Type:
string
(optional)
The name of the flow source.

.NET
Go
Java
Python
TypeScript