Interface FargateClusterProps

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

@Generated(value="jsii-pacmak/1.110.0 (build 336b265)", date="2025-05-07T19:18:47.736Z") @Stability(Stable) public interface FargateClusterProps extends software.amazon.jsii.JsiiSerializable, ClusterOptions
Configuration props for EKS Fargate.

Example:

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