interface FlowSourceProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.FlowSourceProps |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#FlowSourceProps |
Java | software.amazon.awscdk.services.mediaconnect.alpha.FlowSourceProps |
Python | aws_cdk.aws_mediaconnect_alpha.FlowSourceProps |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป FlowSourceProps |
Properties for the 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';
declare const flow: mediaconnect_alpha.Flow;
declare const sourceConfiguration: mediaconnect_alpha.SourceConfiguration;
const flowSourceProps: mediaconnect_alpha.FlowSourceProps = {
flow: flow,
source: sourceConfiguration,
};
Properties
| Name | Type | Description |
|---|---|---|
| flow | IFlow | The flow this source is connected to. |
| source | Source | Additional Source Configuration. |
flow
Type:
IFlow
The flow this source is connected to.
The flow must have Failover enabled to add an additional source.
source
Type:
Source
Additional Source Configuration.
Set the source's name via name on the configuration (e.g. SourceConfiguration.rtp({ name })).
When no name is set there, one is generated from construct naming.

.NET
Go
Java
Python
TypeScript (