Interface CfnPlan.EcsCapacityIncreaseConfigurationProperty

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

@Stability(Stable) public static interface CfnPlan.EcsCapacityIncreaseConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The configuration for an AWS ECS capacity increase.

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.*;
 EcsCapacityIncreaseConfigurationProperty ecsCapacityIncreaseConfigurationProperty = EcsCapacityIncreaseConfigurationProperty.builder()
         .services(List.of(ServiceProperty.builder()
                 .clusterArn("clusterArn")
                 .crossAccountRole("crossAccountRole")
                 .externalId("externalId")
                 .serviceArn("serviceArn")
                 .build()))
         // the properties below are optional
         .capacityMonitoringApproach("capacityMonitoringApproach")
         .targetPercent(123)
         .timeoutMinutes(123)
         .ungraceful(EcsUngracefulProperty.builder()
                 .minimumSuccessPercentage(123)
                 .build())
         .build();
 

See Also: