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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forFargateClusterPropsstatic final classAn implementation forFargateClusterProps -
Method Summary
Modifier and TypeMethodDescriptionstatic FargateClusterProps.Builderbuilder()default FargateProfileOptionsFargate Profile to create along with the cluster.Methods inherited from interface software.amazon.awscdk.services.eks.ClusterOptions
getAlbController, getAuthenticationMode, getAwscliLayer, getClusterHandlerEnvironment, getClusterHandlerSecurityGroup, getClusterLogging, getCoreDnsComputeType, getEndpointAccess, getIpFamily, getKubectlEnvironment, getKubectlLayer, getKubectlMemory, getMastersRole, getOnEventLayer, getOutputMastersRoleArn, getPlaceClusterHandlerInVpc, getPrune, getRemoteNodeNetworks, getRemotePodNetworks, getRemovalPolicy, getSecretsEncryptionKey, getServiceIpv4CidrMethods inherited from interface software.amazon.awscdk.services.eks.CommonClusterOptions
getClusterName, getOutputClusterName, getOutputConfigCommand, getRole, getSecurityGroup, getVersion, getVpc, getVpcSubnetsMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDefaultProfile
Fargate Profile to create along with the cluster.Default: - A profile called "default" with 'default' and 'kube-system' selectors will be created if this is left undefined.
-
builder
- Returns:
- a
FargateClusterProps.BuilderofFargateClusterProps
-