interface MsSmoothOutputDefinition
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.MsSmoothOutputDefinition |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#MsSmoothOutputDefinition |
Java | software.amazon.awscdk.services.medialive.alpha.MsSmoothOutputDefinition |
Python | aws_cdk.aws_medialive_alpha.MsSmoothOutputDefinition |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป MsSmoothOutputDefinition |
Implements
Output
Output definition for an MS Smooth 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;
declare const h265PackagingType: medialive_alpha.H265PackagingType;
const msSmoothOutputDefinition: medialive_alpha.MsSmoothOutputDefinition = {
encodes: [encodeConfiguration],
outputName: 'outputName',
// the properties below are optional
h265PackagingType: h265PackagingType,
nameModifier: 'nameModifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| encodes | Encode[] | The encode configurations to wire to this output. |
| output | string | The name of this output. |
| h265 | H265 | For H.265 video, whether to package as HEV1 or HVC1. |
| 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.
h265PackagingType?
Type:
H265
(optional, default: service default)
For H.265 video, whether to package as HEV1 or HVC1.
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 (