Interface FargateClusterProps

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

@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)", date="2025-11-17T14:40:51.310Z") @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();