interface FlowSourceAttributes
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.FlowSourceAttributes |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#FlowSourceAttributes |
Java | software.amazon.awscdk.services.mediaconnect.alpha.FlowSourceAttributes |
Python | aws_cdk.aws_mediaconnect_alpha.FlowSourceAttributes |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป FlowSourceAttributes |
Attributes for importing an existing Flow Source.
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 flowSourceAttributes: mediaconnect_alpha.FlowSourceAttributes = {
flowSourceArn: 'flowSourceArn',
// the properties below are optional
flowSourceName: 'flowSourceName',
ingestIp: 'ingestIp',
sourceIngestPort: 'sourceIngestPort',
};
Properties
| Name | Type | Description |
|---|---|---|
| flow | string | The Amazon Resource Name (ARN) of the flow source. |
| flow | string | The name of the flow source. |
| ingest | string | The IP address that the flow will be listening on for incoming content. |
| source | string | The port that the flow will be listening on for incoming content. |
flowSourceArn
Type:
string
The Amazon Resource Name (ARN) of the flow source.
flowSourceName?
Type:
string
(optional, default: accessing flowSourceName on the imported source throws; only provide when available.)
The name of the flow source.
ingestIp?
Type:
string
(optional, default: accessing ingestIp on the imported source throws; only provide when available.)
The IP address that the flow will be listening on for incoming content.
sourceIngestPort?
Type:
string
(optional, default: accessing sourceIngestPort on the imported source throws; only provide when available.)
The port that the flow will be listening on for incoming content.

.NET
Go
Java
Python
TypeScript (