public static interface CfnChannel.InputLossBehaviorProperty
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 java.lang.Number |
getBlackFrameMsec()
On input loss, the number of milliseconds to substitute black into the output before switching to the frame specified by inputLossImageType.
|
default java.lang.String |
getInputLossImageColor()
When the input loss image type is "color," this field specifies the color to use.
|
default java.lang.Object |
getInputLossImageSlate()
When the input loss image type is "slate," these fields specify the parameters for accessing the slate.
|
default java.lang.String |
getInputLossImageType()
Indicates whether to substitute a solid color or a slate into the output after the input loss exceeds blackFrameMsec.
|
default java.lang.Number |
getRepeatFrameMsec()
On input loss, the number of milliseconds to repeat the previous picture before substituting black into the output.
|
default java.lang.Number getBlackFrameMsec()
A value x, where 0 <= x <= 1,000,000 and a value of 1,000,000, is interpreted as infinite.
default java.lang.String getInputLossImageColor()
Value: 6 hex characters that represent the values of RGB.
default java.lang.Object getInputLossImageSlate()
default java.lang.String getInputLossImageType()
default java.lang.Number getRepeatFrameMsec()
A value x, where 0 <= x <= 1,000,000 and a value of 1,000,000, is interpreted as infinite.
static CfnChannel.InputLossBehaviorProperty.Builder builder()