Interface CfnPlan.Ec2AsgCapacityIncreaseConfigurationProperty

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

@Stability(Stable) public static interface CfnPlan.Ec2AsgCapacityIncreaseConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Configuration for increasing the capacity of Amazon EC2 Auto Scaling groups during a Region switch.

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.*;
 Ec2AsgCapacityIncreaseConfigurationProperty ec2AsgCapacityIncreaseConfigurationProperty = Ec2AsgCapacityIncreaseConfigurationProperty.builder()
         .asgs(List.of(AsgProperty.builder()
                 .arn("arn")
                 .crossAccountRole("crossAccountRole")
                 .externalId("externalId")
                 .build()))
         // the properties below are optional
         .capacityMonitoringApproach("capacityMonitoringApproach")
         .targetPercent(123)
         .timeoutMinutes(123)
         .ungraceful(Ec2UngracefulProperty.builder()
                 .minimumSuccessPercentage(123)
                 .build())
         .build();
 

See Also: