interface ArchiveOutputDefinition
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.ArchiveOutputDefinition |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#ArchiveOutputDefinition |
Java | software.amazon.awscdk.services.medialive.alpha.ArchiveOutputDefinition |
Python | aws_cdk.aws_medialive_alpha.ArchiveOutputDefinition |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป ArchiveOutputDefinition |
Implements
Output
Output definition for an Archive 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 archiveContainer: medialive_alpha.ArchiveContainer;
declare const encodeConfiguration: medialive_alpha.EncodeConfiguration;
const archiveOutputDefinition: medialive_alpha.ArchiveOutputDefinition = {
encodes: [encodeConfiguration],
outputName: 'outputName',
// the properties below are optional
container: archiveContainer,
extension: 'extension',
nameModifier: 'nameModifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| encodes | Encode[] | The encode configurations to wire to this output. |
| output | string | The name of this output. |
| container? | Archive | The container (transport stream) for this output โ an MPEG-TS (M2TS) or raw container. |
| extension? | string | The output file extension. |
| 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.
container?
Type:
Archive
(optional, default: ArchiveContainer.m2ts() with service-default M2TS settings)
The container (transport stream) for this output โ an MPEG-TS (M2TS) or raw container.
Use the ArchiveContainer factory methods.
extension?
Type:
string
(optional, default: auto-selected from container type)
The output file extension.
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 of the same container type.

.NET
Go
Java
Python
TypeScript (