@Stability(value=Stable)
public static interface CfnChannel.InputLossBehaviorProperty
extends software.amazon.jsii.JsiiSerializable
The parent of this entity is GlobalConfiguration.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.medialive.*;
InputLossBehaviorProperty inputLossBehaviorProperty = InputLossBehaviorProperty.builder()
.blackFrameMsec(123)
.inputLossImageColor("inputLossImageColor")
.inputLossImageSlate(InputLocationProperty.builder()
.passwordParam("passwordParam")
.uri("uri")
.username("username")
.build())
.inputLossImageType("inputLossImageType")
.repeatFrameMsec(123)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnChannel.InputLossBehaviorProperty.Builder
A builder for
CfnChannel.InputLossBehaviorProperty |
static class |
CfnChannel.InputLossBehaviorProperty.Jsii$Proxy
An implementation for
CfnChannel.InputLossBehaviorProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnChannel.InputLossBehaviorProperty.Builder |
builder() |
default Number |
getBlackFrameMsec()
On input loss, the number of milliseconds to substitute black into the output before switching to the frame specified by inputLossImageType.
|
default String |
getInputLossImageColor()
When the input loss image type is "color," this field specifies the color to use.
|
default Object |
getInputLossImageSlate()
When the input loss image type is "slate," these fields specify the parameters for accessing the slate.
|
default String |
getInputLossImageType()
Indicates whether to substitute a solid color or a slate into the output after the input loss exceeds blackFrameMsec.
|
default Number |
getRepeatFrameMsec()
On input loss, the number of milliseconds to repeat the previous picture before substituting black into the output.
|
@Stability(value=Stable) @Nullable default Number getBlackFrameMsec()
A value x, where 0 <= x <= 1,000,000 and a value of 1,000,000, is interpreted as infinite.
@Stability(value=Stable) @Nullable default String getInputLossImageColor()
Value: 6 hex characters that represent the values of RGB.
@Stability(value=Stable) @Nullable default Object getInputLossImageSlate()
@Stability(value=Stable) @Nullable default String getInputLossImageType()
@Stability(value=Stable) @Nullable default Number getRepeatFrameMsec()
A value x, where 0 <= x <= 1,000,000 and a value of 1,000,000, is interpreted as infinite.
@Stability(value=Stable) static CfnChannel.InputLossBehaviorProperty.Builder builder()
Copyright © 2022. All rights reserved.