interface AddFlowOutputOptions
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.AddFlowOutputOptions |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#AddFlowOutputOptions |
Java | software.amazon.awscdk.services.mediaconnect.alpha.AddFlowOutputOptions |
Python | aws_cdk.aws_mediaconnect_alpha.AddFlowOutputOptions |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป AddFlowOutputOptions |
Options for adding an output to a 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';
declare const outputConfiguration: mediaconnect_alpha.OutputConfiguration;
const addFlowOutputOptions: mediaconnect_alpha.AddFlowOutputOptions = {
output: outputConfiguration,
// the properties below are optional
description: 'description',
flowOutputName: 'flowOutputName',
outputStatus: mediaconnect_alpha.State.ENABLED,
};
Properties
| Name | Type | Description |
|---|---|---|
| output | Output | The output configuration. |
| description? | string | A description of the output. |
| flow | string | The name of the flow output. |
| output | State | Whether the output is enabled. |
output
Type:
Output
The output configuration.
description?
Type:
string
(optional, default: no description)
A description of the output.
flowOutputName?
Type:
string
(optional, default: auto-generated)
The name of the flow output.
outputStatus?
Type:
State
(optional, default: State.ENABLED)
Whether the output is enabled.

.NET
Go
Java
Python
TypeScript (