interface FrameCaptureOutputDefinition
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.FrameCaptureOutputDefinition |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#FrameCaptureOutputDefinition |
Java | software.amazon.awscdk.services.medialive.alpha.FrameCaptureOutputDefinition |
Python | aws_cdk.aws_medialive_alpha.FrameCaptureOutputDefinition |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป FrameCaptureOutputDefinition |
Implements
Output
Output definition for a Frame Capture output group.
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 frameCaptureOutputDefinition: medialive_alpha.FrameCaptureOutputDefinition = {
encodes: [encodeConfiguration],
outputName: 'outputName',
// the properties below are optional
nameModifier: 'nameModifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| encodes | Encode[] | The encode configurations to wire to this output. |
| output | string | The name of this output. |
| name | string | A string concatenated to the end of the destination file name. |
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.
nameModifier?
Type:
string
(optional, default: no name modifier)
A string concatenated to the end of the destination file name.
Required if the output group contains more than one output.

.NET
Go
Java
Python
TypeScript (