Interface FargateClusterProps

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

@Generated(value="jsii-pacmak/1.129.0 (build eaca441)", date="2026-05-13T16:55:09.048Z") @Stability(Stable) public interface FargateClusterProps extends software.amazon.jsii.JsiiSerializable, ClusterOptions
Configuration props for EKS Fargate.

Example:

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