Class FargateCluster
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.Resource
software.amazon.awscdk.services.eks.Cluster
software.amazon.awscdk.services.eks.FargateCluster
- All Implemented Interfaces:
IResource
,IConnectable
,ICluster
,software.amazon.jsii.JsiiSerializable
,software.constructs.IConstruct
,software.constructs.IDependable
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:09.741Z")
@Stability(Stable)
public class FargateCluster
extends Cluster
Defines an EKS cluster that runs entirely on AWS Fargate.
The cluster is created with a default Fargate Profile that matches the
"default" and "kube-system" namespaces. You can add additional profiles using
addFargateProfile
.
Example:
FargateCluster cluster = FargateCluster.Builder.create(this, "MyCluster") .version(KubernetesVersion.V1_31) .build();
-
Nested Class Summary
Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.amazon.awscdk.services.eks.ICluster
ICluster.Jsii$Default, ICluster.Jsii$Proxy
Nested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.amazon.awscdk.IResource
IResource.Jsii$Default
-
Constructor Summary
ModifierConstructorDescriptionprotected
FargateCluster
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
FargateCluster
(software.amazon.jsii.JsiiObjectRef objRef) FargateCluster
(software.constructs.Construct scope, String id, FargateClusterProps props) -
Method Summary
Modifier and TypeMethodDescriptionFargate Profile that was created with the cluster.Methods inherited from class software.amazon.awscdk.services.eks.Cluster
addAutoScalingGroupCapacity, addCdk8sChart, addCdk8sChart, addFargateProfile, addHelmChart, addManifest, addNodegroupCapacity, addNodegroupCapacity, addServiceAccount, addServiceAccount, connectAutoScalingGroupCapacity, fromClusterAttributes, getAdminRole, getAlbController, getAuthenticationMode, getAwsAuth, getAwscliLayer, getClusterArn, getClusterCertificateAuthorityData, getClusterEncryptionConfigKeyArn, getClusterEndpoint, getClusterHandlerSecurityGroup, getClusterName, getClusterOpenIdConnectIssuer, getClusterOpenIdConnectIssuerUrl, getClusterSecurityGroup, getClusterSecurityGroupId, getConnections, getDefaultCapacity, getDefaultNodegroup, getEksPodIdentityAgent, getIngressLoadBalancerAddress, getIngressLoadBalancerAddress, getIpFamily, getKubectlEnvironment, getKubectlLambdaRole, getKubectlLayer, getKubectlMemory, getKubectlPrivateSubnets, getKubectlRole, getKubectlSecurityGroup, getOnEventLayer, getOpenIdConnectProvider, getPrune, getRole, getServiceLoadBalancerAddress, getServiceLoadBalancerAddress, getVpc, grantAccess
Methods inherited from class software.amazon.awscdk.Resource
applyRemovalPolicy, generatePhysicalName, getEnv, getPhysicalName, getResourceArnAttribute, getResourceNameAttribute, getStack, isOwnedResource, isResource
Methods inherited from class software.constructs.Construct
getNode, isConstruct, toString
Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface software.amazon.awscdk.services.eks.ICluster
getKubectlProvider
Methods inherited from interface software.constructs.IConstruct
getNode
Methods inherited from interface software.amazon.awscdk.IResource
applyRemovalPolicy, getEnv, getStack
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Constructor Details
-
FargateCluster
protected FargateCluster(software.amazon.jsii.JsiiObjectRef objRef) -
FargateCluster
protected FargateCluster(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
FargateCluster
@Stability(Stable) public FargateCluster(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull FargateClusterProps props) - Parameters:
scope
- This parameter is required.id
- This parameter is required.props
- This parameter is required.
-
-
Method Details
-
getDefaultProfile
Fargate Profile that was created with the cluster.
-