interface ICluster
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.EKS.Legacy.ICluster |
Java | software.amazon.awscdk.services.eks.legacy.ICluster |
Python | aws_cdk.aws_eks_legacy.ICluster |
TypeScript (source) | @aws-cdk/aws-eks-legacy » ICluster |
⚠️ Deprecated: undefined
Implemented by
Cluster
Obtainable from
Cluster
.fromClusterAttributes()
An EKS cluster.
Properties
Name | Type | Description |
---|---|---|
cluster | string | The unique ARN assigned to the service by AWS in the form of arn:aws:eks:. |
cluster | string | The certificate-authority-data for your cluster. |
cluster | string | The API Server endpoint URL. |
cluster | string | The physical name of the Cluster. |
connections | Connections | The network connections associated with this resource. |
env | Resource | The environment this resource belongs to. |
node | Construct | The construct tree node for this construct. |
stack | Stack | The stack in which this resource is defined. |
vpc | IVpc | The VPC in which this Cluster was created. |
clusterArn
⚠️ Deprecated: undefined
Type:
string
The unique ARN assigned to the service by AWS in the form of arn:aws:eks:.
clusterCertificateAuthorityData
⚠️ Deprecated: undefined
Type:
string
The certificate-authority-data for your cluster.
clusterEndpoint
⚠️ Deprecated: undefined
Type:
string
The API Server endpoint URL.
clusterName
⚠️ Deprecated: undefined
Type:
string
The physical name of the Cluster.
connections
⚠️ Deprecated: undefined
Type:
Connections
The network connections associated with this resource.
env
⚠️ Deprecated: undefined
Type:
Resource
The environment this resource belongs to.
For resources that are created and managed by the CDK (generally, those created by creating new class instances like Role, Bucket, etc.), this is always the same as the environment of the stack they belong to; however, for imported resources (those obtained from static methods like fromRoleArn, fromBucketName, etc.), that might be different than the stack they were imported into.
node
⚠️ Deprecated: undefined
Type:
Construct
The construct tree node for this construct.
stack
⚠️ Deprecated: undefined
Type:
Stack
The stack in which this resource is defined.
vpc
⚠️ Deprecated: undefined
Type:
IVpc
The VPC in which this Cluster was created.
Methods
Name | Description |
---|---|
apply | Apply the given removal policy to this resource. |
RemovalPolicy(policy)
applypublic applyRemovalPolicy(policy: RemovalPolicy): void
⚠️ Deprecated: undefined
Parameters
- policy
Removal
Policy
Apply the given removal policy to this resource.
The Removal Policy controls what happens to this resource when it stops being managed by CloudFormation, either because you've removed it from the CDK application or because you've made a change that requires the resource to be replaced.
The resource can be deleted (RemovalPolicy.DESTROY
), or left in your AWS
account for data recovery and cleanup later (RemovalPolicy.RETAIN
).