class AvailBlankingState
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.AvailBlankingState |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#AvailBlankingState |
Java | software.amazon.awscdk.services.medialive.alpha.AvailBlankingState |
Python | aws_cdk.aws_medialive_alpha.AvailBlankingState |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป AvailBlankingState |
Avail blanking state.
Example
declare const stack: Stack;
declare const input: medialive.IInput;
declare const bucket: s3.IBucket;
declare const video: medialive.EncodeConfiguration;
new medialive.Channel(stack, 'Channel', {
inputs: [{ input }],
availBlanking: {
state: medialive.AvailBlankingState.ENABLED,
image: medialive.FileLocation.fromBucket(bucket, 'slates/avail.png'),
},
blackoutSlate: {
state: medialive.BlackoutSlateState.ENABLED,
image: medialive.FileLocation.fromBucket(bucket, 'slates/blackout.png'),
},
outputGroups: [
medialive.OutputGroupConfiguration.hls({
name: 'hls',
destinations: [medialive.OutputDestination.toBucket(bucket, 'live/stream')],
outputs: [{ encodes: [video], outputName: 'hls_out' }],
}),
],
});
Properties
| Name | Type | Description |
|---|---|---|
| value | string | The underlying string value passed to CloudFormation. |
| static DISABLED | Avail | Disable blanking during ad avails. |
| static ENABLED | Avail | Enable blanking during ad avails. |
value
Type:
string
The underlying string value passed to CloudFormation.
static DISABLED
Type:
Avail
Disable blanking during ad avails.
static ENABLED
Type:
Avail
Enable blanking during ad avails.
Methods
| Name | Description |
|---|---|
| static of(value) | A value not yet modelled by AWS CDK. |
static of(value)
public static of(value: string): AvailBlankingState
Parameters
- value
string
Returns
A value not yet modelled by AWS CDK.

.NET
Go
Java
Python
TypeScript (