Interface CfnClusterCapacityProviderAssociationsProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnClusterCapacityProviderAssociationsProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)",
date="2024-10-25T14:21:14.439Z")
@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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnClusterCapacityProviderAssociationsProps
static final class
An implementation forCfnClusterCapacityProviderAssociationsProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The capacity providers to associate with the cluster.The cluster the capacity provider association is the target of.The default capacity provider strategy to associate with the cluster.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCapacityProviders
The capacity providers to associate with the cluster.- See Also:
-
getCluster
The cluster the capacity provider association is the target of.- See Also:
-
getDefaultCapacityProviderStrategy
The default capacity provider strategy to associate with the cluster.- See Also:
-
builder
-