interface FlowOutputProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.FlowOutputProps |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#FlowOutputProps |
Java | software.amazon.awscdk.services.mediaconnect.alpha.FlowOutputProps |
Python | aws_cdk.aws_mediaconnect_alpha.FlowOutputProps |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป FlowOutputProps |
Properties for flow output.
Example
declare const stack: Stack;
declare const flow: Flow;
declare const role: iam.IRole;
declare const secret: secretsmanager.ISecret;
// SRT Caller output with encryption
const output = new FlowOutput(stack, 'EncryptedOutput', {
flow: flow,
description: 'Encrypted SRT output',
output: OutputConfiguration.srtCaller({
destination: '203.0.113.100',
port: 7000,
encryption: { role, secret },
}),
});
Properties
| Name | Type | Description |
|---|---|---|
| flow | IFlow | The flow this output is attached to. |
| output | Output | Output configuration. |
| description? | string | A description of the output. |
| flow | string | The name of the output. |
| output | State | An indication of whether the output should transmit data or not. |
flow
Type:
IFlow
The flow this output is attached to.
output
Type:
Output
Output configuration.
description?
Type:
string
(optional, default: no description)
A description of the output.
This description appears only on the MediaConnect console and will not be seen by the end user.
flowOutputName?
Type:
string
(optional, default: auto-generated)
The name of the output.
outputStatus?
Type:
State
(optional, default: undefined; when omitted, MediaConnect enables the output (ENABLED) at deploy time)
An indication of whether the output should transmit data or not.

.NET
Go
Java
Python
TypeScript (