@Stability(value=Stable)
public static interface CfnEndpoint.RoutingConfigProperty
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.events.*;
RoutingConfigProperty routingConfigProperty = RoutingConfigProperty.builder()
.failoverConfig(FailoverConfigProperty.builder()
.primary(PrimaryProperty.builder()
.healthCheck("healthCheck")
.build())
.secondary(SecondaryProperty.builder()
.route("route")
.build())
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnEndpoint.RoutingConfigProperty.Builder
A builder for
CfnEndpoint.RoutingConfigProperty |
static class |
CfnEndpoint.RoutingConfigProperty.Jsii$Proxy
An implementation for
CfnEndpoint.RoutingConfigProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnEndpoint.RoutingConfigProperty.Builder |
builder() |
Object |
getFailoverConfig()
The failover configuration for an endpoint.
|
@Stability(value=Stable) @NotNull Object getFailoverConfig()
This includes what triggers failover and what happens when it's triggered.
@Stability(value=Stable) static CfnEndpoint.RoutingConfigProperty.Builder builder()
Copyright © 2022. All rights reserved.