Interface CfnEndpoint.RoutingConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEndpoint.RoutingConfigProperty.Jsii$Proxy
- Enclosing class:
CfnEndpoint
@Stability(Stable)
public static interface CfnEndpoint.RoutingConfigProperty
extends software.amazon.jsii.JsiiSerializable
The routing configuration of the endpoint.
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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnEndpoint.RoutingConfigProperty
static final class
An implementation forCfnEndpoint.RoutingConfigProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFailoverConfig
The failover configuration for an endpoint.This includes what triggers failover and what happens when it's triggered.
-
builder
-