Class CfnCluster

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
All Implemented Interfaces:
IInspectable, ITaggable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-18T17:54:16.741Z") @Stability(Stable) public class CfnCluster extends CfnResource implements IInspectable, ITaggable
Creates an Amazon EKS control plane.

The Amazon EKS control plane consists of control plane instances that run the Kubernetes software, such as etcd and the API server. The control plane runs in an account managed by AWS , and the Kubernetes API is exposed by the Amazon EKS API server endpoint. Each Amazon EKS cluster control plane is single tenant and unique. It runs on its own set of Amazon EC2 instances.

The cluster control plane is provisioned across multiple Availability Zones and fronted by an Elastic Load Balancing Network Load Balancer. Amazon EKS also provisions elastic network interfaces in your VPC subnets to provide connectivity from the control plane instances to the nodes (for example, to support kubectl exec , logs , and proxy data flows).

Amazon EKS nodes run in your AWS account and connect to your cluster's control plane over the Kubernetes API server endpoint and a certificate file that is created for your cluster.

You can use the endpointPublicAccess and endpointPrivateAccess parameters to enable or disable public and private access to your cluster's Kubernetes API server endpoint. By default, public access is enabled, and private access is disabled. For more information, see Amazon EKS Cluster Endpoint Access Control in the Amazon EKS User Guide .

You can use the logging parameter to enable or disable exporting the Kubernetes control plane logs for your cluster to CloudWatch Logs. By default, cluster control plane logs aren't exported to CloudWatch Logs. For more information, see Amazon EKS Cluster Control Plane Logs in the Amazon EKS User Guide .

CloudWatch Logs ingestion, archive storage, and data scanning rates apply to exported control plane logs. For more information, see CloudWatch Pricing .

In most cases, it takes several minutes to create a cluster. After you create an Amazon EKS cluster, you must configure your Kubernetes tooling to communicate with the API server and launch nodes into your cluster. For more information, see Allowing users to access your cluster and Launching Amazon EKS nodes in the Amazon EKS User Guide .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.eks.*;
 CfnCluster cfnCluster = CfnCluster.Builder.create(this, "MyCfnCluster")
         .resourcesVpcConfig(ResourcesVpcConfigProperty.builder()
                 .subnetIds(List.of("subnetIds"))
                 // the properties below are optional
                 .endpointPrivateAccess(false)
                 .endpointPublicAccess(false)
                 .publicAccessCidrs(List.of("publicAccessCidrs"))
                 .securityGroupIds(List.of("securityGroupIds"))
                 .build())
         .roleArn("roleArn")
         // the properties below are optional
         .accessConfig(AccessConfigProperty.builder()
                 .authenticationMode("authenticationMode")
                 .bootstrapClusterCreatorAdminPermissions(false)
                 .build())
         .encryptionConfig(List.of(EncryptionConfigProperty.builder()
                 .provider(ProviderProperty.builder()
                         .keyArn("keyArn")
                         .build())
                 .resources(List.of("resources"))
                 .build()))
         .kubernetesNetworkConfig(KubernetesNetworkConfigProperty.builder()
                 .ipFamily("ipFamily")
                 .serviceIpv4Cidr("serviceIpv4Cidr")
                 .serviceIpv6Cidr("serviceIpv6Cidr")
                 .build())
         .logging(LoggingProperty.builder()
                 .clusterLogging(ClusterLoggingProperty.builder()
                         .enabledTypes(List.of(LoggingTypeConfigProperty.builder()
                                 .type("type")
                                 .build()))
                         .build())
                 .build())
         .name("name")
         .outpostConfig(OutpostConfigProperty.builder()
                 .controlPlaneInstanceType("controlPlaneInstanceType")
                 .outpostArns(List.of("outpostArns"))
                 // the properties below are optional
                 .controlPlanePlacement(ControlPlanePlacementProperty.builder()
                         .groupName("groupName")
                         .build())
                 .build())
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .version("version")
         .build();
 

See Also:
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String CFN_RESOURCE_TYPE_NAME
      The CloudFormation resource type name for this resource class.
  • Constructor Details

    • CfnCluster

      protected CfnCluster(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnCluster

      protected CfnCluster(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnCluster

      @Stability(Stable) public CfnCluster(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnClusterProps props)
      Parameters:
      scope - Scope in which this resource is defined. This parameter is required.
      id - Construct identifier for this resource (unique in its scope). This parameter is required.
      props - Resource properties. This parameter is required.
  • Method Details

    • inspect

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      Parameters:
      inspector - tree inspector to collect and process attributes. This parameter is required.
    • renderProperties

      @Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
      Overrides:
      renderProperties in class CfnResource
      Parameters:
      props - This parameter is required.
    • getAttrArn

      @Stability(Stable) @NotNull public String getAttrArn()
      The ARN of the cluster, such as arn:aws:eks:us-west-2:666666666666:cluster/prod .
    • getAttrCertificateAuthorityData

      @Stability(Stable) @NotNull public String getAttrCertificateAuthorityData()
      The certificate-authority-data for your cluster.
    • getAttrClusterSecurityGroupId

      @Stability(Stable) @NotNull public String getAttrClusterSecurityGroupId()
      The cluster security group that was created by Amazon EKS for the cluster.

      Managed node groups use this security group for control plane to data plane communication.

      This parameter is only returned by Amazon EKS clusters that support managed node groups. For more information, see Managed node groups in the Amazon EKS User Guide .

    • getAttrEncryptionConfigKeyArn

      @Stability(Stable) @NotNull public String getAttrEncryptionConfigKeyArn()
      Amazon Resource Name (ARN) or alias of the customer master key (CMK).
    • getAttrEndpoint

      @Stability(Stable) @NotNull public String getAttrEndpoint()
      The endpoint for your Kubernetes API server, such as https://5E1D0CEXAMPLEA591B746AFC5AB30262.yl4.us-west-2.eks.amazonaws.com .
    • getAttrId

      @Stability(Stable) @NotNull public String getAttrId()
      The ID of your local Amazon EKS cluster on an AWS Outpost.

      This property isn't available for an Amazon EKS cluster on the AWS cloud.

    • getAttrKubernetesNetworkConfigServiceIpv6Cidr

      @Stability(Stable) @NotNull public String getAttrKubernetesNetworkConfigServiceIpv6Cidr()
      The CIDR block that Kubernetes Service IP addresses are assigned from if you created a 1.21 or later cluster with version >1.10.1 or later of the Amazon VPC CNI add-on and specified ipv6 for ipFamily when you created the cluster. Kubernetes assigns Service addresses from the unique local address range ( fc00::/7 ) because you can't specify a custom IPv6 CIDR block when you create the cluster.
    • getAttrOpenIdConnectIssuerUrl

      @Stability(Stable) @NotNull public String getAttrOpenIdConnectIssuerUrl()
      The issuer URL for the OIDC identity provider of the cluster, such as https://oidc.eks.us-west-2.amazonaws.com/id/EXAMPLED539D4633E53DE1B716D3041E . If you need to remove https:// from this output value, you can include the following code in your template.

      !Select [1, !Split ["//", !GetAtt EKSCluster.OpenIdConnectIssuerUrl]]

    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getTags

      @Stability(Stable) @NotNull public TagManager getTags()
      Tag Manager which manages the tags for this resource.
      Specified by:
      getTags in interface ITaggable
    • getResourcesVpcConfig

      @Stability(Stable) @NotNull public Object getResourcesVpcConfig()
      The VPC configuration that's used by the cluster control plane.
    • setResourcesVpcConfig

      @Stability(Stable) public void setResourcesVpcConfig(@NotNull IResolvable value)
      The VPC configuration that's used by the cluster control plane.
    • setResourcesVpcConfig

      @Stability(Stable) public void setResourcesVpcConfig(@NotNull CfnCluster.ResourcesVpcConfigProperty value)
      The VPC configuration that's used by the cluster control plane.
    • getRoleArn

      @Stability(Stable) @NotNull public String getRoleArn()
      The Amazon Resource Name (ARN) of the IAM role that provides permissions for the Kubernetes control plane to make calls to AWS API operations on your behalf.
    • setRoleArn

      @Stability(Stable) public void setRoleArn(@NotNull String value)
      The Amazon Resource Name (ARN) of the IAM role that provides permissions for the Kubernetes control plane to make calls to AWS API operations on your behalf.
    • getAccessConfig

      @Stability(Stable) @Nullable public Object getAccessConfig()
      The access configuration for the cluster.
    • setAccessConfig

      @Stability(Stable) public void setAccessConfig(@Nullable IResolvable value)
      The access configuration for the cluster.
    • setAccessConfig

      @Stability(Stable) public void setAccessConfig(@Nullable CfnCluster.AccessConfigProperty value)
      The access configuration for the cluster.
    • getEncryptionConfig

      @Stability(Stable) @Nullable public Object getEncryptionConfig()
      The encryption configuration for the cluster.
    • setEncryptionConfig

      @Stability(Stable) public void setEncryptionConfig(@Nullable IResolvable value)
      The encryption configuration for the cluster.
    • setEncryptionConfig

      @Stability(Stable) public void setEncryptionConfig(@Nullable List<Object> value)
      The encryption configuration for the cluster.
    • getKubernetesNetworkConfig

      @Stability(Stable) @Nullable public Object getKubernetesNetworkConfig()
      The Kubernetes network configuration for the cluster.
    • setKubernetesNetworkConfig

      @Stability(Stable) public void setKubernetesNetworkConfig(@Nullable IResolvable value)
      The Kubernetes network configuration for the cluster.
    • setKubernetesNetworkConfig

      @Stability(Stable) public void setKubernetesNetworkConfig(@Nullable CfnCluster.KubernetesNetworkConfigProperty value)
      The Kubernetes network configuration for the cluster.
    • getLogging

      @Stability(Stable) @Nullable public Object getLogging()
      The logging configuration for your cluster.
    • setLogging

      @Stability(Stable) public void setLogging(@Nullable IResolvable value)
      The logging configuration for your cluster.
    • setLogging

      @Stability(Stable) public void setLogging(@Nullable CfnCluster.LoggingProperty value)
      The logging configuration for your cluster.
    • getName

      @Stability(Stable) @Nullable public String getName()
      The unique name to give to your cluster.
    • setName

      @Stability(Stable) public void setName(@Nullable String value)
      The unique name to give to your cluster.
    • getOutpostConfig

      @Stability(Stable) @Nullable public Object getOutpostConfig()
      An object representing the configuration of your local Amazon EKS cluster on an AWS Outpost.
    • setOutpostConfig

      @Stability(Stable) public void setOutpostConfig(@Nullable IResolvable value)
      An object representing the configuration of your local Amazon EKS cluster on an AWS Outpost.
    • setOutpostConfig

      @Stability(Stable) public void setOutpostConfig(@Nullable CfnCluster.OutpostConfigProperty value)
      An object representing the configuration of your local Amazon EKS cluster on an AWS Outpost.
    • getTagsRaw

      @Stability(Stable) @Nullable public List<CfnTag> getTagsRaw()
      The metadata that you apply to the cluster to assist with categorization and organization.
    • setTagsRaw

      @Stability(Stable) public void setTagsRaw(@Nullable List<CfnTag> value)
      The metadata that you apply to the cluster to assist with categorization and organization.
    • getVersion

      @Stability(Stable) @Nullable public String getVersion()
      The desired Kubernetes version for your cluster.
    • setVersion

      @Stability(Stable) public void setVersion(@Nullable String value)
      The desired Kubernetes version for your cluster.