@Generated(value="jsii-pacmak/1.70.0 (build 03c2f6f)", date="2022-11-01T13:16:48.186Z") @Stability(value=Experimental) public interface ClusterAttributes extends software.amazon.jsii.JsiiSerializable
// 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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
ClusterAttributes.Builder
A builder for
ClusterAttributes |
static class |
ClusterAttributes.Jsii$Proxy
An implementation for
ClusterAttributes |
| Modifier and Type | Method and Description |
|---|---|
static ClusterAttributes.Builder |
builder() |
String |
getClusterArn()
(experimental) The unique ARN assigned to the service by AWS in the form of arn:aws:eks:.
|
String |
getClusterCertificateAuthorityData()
(experimental) The certificate-authority-data for your cluster.
|
String |
getClusterEndpoint()
(experimental) The API Server endpoint URL.
|
String |
getClusterName()
(experimental) The physical name of the Cluster.
|
List<ISecurityGroup> |
getSecurityGroups()
(experimental) The security groups associated with this cluster.
|
IVpc |
getVpc()
(experimental) The VPC in which this Cluster was created.
|
@Stability(value=Experimental) @NotNull String getClusterArn()
@Stability(value=Experimental) @NotNull String getClusterCertificateAuthorityData()
@Stability(value=Experimental) @NotNull String getClusterEndpoint()
@Stability(value=Experimental) @NotNull String getClusterName()
@Stability(value=Experimental) @NotNull List<ISecurityGroup> getSecurityGroups()
@Stability(value=Experimental) @NotNull IVpc getVpc()
@Stability(value=Experimental) static ClusterAttributes.Builder builder()
ClusterAttributes.Builder of ClusterAttributesCopyright © 2022. All rights reserved.