Interface FargateClusterProps

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

@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)", date="2025-12-18T18:20:10.091Z") @Stability(Stable) public interface FargateClusterProps extends software.amazon.jsii.JsiiSerializable, ClusterOptions
Configuration props for EKS Fargate.

Example:

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