interface BlackoutSlate
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.BlackoutSlate |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#BlackoutSlate |
Java | software.amazon.awscdk.services.medialive.alpha.BlackoutSlate |
Python | aws_cdk.aws_medialive_alpha.BlackoutSlate |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป BlackoutSlate |
Blackout slate configuration for the channel.
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 |
|---|---|---|
| image? | File | The blackout slate image. |
| network | Network | Whether to enable network end blackout (triggered by SCTE-35 Network End Segmentation Descriptor). |
| network | File | The network end blackout image. |
| network | string | The EIDR network ID (e.g. '10.XXXX/XXXX-XXXX-XXXX-XXXX-XXXX-C'). |
| state? | Blackout | Whether to enable the blackout slate. |
image?
Type:
File
(optional, default: solid black)
The blackout slate image.
Provide a FileLocation referencing an S3 bucket
(FileLocation.fromBucket, which auto-grants read access) or a URL (FileLocation.url).
Only .bmp and .png supported.
networkEndBlackout?
Type:
Network
(optional, default: ENABLED if networkEndBlackoutImage is provided, DISABLED otherwise)
Whether to enable network end blackout (triggered by SCTE-35 Network End Segmentation Descriptor).
networkEndBlackoutImage?
Type:
File
(optional, default: solid black)
The network end blackout image.
Provide a FileLocation referencing an S3 bucket
(FileLocation.fromBucket, which auto-grants read access) or a URL (FileLocation.url).
networkId?
Type:
string
(optional, default: no network ID)
The EIDR network ID (e.g. '10.XXXX/XXXX-XXXX-XXXX-XXXX-XXXX-C').
state?
Type:
Blackout
(optional, default: ENABLED if image is provided, DISABLED otherwise)
Whether to enable the blackout slate.

.NET
Go
Java
Python
TypeScript (