class MediaPackageV2HlsSetting
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.MediaPackageV2HlsSetting |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#MediaPackageV2HlsSetting |
Java | software.amazon.awscdk.services.medialive.alpha.MediaPackageV2HlsSetting |
Python | aws_cdk.aws_medialive_alpha.MediaPackageV2HlsSetting |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป MediaPackageV2HlsSetting |
Whether MediaPackage sets a MediaPackage V2 audio rendition as default / auto-select in the HLS manifest.
Across all renditions: at most one may be YES; not all may be NO.
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 mediaPackageV2HlsSetting = medialive_alpha.MediaPackageV2HlsSetting.NO;
Properties
| Name | Type | Description |
|---|---|---|
| value | string | The underlying string value passed to CloudFormation. |
| static NO | Media | Do not set this rendition as default / auto-select. |
| static OMIT | Media | Let MediaPackage decide for this rendition. |
| static YES | Media | Set this rendition as default / auto-select. |
value
Type:
string
The underlying string value passed to CloudFormation.
static NO
Type:
Media
Do not set this rendition as default / auto-select.
static OMIT
Type:
Media
Let MediaPackage decide for this rendition.
static YES
Type:
Media
Set this rendition as default / auto-select.
Methods
| Name | Description |
|---|---|
| static of(value) | A value not yet modelled by AWS CDK. |
static of(value)
public static of(value: string): MediaPackageV2HlsSetting
Parameters
- value
string
Returns
A value not yet modelled by AWS CDK.

.NET
Go
Java
Python
TypeScript (