@Stability(value=Stable)
public static interface CfnFlow.FailoverConfigProperty
extends software.amazon.jsii.JsiiSerializable
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 Number |
getRecoveryWindow()
The size of the buffer (delay) that the service maintains.
|
default String |
getState()
The state of source failover on the flow.
|
@Stability(value=Stable) @Nullable default 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.
@Stability(value=Stable) @Nullable default 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.
@Stability(value=Stable) static CfnFlow.FailoverConfigProperty.Builder builder()
Copyright © 2022. All rights reserved.