Cluster
public struct Cluster : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The Amazon Resource Name (ARN) of the cluster.
Declaration
Swift
public let arn: String?
-
The certificate-authority-data for your cluster.
Declaration
Swift
public let certificateAuthority: Certificate?
-
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
Declaration
Swift
public let clientRequestToken: String?
-
The Unix epoch timestamp in seconds for when the cluster was created.
Declaration
Swift
public let createdAt: TimeStamp?
-
The encryption configuration for the cluster.
Declaration
Swift
public let encryptionConfig: [EncryptionConfig]?
-
The endpoint for your Kubernetes API server.
Declaration
Swift
public let endpoint: String?
-
The identity provider information for the cluster.
Declaration
Swift
public let identity: Identity?
-
The logging configuration for your cluster.
Declaration
Swift
public let logging: Logging?
-
The name of the cluster.
Declaration
Swift
public let name: String?
-
The platform version of your Amazon EKS cluster. For more information, see Platform Versions in the Amazon EKS User Guide .
Declaration
Swift
public let platformVersion: String?
-
The VPC configuration used by the cluster control plane. Amazon EKS VPC resources have specific requirements to work properly with Kubernetes. For more information, see Cluster VPC Considerations and Cluster Security Group Considerations in the Amazon EKS User Guide.
Declaration
Swift
public let resourcesVpcConfig: VpcConfigResponse?
-
The Amazon Resource Name (ARN) of the IAM role that provides permissions for the Kubernetes control plane to make calls to AWS API operations on your behalf.
Declaration
Swift
public let roleArn: String?
-
The current status of the cluster.
Declaration
Swift
public let status: ClusterStatus?
-
The metadata that you apply to the cluster to assist with categorization and organization. Each tag consists of a key and an optional value, both of which you define. Cluster tags do not propagate to any other resources associated with the cluster.
Declaration
Swift
public let tags: [String : String]?
-
The Kubernetes server version for the cluster.
Declaration
Swift
public let version: String?
-
init(arn:certificateAuthority:clientRequestToken:createdAt:encryptionConfig:endpoint:identity:logging:name:platformVersion:resourcesVpcConfig:roleArn:status:tags:version:)
Undocumented
Declaration
Swift
public init(arn: String? = nil, certificateAuthority: Certificate? = nil, clientRequestToken: String? = nil, createdAt: TimeStamp? = nil, encryptionConfig: [EncryptionConfig]? = nil, endpoint: String? = nil, identity: Identity? = nil, logging: Logging? = nil, name: String? = nil, platformVersion: String? = nil, resourcesVpcConfig: VpcConfigResponse? = nil, roleArn: String? = nil, status: ClusterStatus? = nil, tags: [String : String]? = nil, version: String? = nil)