Interface CfnClusterCapacityProviderAssociationsProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnClusterCapacityProviderAssociationsProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:47.051Z") @Stability(Stable) public interface CfnClusterCapacityProviderAssociationsProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnClusterCapacityProviderAssociations.

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.ecs.*;
 CfnClusterCapacityProviderAssociationsProps cfnClusterCapacityProviderAssociationsProps = CfnClusterCapacityProviderAssociationsProps.builder()
         .capacityProviders(List.of("capacityProviders"))
         .cluster("cluster")
         .defaultCapacityProviderStrategy(List.of(CapacityProviderStrategyProperty.builder()
                 .capacityProvider("capacityProvider")
                 // the properties below are optional
                 .base(123)
                 .weight(123)
                 .build()))
         .build();