interface FlowAttributes
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.FlowAttributes |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#FlowAttributes |
Java | software.amazon.awscdk.services.mediaconnect.alpha.FlowAttributes |
Python | aws_cdk.aws_mediaconnect_alpha.FlowAttributes |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป FlowAttributes |
Attributes for importing an existing Flow.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as mediaconnect_alpha from '@aws-cdk/aws-mediaconnect-alpha';
const flowAttributes: mediaconnect_alpha.FlowAttributes = {
flowArn: 'flowArn',
// the properties below are optional
egressIp: 'egressIp',
flowAvailabilityZone: 'flowAvailabilityZone',
isFailoverEnabled: false,
sourceArn: 'sourceArn',
sourceIngestIp: 'sourceIngestIp',
sourceIngestPort: 'sourceIngestPort',
};
Properties
| Name | Type | Description |
|---|---|---|
| flow | string | The ARN of the flow. |
| egress | string | The IP address that the flow uses to send outbound content. |
| flow | string | The Availability Zone that the flow was created in. |
| is | boolean | Indicates whether failover configured. |
| source | string | ARN of the source defined on the flow. |
| source | string | The IP address that the flow listens on for incoming content. |
| source | string | The port that the flow listens on for incoming content. |
flowArn
Type:
string
The ARN of the flow.
egressIp?
Type:
string
(optional, default: accessing egressIp on the imported flow throws; only provide when available.)
The IP address that the flow uses to send outbound content.
flowAvailabilityZone?
Type:
string
(optional, default: flowAvailabilityZone is undefined on the imported flow.)
The Availability Zone that the flow was created in.
isFailoverEnabled?
Type:
boolean
(optional, default: false)
Indicates whether failover configured.
sourceArn?
Type:
string
(optional, default: sourceArn is not available on the imported construct)
ARN of the source defined on the flow.
Not encoded in the flow ARN, so must be provided explicitly when you need
access to sourceArn on the imported construct.
sourceIngestIp?
Type:
string
(optional, default: accessing sourceIngestIp on the imported flow throws; only provide when available.)
The IP address that the flow listens on for incoming content.
sourceIngestPort?
Type:
string
(optional, default: accessing sourceIngestPort on the imported flow throws; only provide when available.)
The port that the flow listens on for incoming content.

.NET
Go
Java
Python
TypeScript (