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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classDeprecated.static final classDeprecated. -
Method Summary
Modifier and TypeMethodDescriptionstatic ClusterAttributes.Builderbuilder()Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.getVpc()Deprecated.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getClusterArn
Deprecated.(deprecated) The unique ARN assigned to the service by AWS in the form of arn:aws:eks:. -
getClusterCertificateAuthorityData
Deprecated.(deprecated) The certificate-authority-data for your cluster. -
getClusterEndpoint
Deprecated.(deprecated) The API Server endpoint URL. -
getClusterName
Deprecated.(deprecated) The physical name of the Cluster. -
getSecurityGroups
Deprecated.(deprecated) The security groups associated with this cluster. -
getVpc
Deprecated.(deprecated) The VPC in which this Cluster was created. -
builder
Deprecated.- Returns:
- a
ClusterAttributes.BuilderofClusterAttributes
-