public static interface CfnFlow.FailoverConfigProperty
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.mediaconnect.*; FailoverConfigProperty failoverConfigProperty = FailoverConfigProperty.builder() .recoveryWindow(123) .state("state") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnFlow.FailoverConfigProperty.Builder
A builder for
CfnFlow.FailoverConfigProperty |
static class |
CfnFlow.FailoverConfigProperty.Jsii$Proxy
An implementation for
CfnFlow.FailoverConfigProperty |
Modifier and Type | Method and Description |
---|---|
static CfnFlow.FailoverConfigProperty.Builder |
builder() |
default java.lang.Number |
getRecoveryWindow()
The size of the buffer (delay) that the service maintains.
|
default java.lang.String |
getState()
The state of source failover on the flow.
|
default java.lang.Number getRecoveryWindow()
A larger buffer means a longer delay in transmitting the stream, but more room for error correction. A smaller buffer means a shorter delay, but less room for error correction.
default java.lang.String getState()
If the state is disabled, the flow can have only one source. If the state is enabled, the flow can have one or two sources.
static CfnFlow.FailoverConfigProperty.Builder builder()