Nodegroup
public struct Nodegroup : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
If the node group was deployed using a launch template with a custom AMI, then this is CUSTOM. For node groups that weren’t deployed using a launch template, this is the AMI type that was specified in the node group configuration.
Declaration
Swift
public let amiType: AMITypes?
-
The name of the cluster that the managed node group resides in.
Declaration
Swift
public let clusterName: String?
-
The Unix epoch timestamp in seconds for when the managed node group was created.
Declaration
Swift
public let createdAt: TimeStamp?
-
If the node group wasn’t deployed with a launch template, then this is the disk size in the node group configuration. If the node group was deployed with a launch template, then diskSize is null.
Declaration
Swift
public let diskSize: Int?
-
The health status of the node group. If there are issues with your node group’s health, they are listed here.
Declaration
Swift
public let health: NodegroupHealth?
-
If the node group wasn’t deployed with a launch template, then this is the instance type that is associated with the node group. If the node group was deployed with a launch template, then instanceTypes is null.
Declaration
Swift
public let instanceTypes: [String]?
-
The Kubernetes labels applied to the nodes in the node group. Only labels that are applied with the Amazon EKS API are shown here. There may be other Kubernetes labels applied to the nodes in this group.
Declaration
Swift
public let labels: [String : String]?
-
If a launch template was used to create the node group, then this is the launch template that was used.
Declaration
Swift
public let launchTemplate: LaunchTemplateSpecification?
-
The Unix epoch timestamp in seconds for when the managed node group was last modified.
Declaration
Swift
public let modifiedAt: TimeStamp?
-
The Amazon Resource Name (ARN) associated with the managed node group.
Declaration
Swift
public let nodegroupArn: String?
-
The name associated with an Amazon EKS managed node group.
Declaration
Swift
public let nodegroupName: String?
-
The IAM role associated with your node group. The Amazon EKS worker node kubelet daemon makes calls to AWS APIs on your behalf. Worker nodes receive permissions for these API calls through an IAM instance profile and associated policies.
Declaration
Swift
public let nodeRole: String?
-
If the node group was deployed using a launch template with a custom AMI, then this is the AMI ID that was specified in the launch template. For node groups that weren’t deployed using a launch template, this is the version of the Amazon EKS-optimized AMI that the node group was deployed with.
Declaration
Swift
public let releaseVersion: String?
-
If the node group wasn’t deployed with a launch template, then this is the remote access configuration that is associated with the node group. If the node group was deployed with a launch template, then remoteAccess is null.
Declaration
Swift
public let remoteAccess: RemoteAccessConfig?
-
The resources associated with the node group, such as Auto Scaling groups and security groups for remote access.
Declaration
Swift
public let resources: NodegroupResources?
-
The scaling configuration details for the Auto Scaling group that is associated with your node group.
Declaration
Swift
public let scalingConfig: NodegroupScalingConfig?
-
The current status of the managed node group.
Declaration
Swift
public let status: NodegroupStatus?
-
The subnets that were specified for the Auto Scaling group that is associated with your node group.
Declaration
Swift
public let subnets: [String]?
-
The metadata applied to the node group to assist with categorization and organization. Each tag consists of a key and an optional value, both of which you define. Node group tags do not propagate to any other resources associated with the node group, such as the Amazon EC2 instances or subnets.
Declaration
Swift
public let tags: [String : String]?
-
The Kubernetes version of the managed node group.
Declaration
Swift
public let version: String?
-
init(amiType:clusterName:createdAt:diskSize:health:instanceTypes:labels:launchTemplate:modifiedAt:nodegroupArn:nodegroupName:nodeRole:releaseVersion:remoteAccess:resources:scalingConfig:status:subnets:tags:version:)
Undocumented
Declaration
Swift
public init(amiType: AMITypes? = nil, clusterName: String? = nil, createdAt: TimeStamp? = nil, diskSize: Int? = nil, health: NodegroupHealth? = nil, instanceTypes: [String]? = nil, labels: [String : String]? = nil, launchTemplate: LaunchTemplateSpecification? = nil, modifiedAt: TimeStamp? = nil, nodegroupArn: String? = nil, nodegroupName: String? = nil, nodeRole: String? = nil, releaseVersion: String? = nil, remoteAccess: RemoteAccessConfig? = nil, resources: NodegroupResources? = nil, scalingConfig: NodegroupScalingConfig? = nil, status: NodegroupStatus? = nil, subnets: [String]? = nil, tags: [String : String]? = nil, version: String? = nil)