Interface FargateClusterProps

All Superinterfaces:
ClusterOptions, CommonClusterOptions, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
FargateClusterProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.113.0 (build fc68b25)", date="2025-09-02T11:25:31.359Z") @Stability(Stable) public interface FargateClusterProps extends software.amazon.jsii.JsiiSerializable, ClusterOptions
Configuration props for EKS Fargate.

Example:

 import software.amazon.awscdk.cdk.lambdalayer.kubectl.v33.KubectlV33Layer;
 FargateCluster cluster = FargateCluster.Builder.create(this, "MyCluster")
         .version(KubernetesVersion.V1_33)
         .kubectlLayer(new KubectlV33Layer(this, "kubectl"))
         .build();