class AudioTypeControl
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.AudioTypeControl |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#AudioTypeControl |
Java | software.amazon.awscdk.services.medialive.alpha.AudioTypeControl |
Python | aws_cdk.aws_medialive_alpha.AudioTypeControl |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป AudioTypeControl |
Determines how the audio type is signaled in the 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 audioTypeControl = medialive_alpha.AudioTypeControl.of('value');
Properties
| Name | Type | Description |
|---|---|---|
| value | string | The underlying string value passed to CloudFormation. |
| static FOLLOW_INPUT | Audio | If the input contains an ISO 639 audioType it is passed through; |
| static USE_CONFIGURED | Audio | The configured audioType is always used. |
value
Type:
string
The underlying string value passed to CloudFormation.
static FOLLOW_INPUT
Type:
Audio
If the input contains an ISO 639 audioType it is passed through;
otherwise the
configured audioType is used.
static USE_CONFIGURED
Type:
Audio
The configured audioType is always used.
Methods
| Name | Description |
|---|---|
| static of(value) | A value not yet modelled by AWS CDK. |
static of(value)
public static of(value: string): AudioTypeControl
Parameters
- value
string
Returns
A value not yet modelled by AWS CDK.

.NET
Go
Java
Python
TypeScript (