interface OutputDefinition
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.OutputDefinition |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#OutputDefinition |
Java | software.amazon.awscdk.services.medialive.alpha.OutputDefinition |
Python | aws_cdk.aws_medialive_alpha.OutputDefinition |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป OutputDefinition |
Base output definition โ shared by all output group types.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as medialive_alpha from '@aws-cdk/aws-medialive-alpha';
declare const encodeConfiguration: medialive_alpha.EncodeConfiguration;
const outputDefinition: medialive_alpha.OutputDefinition = {
encodes: [encodeConfiguration],
outputName: 'outputName',
};
Properties
| Name | Type | Description |
|---|---|---|
| encodes | Encode[] | The encode configurations to wire to this output. |
| output | string | The name of this output. |
encodes
Type:
Encode[]
The encode configurations to wire to this output.
outputName
Type:
string
The name of this output.
Must be unique across all outputs in the channel.

.NET
Go
Java
Python
TypeScript (