Interface CfnClusterCapacityProviderAssociationsProps

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

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-24T02:42:37.416Z") @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();
 

See Also: