Interface CfnPlan.ArcRoutingControlConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnPlan.ArcRoutingControlConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnPlan

@Stability(Stable) public static interface CfnPlan.ArcRoutingControlConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Configuration for ARC routing controls used in a Region switch plan.

Routing controls are simple on/off switches that you can use to shift traffic away from an impaired Region.

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.arcregionswitch.*;
 ArcRoutingControlConfigurationProperty arcRoutingControlConfigurationProperty = ArcRoutingControlConfigurationProperty.builder()
         .regionAndRoutingControls(Map.of(
                 "regionAndRoutingControlsKey", List.of(ArcRoutingControlStateProperty.builder()
                         .routingControlArn("routingControlArn")
                         .state("state")
                         .build())))
         // the properties below are optional
         .crossAccountRole("crossAccountRole")
         .externalId("externalId")
         .timeoutMinutes(123)
         .build();
 

See Also: