interface MsSmoothOutputSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaLive.Mixins.CfnChannelPropsMixin.MsSmoothOutputSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmedialive/mixins#CfnChannelPropsMixin_MsSmoothOutputSettingsProperty |
Java | software.amazon.awscdk.mixins.preview.services.medialive.mixins.CfnChannelPropsMixin.MsSmoothOutputSettingsProperty |
Python | aws_cdk.mixins_preview.aws_medialive.mixins.CfnChannelPropsMixin.MsSmoothOutputSettingsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_medialive » mixins » CfnChannelPropsMixin » MsSmoothOutputSettingsProperty |
Configuration of a Microsoft Smooth output.
The parent of this entity is OutputSettings.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as medialive_mixins } from '@aws-cdk/mixins-preview/aws-medialive';
const msSmoothOutputSettingsProperty: medialive_mixins.CfnChannelPropsMixin.MsSmoothOutputSettingsProperty = {
h265PackagingType: 'h265PackagingType',
nameModifier: 'nameModifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| h265 | string | Only applicable when this output is referencing an H.265 video description. Specifies whether MP4 segments should be packaged as HEV1 or HVC1. |
| name | string | A string that is concatenated to the end of the destination file name. |
h265PackagingType?
Type:
string
(optional)
Only applicable when this output is referencing an H.265 video description. Specifies whether MP4 segments should be packaged as HEV1 or HVC1.
nameModifier?
Type:
string
(optional)
A string that is concatenated to the end of the destination file name.
This is required for multiple outputs of the same type.

.NET
Go
Java
Python
TypeScript