interface MsSmoothOutputSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaLive.CfnChannelPropsMixin.MsSmoothOutputSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmedialive#CfnChannelPropsMixin_MsSmoothOutputSettingsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.medialive.CfnChannelPropsMixin.MsSmoothOutputSettingsProperty |
Python | aws_cdk.cfn_property_mixins.aws_medialive.CfnChannelPropsMixin.MsSmoothOutputSettingsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_medialive » 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 { aws_medialive as medialive } from '@aws-cdk/cfn-property-mixins';
const msSmoothOutputSettingsProperty: medialive.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