interface ClusterAttributes
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.EKS.Legacy.ClusterAttributes |
Java | software.amazon.awscdk.services.eks.legacy.ClusterAttributes |
Python | aws_cdk.aws_eks_legacy.ClusterAttributes |
TypeScript (source) | @aws-cdk/aws-eks-legacy » ClusterAttributes |
⚠️ Deprecated: undefined
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as ec2 from '@aws-cdk/aws-ec2';
import * as eks_legacy from '@aws-cdk/aws-eks-legacy';
declare const securityGroup: ec2.SecurityGroup;
declare const vpc: ec2.Vpc;
const clusterAttributes: eks_legacy.ClusterAttributes = {
clusterArn: 'clusterArn',
clusterCertificateAuthorityData: 'clusterCertificateAuthorityData',
clusterEndpoint: 'clusterEndpoint',
clusterName: 'clusterName',
securityGroups: [securityGroup],
vpc: vpc,
};
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. |
security | ISecurity [] | The security groups associated with this cluster. |
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.
securityGroups
⚠️ Deprecated: undefined
Type:
ISecurity
[]
The security groups associated with this cluster.
vpc
⚠️ Deprecated: undefined
Type:
IVpc
The VPC in which this Cluster was created.