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();