class HlsAudioTrackType
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.HlsAudioTrackType |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#HlsAudioTrackType |
Java | software.amazon.awscdk.services.medialive.alpha.HlsAudioTrackType |
Python | aws_cdk.aws_medialive_alpha.HlsAudioTrackType |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป HlsAudioTrackType |
The audio track type for an audio-only HLS output.
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';
const hlsAudioTrackType = medialive_alpha.HlsAudioTrackType.ALTERNATE_AUDIO_AUTO_SELECT;
Properties
| Name | Type | Description |
|---|---|---|
| value | string | The underlying string value passed to CloudFormation. |
| static ALTERNATE_AUDIO_AUTO_SELECT | Hls | Alternate rendition, auto-select, not default (DEFAULT=NO, AUTOSELECT=YES). |
| static ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT | Hls | Alternate rendition, auto-select, default (DEFAULT=YES, AUTOSELECT=YES). |
| static ALTERNATE_AUDIO_NOT_AUTO_SELECT | Hls | Alternate rendition, not auto-select (DEFAULT=NO, AUTOSELECT=NO). |
| static AUDIO_ONLY_VARIANT_STREAM | Hls | A playable audio-only variant stream (EXT-X-STREAM-INF). |
value
Type:
string
The underlying string value passed to CloudFormation.
static ALTERNATE_AUDIO_AUTO_SELECT
Type:
Hls
Alternate rendition, auto-select, not default (DEFAULT=NO, AUTOSELECT=YES).
static ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT
Type:
Hls
Alternate rendition, auto-select, default (DEFAULT=YES, AUTOSELECT=YES).
static ALTERNATE_AUDIO_NOT_AUTO_SELECT
Type:
Hls
Alternate rendition, not auto-select (DEFAULT=NO, AUTOSELECT=NO).
static AUDIO_ONLY_VARIANT_STREAM
Type:
Hls
A playable audio-only variant stream (EXT-X-STREAM-INF).
Methods
| Name | Description |
|---|---|
| static of(value) | A value not yet modelled by AWS CDK. |
static of(value)
public static of(value: string): HlsAudioTrackType
Parameters
- value
string
Returns
A value not yet modelled by AWS CDK.

.NET
Go
Java
Python
TypeScript (