Interface CfnRule.CapacityProviderStrategyItemProperty

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

@Stability(Stable) public static interface CfnRule.CapacityProviderStrategyItemProperty extends software.amazon.jsii.JsiiSerializable
The details of a capacity provider strategy.

To learn more, see CapacityProviderStrategyItem in the Amazon ECS API Reference.

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.*;
 CapacityProviderStrategyItemProperty capacityProviderStrategyItemProperty = CapacityProviderStrategyItemProperty.builder()
         .capacityProvider("capacityProvider")
         // the properties below are optional
         .base(123)
         .weight(123)
         .build();
 

See Also: