Interface ClusterAttributes

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
ClusterAttributes.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:46.771Z") @Stability(Deprecated) @Deprecated public interface ClusterAttributes extends software.amazon.jsii.JsiiSerializable
Deprecated.
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.ec2.*;
 import software.amazon.awscdk.services.eks.legacy.*;
 SecurityGroup securityGroup;
 Vpc vpc;
 ClusterAttributes clusterAttributes = ClusterAttributes.builder()
         .clusterArn("clusterArn")
         .clusterCertificateAuthorityData("clusterCertificateAuthorityData")
         .clusterEndpoint("clusterEndpoint")
         .clusterName("clusterName")
         .securityGroups(List.of(securityGroup))
         .vpc(vpc)
         .build();
 
  • Method Details

    • getClusterArn

      @Stability(Deprecated) @Deprecated @NotNull String getClusterArn()
      Deprecated.
      (deprecated) The unique ARN assigned to the service by AWS in the form of arn:aws:eks:.
    • getClusterCertificateAuthorityData

      @Stability(Deprecated) @Deprecated @NotNull String getClusterCertificateAuthorityData()
      Deprecated.
      (deprecated) The certificate-authority-data for your cluster.
    • getClusterEndpoint

      @Stability(Deprecated) @Deprecated @NotNull String getClusterEndpoint()
      Deprecated.
      (deprecated) The API Server endpoint URL.
    • getClusterName

      @Stability(Deprecated) @Deprecated @NotNull String getClusterName()
      Deprecated.
      (deprecated) The physical name of the Cluster.
    • getSecurityGroups

      @Stability(Deprecated) @Deprecated @NotNull List<ISecurityGroup> getSecurityGroups()
      Deprecated.
      (deprecated) The security groups associated with this cluster.
    • getVpc

      @Stability(Deprecated) @Deprecated @NotNull IVpc getVpc()
      Deprecated.
      (deprecated) The VPC in which this Cluster was created.
    • builder

      @Stability(Deprecated) @Deprecated static ClusterAttributes.Builder builder()
      Deprecated.
      Returns:
      a ClusterAttributes.Builder of ClusterAttributes