class Id3Behavior
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.Id3Behavior |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#Id3Behavior |
Java | software.amazon.awscdk.services.medialive.alpha.Id3Behavior |
Python | aws_cdk.aws_medialive_alpha.Id3Behavior |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป Id3Behavior |
ID3 metadata insertion behavior (CMAF Ingest and MediaPackage V2 output groups).
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 id3Behavior = medialive_alpha.Id3Behavior.of('value');
Properties
| Name | Type | Description |
|---|---|---|
| value | string | The underlying string value passed to CloudFormation. |
| static DISABLED | Id3 | Do not insert ID3 metadata. |
| static ENABLED | Id3 | Enable ID3 metadata insertion. |
value
Type:
string
The underlying string value passed to CloudFormation.
static DISABLED
Type:
Id3
Do not insert ID3 metadata.
static ENABLED
Type:
Id3
Enable ID3 metadata insertion.
Methods
| Name | Description |
|---|---|
| static of(value) | A value not yet modelled by AWS CDK. |
static of(value)
public static of(value: string): Id3Behavior
Parameters
- value
string
Returns
A value not yet modelled by AWS CDK.

.NET
Go
Java
Python
TypeScript (