Class ClusterAttributes
Inheritance
Implements
Namespace: Amazon.CDK.AWS.EKS.Legacy
Assembly: Amazon.CDK.AWS.EKS.Legacy.dll
Syntax (csharp)
public class ClusterAttributes : Object, IClusterAttributes
Syntax (vb)
Public Class ClusterAttributes
Inherits Object
Implements IClusterAttributes
Remarks
Stability: Deprecated
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.EC2;
using Amazon.CDK.AWS.EKS.Legacy;
SecurityGroup securityGroup;
Vpc vpc;
var clusterAttributes = new ClusterAttributes {
ClusterArn = "clusterArn",
ClusterCertificateAuthorityData = "clusterCertificateAuthorityData",
ClusterEndpoint = "clusterEndpoint",
ClusterName = "clusterName",
SecurityGroups = new [] { securityGroup },
Vpc = vpc
};
Synopsis
Constructors
ClusterAttributes() |
Properties
ClusterArn | (deprecated) The unique ARN assigned to the service by AWS in the form of arn:aws:eks:. |
ClusterCertificateAuthorityData | (deprecated) The certificate-authority-data for your cluster. |
ClusterEndpoint | (deprecated) The API Server endpoint URL. |
ClusterName | (deprecated) The physical name of the Cluster. |
SecurityGroups | (deprecated) The security groups associated with this cluster. |
Vpc | (deprecated) The VPC in which this Cluster was created. |
Constructors
ClusterAttributes()
public ClusterAttributes()
Properties
ClusterArn
(deprecated) The unique ARN assigned to the service by AWS in the form of arn:aws:eks:.
public string ClusterArn { get; set; }
Property Value
System.String
Remarks
Stability: Deprecated
ClusterCertificateAuthorityData
(deprecated) The certificate-authority-data for your cluster.
public string ClusterCertificateAuthorityData { get; set; }
Property Value
System.String
Remarks
Stability: Deprecated
ClusterEndpoint
(deprecated) The API Server endpoint URL.
public string ClusterEndpoint { get; set; }
Property Value
System.String
Remarks
Stability: Deprecated
ClusterName
(deprecated) The physical name of the Cluster.
public string ClusterName { get; set; }
Property Value
System.String
Remarks
Stability: Deprecated
SecurityGroups
(deprecated) The security groups associated with this cluster.
public ISecurityGroup[] SecurityGroups { get; set; }
Property Value
Remarks
Stability: Deprecated
Vpc
(deprecated) The VPC in which this Cluster was created.
public IVpc Vpc { get; set; }
Property Value
Remarks
Stability: Deprecated