{ "version":"2.0", "metadata":{ "apiVersion":"2017-11-01", "endpointPrefix":"eks", "jsonVersion":"1.1", "protocol":"rest-json", "serviceAbbreviation":"Amazon EKS", "serviceFullName":"Amazon Elastic Kubernetes Service", "serviceId":"EKS", "signatureVersion":"v4", "signingName":"eks", "uid":"eks-2017-11-01" }, "operations":{ "AssociateEncryptionConfig":{ "name":"AssociateEncryptionConfig", "http":{ "method":"POST", "requestUri":"/clusters/{name}/encryption-config/associate" }, "input":{"shape":"AssociateEncryptionConfigRequest"}, "output":{"shape":"AssociateEncryptionConfigResponse"}, "errors":[ {"shape":"InvalidParameterException"}, {"shape":"ClientException"}, {"shape":"ServerException"}, {"shape":"ResourceInUseException"}, {"shape":"ResourceNotFoundException"}, {"shape":"InvalidRequestException"} ], "documentation":"

Associate encryption configuration to an existing cluster.

You can use this API to enable encryption on existing clusters which do not have encryption already enabled. This allows you to implement a defense-in-depth security strategy without migrating applications to new EKS clusters.

" }, "AssociateIdentityProviderConfig":{ "name":"AssociateIdentityProviderConfig", "http":{ "method":"POST", "requestUri":"/clusters/{name}/identity-provider-configs/associate" }, "input":{"shape":"AssociateIdentityProviderConfigRequest"}, "output":{"shape":"AssociateIdentityProviderConfigResponse"}, "errors":[ {"shape":"InvalidParameterException"}, {"shape":"ClientException"}, {"shape":"ServerException"}, {"shape":"ResourceInUseException"}, {"shape":"ResourceNotFoundException"}, {"shape":"InvalidRequestException"} ], "documentation":"

Associate an identity provider configuration to a cluster.

If you want to authenticate identities using an identity provider, you can create an identity provider configuration and associate it to your cluster. After configuring authentication to your cluster you can create Kubernetes roles and clusterroles to assign permissions to the roles, and then bind the roles to the identities using Kubernetes rolebindings and clusterrolebindings. For more information see Using RBAC Authorization in the Kubernetes documentation.

" }, "CreateAddon":{ "name":"CreateAddon", "http":{ "method":"POST", "requestUri":"/clusters/{name}/addons" }, "input":{"shape":"CreateAddonRequest"}, "output":{"shape":"CreateAddonResponse"}, "errors":[ {"shape":"InvalidParameterException"}, {"shape":"InvalidRequestException"}, {"shape":"ResourceNotFoundException"}, {"shape":"ResourceInUseException"}, {"shape":"ClientException"}, {"shape":"ServerException"} ], "documentation":"

Creates an Amazon EKS add-on.

Amazon EKS add-ons help to automate the provisioning and lifecycle management of common operational software for Amazon EKS clusters. Amazon EKS add-ons can only be used with Amazon EKS clusters running version 1.18 with platform version eks.3 or later because add-ons rely on the Server-side Apply Kubernetes feature, which is only available in Kubernetes 1.18 and later.

" }, "CreateCluster":{ "name":"CreateCluster", "http":{ "method":"POST", "requestUri":"/clusters" }, "input":{"shape":"CreateClusterRequest"}, "output":{"shape":"CreateClusterResponse"}, "errors":[ {"shape":"ResourceInUseException"}, {"shape":"ResourceLimitExceededException"}, {"shape":"InvalidParameterException"}, {"shape":"ClientException"}, {"shape":"ServerException"}, {"shape":"ServiceUnavailableException"}, {"shape":"UnsupportedAvailabilityZoneException"} ], "documentation":"

Creates an Amazon EKS control plane.

The Amazon EKS control plane consists of control plane instances that run the Kubernetes software, such as etcd and the API server. The control plane runs in an account managed by AWS, and the Kubernetes API is exposed via the Amazon EKS API server endpoint. Each Amazon EKS cluster control plane is single-tenant and unique and runs on its own set of Amazon EC2 instances.

The cluster control plane is provisioned across multiple Availability Zones and fronted by an Elastic Load Balancing Network Load Balancer. Amazon EKS also provisions elastic network interfaces in your VPC subnets to provide connectivity from the control plane instances to the nodes (for example, to support kubectl exec, logs, and proxy data flows).

Amazon EKS nodes run in your AWS account and connect to your cluster's control plane via the Kubernetes API server endpoint and a certificate file that is created for your cluster.

Cluster creation typically takes several minutes. After you create an Amazon EKS cluster, you must configure your Kubernetes tooling to communicate with the API server and launch nodes into your cluster. For more information, see Managing Cluster Authentication and Launching Amazon EKS nodes in the Amazon EKS User Guide.

" }, "CreateFargateProfile":{ "name":"CreateFargateProfile", "http":{ "method":"POST", "requestUri":"/clusters/{name}/fargate-profiles" }, "input":{"shape":"CreateFargateProfileRequest"}, "output":{"shape":"CreateFargateProfileResponse"}, "errors":[ {"shape":"InvalidParameterException"}, {"shape":"InvalidRequestException"}, {"shape":"ClientException"}, {"shape":"ServerException"}, {"shape":"ResourceLimitExceededException"}, {"shape":"UnsupportedAvailabilityZoneException"} ], "documentation":"

Creates an AWS Fargate profile for your Amazon EKS cluster. You must have at least one Fargate profile in a cluster to be able to run pods on Fargate.

The Fargate profile allows an administrator to declare which pods run on Fargate and specify which pods run on which Fargate profile. This declaration is done through the profile’s selectors. Each profile can have up to five selectors that contain a namespace and labels. A namespace is required for every selector. The label field consists of multiple optional key-value pairs. Pods that match the selectors are scheduled on Fargate. If a to-be-scheduled pod matches any of the selectors in the Fargate profile, then that pod is run on Fargate.

When you create a Fargate profile, you must specify a pod execution role to use with the pods that are scheduled with the profile. This role is added to the cluster's Kubernetes Role Based Access Control (RBAC) for authorization so that the kubelet that is running on the Fargate infrastructure can register with your Amazon EKS cluster so that it can appear in your cluster as a node. The pod execution role also provides IAM permissions to the Fargate infrastructure to allow read access to Amazon ECR image repositories. For more information, see Pod Execution Role in the Amazon EKS User Guide.

Fargate profiles are immutable. However, you can create a new updated profile to replace an existing profile and then delete the original after the updated profile has finished creating.

If any Fargate profiles in a cluster are in the DELETING status, you must wait for that Fargate profile to finish deleting before you can create any other profiles in that cluster.

For more information, see AWS Fargate Profile in the Amazon EKS User Guide.

" }, "CreateNodegroup":{ "name":"CreateNodegroup", "http":{ "method":"POST", "requestUri":"/clusters/{name}/node-groups" }, "input":{"shape":"CreateNodegroupRequest"}, "output":{"shape":"CreateNodegroupResponse"}, "errors":[ {"shape":"ResourceInUseException"}, {"shape":"ResourceLimitExceededException"}, {"shape":"InvalidRequestException"}, {"shape":"InvalidParameterException"}, {"shape":"ClientException"}, {"shape":"ServerException"}, {"shape":"ServiceUnavailableException"} ], "documentation":"

Creates a managed node group for an Amazon EKS cluster. You can only create a node group for your cluster that is equal to the current Kubernetes version for the cluster. All node groups are created with the latest AMI release version for the respective minor Kubernetes version of the cluster, unless you deploy a custom AMI using a launch template. For more information about using launch templates, see Launch template support.

An Amazon EKS managed node group is an Amazon EC2 Auto Scaling group and associated Amazon EC2 instances that are managed by AWS for an Amazon EKS cluster. Each node group uses a version of the Amazon EKS optimized Amazon Linux 2 AMI. For more information, see Managed Node Groups in the Amazon EKS User Guide.

" }, "DeleteAddon":{ "name":"DeleteAddon", "http":{ "method":"DELETE", "requestUri":"/clusters/{name}/addons/{addonName}" }, "input":{"shape":"DeleteAddonRequest"}, "output":{"shape":"DeleteAddonResponse"}, "errors":[ {"shape":"InvalidParameterException"}, {"shape":"InvalidRequestException"}, {"shape":"ResourceNotFoundException"}, {"shape":"ClientException"}, {"shape":"ServerException"} ], "documentation":"

Delete an Amazon EKS add-on.

When you remove the add-on, it will also be deleted from the cluster. You can always manually start an add-on on the cluster using the Kubernetes API.

" }, "DeleteCluster":{ "name":"DeleteCluster", "http":{ "method":"DELETE", "requestUri":"/clusters/{name}" }, "input":{"shape":"DeleteClusterRequest"}, "output":{"shape":"DeleteClusterResponse"}, "errors":[ {"shape":"ResourceInUseException"}, {"shape":"ResourceNotFoundException"}, {"shape":"ClientException"}, {"shape":"ServerException"}, {"shape":"ServiceUnavailableException"} ], "documentation":"

Deletes the Amazon EKS cluster control plane.

If you have active services in your cluster that are associated with a load balancer, you must delete those services before deleting the cluster so that the load balancers are deleted properly. Otherwise, you can have orphaned resources in your VPC that prevent you from being able to delete the VPC. For more information, see Deleting a Cluster in the Amazon EKS User Guide.

If you have managed node groups or Fargate profiles attached to the cluster, you must delete them first. For more information, see DeleteNodegroup and DeleteFargateProfile.

" }, "DeleteFargateProfile":{ "name":"DeleteFargateProfile", "http":{ "method":"DELETE", "requestUri":"/clusters/{name}/fargate-profiles/{fargateProfileName}" }, "input":{"shape":"DeleteFargateProfileRequest"}, "output":{"shape":"DeleteFargateProfileResponse"}, "errors":[ {"shape":"InvalidParameterException"}, {"shape":"ClientException"}, {"shape":"ServerException"}, {"shape":"ResourceNotFoundException"} ], "documentation":"

Deletes an AWS Fargate profile.

When you delete a Fargate profile, any pods running on Fargate that were created with the profile are deleted. If those pods match another Fargate profile, then they are scheduled on Fargate with that profile. If they no longer match any Fargate profiles, then they are not scheduled on Fargate and they may remain in a pending state.

Only one Fargate profile in a cluster can be in the DELETING status at a time. You must wait for a Fargate profile to finish deleting before you can delete any other profiles in that cluster.

" }, "DeleteNodegroup":{ "name":"DeleteNodegroup", "http":{ "method":"DELETE", "requestUri":"/clusters/{name}/node-groups/{nodegroupName}" }, "input":{"shape":"DeleteNodegroupRequest"}, "output":{"shape":"DeleteNodegroupResponse"}, "errors":[ {"shape":"ResourceInUseException"}, {"shape":"ResourceNotFoundException"}, {"shape":"InvalidParameterException"}, {"shape":"ClientException"}, {"shape":"ServerException"}, {"shape":"ServiceUnavailableException"} ], "documentation":"

Deletes an Amazon EKS node group for a cluster.

" }, "DescribeAddon":{ "name":"DescribeAddon", "http":{ "method":"GET", "requestUri":"/clusters/{name}/addons/{addonName}" }, "input":{"shape":"DescribeAddonRequest"}, "output":{"shape":"DescribeAddonResponse"}, "errors":[ {"shape":"InvalidParameterException"}, {"shape":"InvalidRequestException"}, {"shape":"ResourceNotFoundException"}, {"shape":"ClientException"}, {"shape":"ServerException"} ], "documentation":"

Describes an Amazon EKS add-on.

" }, "DescribeAddonVersions":{ "name":"DescribeAddonVersions", "http":{ "method":"GET", "requestUri":"/addons/supported-versions" }, "input":{"shape":"DescribeAddonVersionsRequest"}, "output":{"shape":"DescribeAddonVersionsResponse"}, "errors":[ {"shape":"ServerException"}, {"shape":"ResourceNotFoundException"}, {"shape":"InvalidParameterException"} ], "documentation":"

Describes the Kubernetes versions that the add-on can be used with.

" }, "DescribeCluster":{ "name":"DescribeCluster", "http":{ "method":"GET", "requestUri":"/clusters/{name}" }, "input":{"shape":"DescribeClusterRequest"}, "output":{"shape":"DescribeClusterResponse"}, "errors":[ {"shape":"ResourceNotFoundException"}, {"shape":"ClientException"}, {"shape":"ServerException"}, {"shape":"ServiceUnavailableException"} ], "documentation":"

Returns descriptive information about an Amazon EKS cluster.

The API server endpoint and certificate authority data returned by this operation are required for kubelet and kubectl to communicate with your Kubernetes API server. For more information, see Create a kubeconfig for Amazon EKS.

The API server endpoint and certificate authority data aren't available until the cluster reaches the ACTIVE state.

" }, "DescribeFargateProfile":{ "name":"DescribeFargateProfile", "http":{ "method":"GET", "requestUri":"/clusters/{name}/fargate-profiles/{fargateProfileName}" }, "input":{"shape":"DescribeFargateProfileRequest"}, "output":{"shape":"DescribeFargateProfileResponse"}, "errors":[ {"shape":"InvalidParameterException"}, {"shape":"ClientException"}, {"shape":"ServerException"}, {"shape":"ResourceNotFoundException"} ], "documentation":"

Returns descriptive information about an AWS Fargate profile.

" }, "DescribeIdentityProviderConfig":{ "name":"DescribeIdentityProviderConfig", "http":{ "method":"POST", "requestUri":"/clusters/{name}/identity-provider-configs/describe" }, "input":{"shape":"DescribeIdentityProviderConfigRequest"}, "output":{"shape":"DescribeIdentityProviderConfigResponse"}, "errors":[ {"shape":"InvalidParameterException"}, {"shape":"ResourceNotFoundException"}, {"shape":"ClientException"}, {"shape":"ServerException"}, {"shape":"ServiceUnavailableException"} ], "documentation":"

Returns descriptive information about an identity provider configuration.

" }, "DescribeNodegroup":{ "name":"DescribeNodegroup", "http":{ "method":"GET", "requestUri":"/clusters/{name}/node-groups/{nodegroupName}" }, "input":{"shape":"DescribeNodegroupRequest"}, "output":{"shape":"DescribeNodegroupResponse"}, "errors":[ {"shape":"InvalidParameterException"}, {"shape":"ResourceNotFoundException"}, {"shape":"ClientException"}, {"shape":"ServerException"}, {"shape":"ServiceUnavailableException"} ], "documentation":"

Returns descriptive information about an Amazon EKS node group.

" }, "DescribeUpdate":{ "name":"DescribeUpdate", "http":{ "method":"GET", "requestUri":"/clusters/{name}/updates/{updateId}" }, "input":{"shape":"DescribeUpdateRequest"}, "output":{"shape":"DescribeUpdateResponse"}, "errors":[ {"shape":"InvalidParameterException"}, {"shape":"ClientException"}, {"shape":"ServerException"}, {"shape":"ResourceNotFoundException"} ], "documentation":"

Returns descriptive information about an update against your Amazon EKS cluster or associated managed node group.

When the status of the update is Succeeded, the update is complete. If an update fails, the status is Failed, and an error detail explains the reason for the failure.

" }, "DisassociateIdentityProviderConfig":{ "name":"DisassociateIdentityProviderConfig", "http":{ "method":"POST", "requestUri":"/clusters/{name}/identity-provider-configs/disassociate" }, "input":{"shape":"DisassociateIdentityProviderConfigRequest"}, "output":{"shape":"DisassociateIdentityProviderConfigResponse"}, "errors":[ {"shape":"InvalidParameterException"}, {"shape":"ClientException"}, {"shape":"ServerException"}, {"shape":"ResourceInUseException"}, {"shape":"ResourceNotFoundException"}, {"shape":"InvalidRequestException"} ], "documentation":"

Disassociates an identity provider configuration from a cluster. If you disassociate an identity provider from your cluster, users included in the provider can no longer access the cluster. However, you can still access the cluster with AWS IAM users.

" }, "ListAddons":{ "name":"ListAddons", "http":{ "method":"GET", "requestUri":"/clusters/{name}/addons" }, "input":{"shape":"ListAddonsRequest"}, "output":{"shape":"ListAddonsResponse"}, "errors":[ {"shape":"InvalidParameterException"}, {"shape":"InvalidRequestException"}, {"shape":"ClientException"}, {"shape":"ResourceNotFoundException"}, {"shape":"ServerException"} ], "documentation":"

Lists the available add-ons.

" }, "ListClusters":{ "name":"ListClusters", "http":{ "method":"GET", "requestUri":"/clusters" }, "input":{"shape":"ListClustersRequest"}, "output":{"shape":"ListClustersResponse"}, "errors":[ {"shape":"InvalidParameterException"}, {"shape":"ClientException"}, {"shape":"ServerException"}, {"shape":"ServiceUnavailableException"} ], "documentation":"

Lists the Amazon EKS clusters in your AWS account in the specified Region.

" }, "ListFargateProfiles":{ "name":"ListFargateProfiles", "http":{ "method":"GET", "requestUri":"/clusters/{name}/fargate-profiles" }, "input":{"shape":"ListFargateProfilesRequest"}, "output":{"shape":"ListFargateProfilesResponse"}, "errors":[ {"shape":"InvalidParameterException"}, {"shape":"ResourceNotFoundException"}, {"shape":"ClientException"}, {"shape":"ServerException"} ], "documentation":"

Lists the AWS Fargate profiles associated with the specified cluster in your AWS account in the specified Region.

" }, "ListIdentityProviderConfigs":{ "name":"ListIdentityProviderConfigs", "http":{ "method":"GET", "requestUri":"/clusters/{name}/identity-provider-configs" }, "input":{"shape":"ListIdentityProviderConfigsRequest"}, "output":{"shape":"ListIdentityProviderConfigsResponse"}, "errors":[ {"shape":"InvalidParameterException"}, {"shape":"ClientException"}, {"shape":"ServerException"}, {"shape":"ServiceUnavailableException"}, {"shape":"ResourceNotFoundException"} ], "documentation":"

A list of identity provider configurations.

" }, "ListNodegroups":{ "name":"ListNodegroups", "http":{ "method":"GET", "requestUri":"/clusters/{name}/node-groups" }, "input":{"shape":"ListNodegroupsRequest"}, "output":{"shape":"ListNodegroupsResponse"}, "errors":[ {"shape":"InvalidParameterException"}, {"shape":"ClientException"}, {"shape":"ServerException"}, {"shape":"ServiceUnavailableException"}, {"shape":"ResourceNotFoundException"} ], "documentation":"

Lists the Amazon EKS managed node groups associated with the specified cluster in your AWS account in the specified Region. Self-managed node groups are not listed.

" }, "ListTagsForResource":{ "name":"ListTagsForResource", "http":{ "method":"GET", "requestUri":"/tags/{resourceArn}" }, "input":{"shape":"ListTagsForResourceRequest"}, "output":{"shape":"ListTagsForResourceResponse"}, "errors":[ {"shape":"BadRequestException"}, {"shape":"NotFoundException"} ], "documentation":"

List the tags for an Amazon EKS resource.

" }, "ListUpdates":{ "name":"ListUpdates", "http":{ "method":"GET", "requestUri":"/clusters/{name}/updates" }, "input":{"shape":"ListUpdatesRequest"}, "output":{"shape":"ListUpdatesResponse"}, "errors":[ {"shape":"InvalidParameterException"}, {"shape":"ClientException"}, {"shape":"ServerException"}, {"shape":"ResourceNotFoundException"} ], "documentation":"

Lists the updates associated with an Amazon EKS cluster or managed node group in your AWS account, in the specified Region.

" }, "TagResource":{ "name":"TagResource", "http":{ "method":"POST", "requestUri":"/tags/{resourceArn}" }, "input":{"shape":"TagResourceRequest"}, "output":{"shape":"TagResourceResponse"}, "errors":[ {"shape":"BadRequestException"}, {"shape":"NotFoundException"} ], "documentation":"

Associates the specified tags to a resource with the specified resourceArn. If existing tags on a resource are not specified in the request parameters, they are not changed. When a resource is deleted, the tags associated with that resource are deleted as well. Tags that you create for Amazon EKS resources do not propagate to any other resources associated with the cluster. For example, if you tag a cluster with this operation, that tag does not automatically propagate to the subnets and nodes associated with the cluster.

" }, "UntagResource":{ "name":"UntagResource", "http":{ "method":"DELETE", "requestUri":"/tags/{resourceArn}" }, "input":{"shape":"UntagResourceRequest"}, "output":{"shape":"UntagResourceResponse"}, "errors":[ {"shape":"BadRequestException"}, {"shape":"NotFoundException"} ], "documentation":"

Deletes specified tags from a resource.

" }, "UpdateAddon":{ "name":"UpdateAddon", "http":{ "method":"POST", "requestUri":"/clusters/{name}/addons/{addonName}/update" }, "input":{"shape":"UpdateAddonRequest"}, "output":{"shape":"UpdateAddonResponse"}, "errors":[ {"shape":"InvalidParameterException"}, {"shape":"InvalidRequestException"}, {"shape":"ResourceNotFoundException"}, {"shape":"ResourceInUseException"}, {"shape":"ClientException"}, {"shape":"ServerException"} ], "documentation":"

Updates an Amazon EKS add-on.

" }, "UpdateClusterConfig":{ "name":"UpdateClusterConfig", "http":{ "method":"POST", "requestUri":"/clusters/{name}/update-config" }, "input":{"shape":"UpdateClusterConfigRequest"}, "output":{"shape":"UpdateClusterConfigResponse"}, "errors":[ {"shape":"InvalidParameterException"}, {"shape":"ClientException"}, {"shape":"ServerException"}, {"shape":"ResourceInUseException"}, {"shape":"ResourceNotFoundException"}, {"shape":"InvalidRequestException"} ], "documentation":"

Updates an Amazon EKS cluster configuration. Your cluster continues to function during the update. The response output includes an update ID that you can use to track the status of your cluster update with the DescribeUpdate API operation.

You can use this API operation to enable or disable exporting the Kubernetes control plane logs for your cluster to CloudWatch Logs. By default, cluster control plane logs aren't exported to CloudWatch Logs. For more information, see Amazon EKS Cluster Control Plane Logs in the Amazon EKS User Guide .

CloudWatch Logs ingestion, archive storage, and data scanning rates apply to exported control plane logs. For more information, see Amazon CloudWatch Pricing.

You can also use this API operation to enable or disable public and private access to your cluster's Kubernetes API server endpoint. By default, public access is enabled, and private access is disabled. For more information, see Amazon EKS Cluster Endpoint Access Control in the Amazon EKS User Guide .

At this time, you can not update the subnets or security group IDs for an existing cluster.

Cluster updates are asynchronous, and they should finish within a few minutes. During an update, the cluster status moves to UPDATING (this status transition is eventually consistent). When the update is complete (either Failed or Successful), the cluster status moves to Active.

" }, "UpdateClusterVersion":{ "name":"UpdateClusterVersion", "http":{ "method":"POST", "requestUri":"/clusters/{name}/updates" }, "input":{"shape":"UpdateClusterVersionRequest"}, "output":{"shape":"UpdateClusterVersionResponse"}, "errors":[ {"shape":"InvalidParameterException"}, {"shape":"ClientException"}, {"shape":"ServerException"}, {"shape":"ResourceInUseException"}, {"shape":"ResourceNotFoundException"}, {"shape":"InvalidRequestException"} ], "documentation":"

Updates an Amazon EKS cluster to the specified Kubernetes version. Your cluster continues to function during the update. The response output includes an update ID that you can use to track the status of your cluster update with the DescribeUpdate API operation.

Cluster updates are asynchronous, and they should finish within a few minutes. During an update, the cluster status moves to UPDATING (this status transition is eventually consistent). When the update is complete (either Failed or Successful), the cluster status moves to Active.

If your cluster has managed node groups attached to it, all of your node groups’ Kubernetes versions must match the cluster’s Kubernetes version in order to update the cluster to a new Kubernetes version.

" }, "UpdateNodegroupConfig":{ "name":"UpdateNodegroupConfig", "http":{ "method":"POST", "requestUri":"/clusters/{name}/node-groups/{nodegroupName}/update-config" }, "input":{"shape":"UpdateNodegroupConfigRequest"}, "output":{"shape":"UpdateNodegroupConfigResponse"}, "errors":[ {"shape":"InvalidParameterException"}, {"shape":"ClientException"}, {"shape":"ServerException"}, {"shape":"ResourceInUseException"}, {"shape":"ResourceNotFoundException"}, {"shape":"InvalidRequestException"} ], "documentation":"

Updates an Amazon EKS managed node group configuration. Your node group continues to function during the update. The response output includes an update ID that you can use to track the status of your node group update with the DescribeUpdate API operation. Currently you can update the Kubernetes labels for a node group or the scaling configuration.

" }, "UpdateNodegroupVersion":{ "name":"UpdateNodegroupVersion", "http":{ "method":"POST", "requestUri":"/clusters/{name}/node-groups/{nodegroupName}/update-version" }, "input":{"shape":"UpdateNodegroupVersionRequest"}, "output":{"shape":"UpdateNodegroupVersionResponse"}, "errors":[ {"shape":"InvalidParameterException"}, {"shape":"ClientException"}, {"shape":"ServerException"}, {"shape":"ResourceInUseException"}, {"shape":"ResourceNotFoundException"}, {"shape":"InvalidRequestException"} ], "documentation":"

Updates the Kubernetes version or AMI version of an Amazon EKS managed node group.

You can update a node group using a launch template only if the node group was originally deployed with a launch template. If you need to update a custom AMI in a node group that was deployed with a launch template, then update your custom AMI, specify the new ID in a new version of the launch template, and then update the node group to the new version of the launch template.

If you update without a launch template, then you can update to the latest available AMI version of a node group's current Kubernetes version by not specifying a Kubernetes version in the request. You can update to the latest AMI version of your cluster's current Kubernetes version by specifying your cluster's Kubernetes version in the request. For more information, see Amazon EKS optimized Amazon Linux 2 AMI versions in the Amazon EKS User Guide.

You cannot roll back a node group to an earlier Kubernetes version or AMI version.

When a node in a managed node group is terminated due to a scaling action or update, the pods in that node are drained first. Amazon EKS attempts to drain the nodes gracefully and will fail if it is unable to do so. You can force the update if Amazon EKS is unable to drain the nodes as a result of a pod disruption budget issue.

" } }, "shapes":{ "AMITypes":{ "type":"string", "enum":[ "AL2_x86_64", "AL2_x86_64_GPU", "AL2_ARM_64" ] }, "Addon":{ "type":"structure", "members":{ "addonName":{ "shape":"String", "documentation":"

The name of the add-on.

" }, "clusterName":{ "shape":"ClusterName", "documentation":"

The name of the cluster.

" }, "status":{ "shape":"AddonStatus", "documentation":"

The status of the add-on.

" }, "addonVersion":{ "shape":"String", "documentation":"

The version of the add-on.

" }, "health":{ "shape":"AddonHealth", "documentation":"

An object that represents the health of the add-on.

" }, "addonArn":{ "shape":"String", "documentation":"

The Amazon Resource Name (ARN) of the add-on.

" }, "createdAt":{ "shape":"Timestamp", "documentation":"

The date and time that the add-on was created.

" }, "modifiedAt":{ "shape":"Timestamp", "documentation":"

The date and time that the add-on was last modified.

" }, "serviceAccountRoleArn":{ "shape":"String", "documentation":"

The Amazon Resource Name (ARN) of the IAM role that is bound to the Kubernetes service account used by the add-on.

" }, "tags":{ "shape":"TagMap", "documentation":"

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.

" } }, "documentation":"

An Amazon EKS add-on.

" }, "AddonHealth":{ "type":"structure", "members":{ "issues":{ "shape":"AddonIssueList", "documentation":"

An object that represents the add-on's health issues.

" } }, "documentation":"

The health of the add-on.

" }, "AddonInfo":{ "type":"structure", "members":{ "addonName":{ "shape":"String", "documentation":"

The name of the add-on.

" }, "type":{ "shape":"String", "documentation":"

The type of the add-on.

" }, "addonVersions":{ "shape":"AddonVersionInfoList", "documentation":"

An object that represents information about available add-on versions and compatible Kubernetes versions.

" } }, "documentation":"

Information about an add-on.

" }, "AddonIssue":{ "type":"structure", "members":{ "code":{ "shape":"AddonIssueCode", "documentation":"

A code that describes the type of issue.

" }, "message":{ "shape":"String", "documentation":"

A message that provides details about the issue and what might cause it.

" }, "resourceIds":{ "shape":"StringList", "documentation":"

The resource IDs of the issue.

" } }, "documentation":"

An issue related to an add-on.

" }, "AddonIssueCode":{ "type":"string", "enum":[ "AccessDenied", "InternalFailure", "ClusterUnreachable", "InsufficientNumberOfReplicas", "ConfigurationConflict", "AdmissionRequestDenied" ] }, "AddonIssueList":{ "type":"list", "member":{"shape":"AddonIssue"} }, "AddonStatus":{ "type":"string", "enum":[ "CREATING", "ACTIVE", "CREATE_FAILED", "UPDATING", "DELETING", "DELETE_FAILED", "DEGRADED" ] }, "AddonVersionInfo":{ "type":"structure", "members":{ "addonVersion":{ "shape":"String", "documentation":"

The version of the add-on.

" }, "architecture":{ "shape":"StringList", "documentation":"

The architectures that the version supports.

" }, "compatibilities":{ "shape":"Compatibilities", "documentation":"

An object that represents the compatibilities of a version.

" } }, "documentation":"

Information about an add-on version.

" }, "AddonVersionInfoList":{ "type":"list", "member":{"shape":"AddonVersionInfo"} }, "Addons":{ "type":"list", "member":{"shape":"AddonInfo"} }, "AssociateEncryptionConfigRequest":{ "type":"structure", "required":[ "clusterName", "encryptionConfig" ], "members":{ "clusterName":{ "shape":"String", "documentation":"

The name of the cluster that you are associating with encryption configuration.

", "location":"uri", "locationName":"name" }, "encryptionConfig":{ "shape":"EncryptionConfigList", "documentation":"

The configuration you are using for encryption.

" }, "clientRequestToken":{ "shape":"String", "documentation":"

The client request token you are using with the encryption configuration.

", "idempotencyToken":true } } }, "AssociateEncryptionConfigResponse":{ "type":"structure", "members":{ "update":{"shape":"Update"} } }, "AssociateIdentityProviderConfigRequest":{ "type":"structure", "required":[ "clusterName", "oidc" ], "members":{ "clusterName":{ "shape":"String", "documentation":"

The name of the cluster to associate the configuration to.

", "location":"uri", "locationName":"name" }, "oidc":{ "shape":"OidcIdentityProviderConfigRequest", "documentation":"

An object that represents an OpenID Connect (OIDC) identity provider configuration.

" }, "tags":{ "shape":"TagMap", "documentation":"

The metadata to apply to the configuration to assist with categorization and organization. Each tag consists of a key and an optional value, both of which you define.

" }, "clientRequestToken":{ "shape":"String", "documentation":"

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

", "idempotencyToken":true } } }, "AssociateIdentityProviderConfigResponse":{ "type":"structure", "members":{ "update":{"shape":"Update"}, "tags":{ "shape":"TagMap", "documentation":"

The tags for the resource.

" } } }, "AutoScalingGroup":{ "type":"structure", "members":{ "name":{ "shape":"String", "documentation":"

The name of the Auto Scaling group associated with an Amazon EKS managed node group.

" } }, "documentation":"

An Auto Scaling group that is associated with an Amazon EKS managed node group.

" }, "AutoScalingGroupList":{ "type":"list", "member":{"shape":"AutoScalingGroup"} }, "BadRequestException":{ "type":"structure", "members":{ "message":{"shape":"String"} }, "documentation":"

This exception is thrown if the request contains a semantic error. The precise meaning will depend on the API, and will be documented in the error message.

", "error":{"httpStatusCode":400}, "exception":true }, "Boolean":{"type":"boolean"}, "BoxedBoolean":{ "type":"boolean", "box":true }, "BoxedInteger":{ "type":"integer", "box":true }, "Capacity":{ "type":"integer", "box":true, "min":1 }, "CapacityTypes":{ "type":"string", "enum":[ "ON_DEMAND", "SPOT" ] }, "Certificate":{ "type":"structure", "members":{ "data":{ "shape":"String", "documentation":"

The Base64-encoded certificate data required to communicate with your cluster. Add this to the certificate-authority-data section of the kubeconfig file for your cluster.

" } }, "documentation":"

An object representing the certificate-authority-data for your cluster.

" }, "ClientException":{ "type":"structure", "members":{ "clusterName":{ "shape":"String", "documentation":"

The Amazon EKS cluster associated with the exception.

" }, "nodegroupName":{ "shape":"String", "documentation":"

The Amazon EKS managed node group associated with the exception.

" }, "addonName":{"shape":"String"}, "message":{"shape":"String"} }, "documentation":"

These errors are usually caused by a client action. Actions can include using an action or resource on behalf of a user that doesn't have permissions to use the action or resource or specifying an identifier that is not valid.

", "error":{"httpStatusCode":400}, "exception":true }, "Cluster":{ "type":"structure", "members":{ "name":{ "shape":"String", "documentation":"

The name of the cluster.

" }, "arn":{ "shape":"String", "documentation":"

The Amazon Resource Name (ARN) of the cluster.

" }, "createdAt":{ "shape":"Timestamp", "documentation":"

The Unix epoch timestamp in seconds for when the cluster was created.

" }, "version":{ "shape":"String", "documentation":"

The Kubernetes server version for the cluster.

" }, "endpoint":{ "shape":"String", "documentation":"

The endpoint for your Kubernetes API server.

" }, "roleArn":{ "shape":"String", "documentation":"

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.

" }, "resourcesVpcConfig":{ "shape":"VpcConfigResponse", "documentation":"

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.

" }, "kubernetesNetworkConfig":{ "shape":"KubernetesNetworkConfigResponse", "documentation":"

The Kubernetes network configuration for the cluster.

" }, "logging":{ "shape":"Logging", "documentation":"

The logging configuration for your cluster.

" }, "identity":{ "shape":"Identity", "documentation":"

The identity provider information for the cluster.

" }, "status":{ "shape":"ClusterStatus", "documentation":"

The current status of the cluster.

" }, "certificateAuthority":{ "shape":"Certificate", "documentation":"

The certificate-authority-data for your cluster.

" }, "clientRequestToken":{ "shape":"String", "documentation":"

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

" }, "platformVersion":{ "shape":"String", "documentation":"

The platform version of your Amazon EKS cluster. For more information, see Platform Versions in the Amazon EKS User Guide .

" }, "tags":{ "shape":"TagMap", "documentation":"

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.

" }, "encryptionConfig":{ "shape":"EncryptionConfigList", "documentation":"

The encryption configuration for the cluster.

" } }, "documentation":"

An object representing an Amazon EKS cluster.

" }, "ClusterName":{ "type":"string", "max":100, "min":1, "pattern":"^[0-9A-Za-z][A-Za-z0-9\\-_]*" }, "ClusterStatus":{ "type":"string", "enum":[ "CREATING", "ACTIVE", "DELETING", "FAILED", "UPDATING" ] }, "Compatibilities":{ "type":"list", "member":{"shape":"Compatibility"} }, "Compatibility":{ "type":"structure", "members":{ "clusterVersion":{ "shape":"String", "documentation":"

The supported Kubernetes version of the cluster.

" }, "platformVersions":{ "shape":"StringList", "documentation":"

The supported compute platform.

" }, "defaultVersion":{ "shape":"Boolean", "documentation":"

The supported default version.

" } }, "documentation":"

Compatibility information.

" }, "CreateAddonRequest":{ "type":"structure", "required":[ "clusterName", "addonName" ], "members":{ "clusterName":{ "shape":"ClusterName", "documentation":"

The name of the cluster to create the add-on for.

", "location":"uri", "locationName":"name" }, "addonName":{ "shape":"String", "documentation":"

The name of the add-on. The name must match one of the names returned by ListAddons .

" }, "addonVersion":{ "shape":"String", "documentation":"

The version of the add-on. The version must match one of the versions returned by DescribeAddonVersions .

" }, "serviceAccountRoleArn":{ "shape":"RoleArn", "documentation":"

The Amazon Resource Name (ARN) of an existing IAM role to bind to the add-on's service account. The role must be assigned the IAM permissions required by the add-on. If you don't specify an existing IAM role, then the add-on uses the permissions assigned to the node IAM role. For more information, see Amazon EKS node IAM role in the Amazon EKS User Guide.

To specify an existing IAM role, you must have an IAM OpenID Connect (OIDC) provider created for your cluster. For more information, see Enabling IAM roles for service accounts on your cluster in the Amazon EKS User Guide.

" }, "resolveConflicts":{ "shape":"ResolveConflicts", "documentation":"

How to resolve parameter value conflicts when migrating an existing add-on to an Amazon EKS add-on.

" }, "clientRequestToken":{ "shape":"String", "documentation":"

A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

", "idempotencyToken":true }, "tags":{ "shape":"TagMap", "documentation":"

The metadata to 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.

" } } }, "CreateAddonResponse":{ "type":"structure", "members":{ "addon":{"shape":"Addon"} } }, "CreateClusterRequest":{ "type":"structure", "required":[ "name", "roleArn", "resourcesVpcConfig" ], "members":{ "name":{ "shape":"ClusterName", "documentation":"

The unique name to give to your cluster.

" }, "version":{ "shape":"String", "documentation":"

The desired Kubernetes version for your cluster. If you don't specify a value here, the latest version available in Amazon EKS is used.

" }, "roleArn":{ "shape":"String", "documentation":"

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. For more information, see Amazon EKS Service IAM Role in the Amazon EKS User Guide .

" }, "resourcesVpcConfig":{ "shape":"VpcConfigRequest", "documentation":"

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. You must specify at least two subnets. You can specify up to five security groups, but we recommend that you use a dedicated security group for your cluster control plane.

" }, "kubernetesNetworkConfig":{ "shape":"KubernetesNetworkConfigRequest", "documentation":"

The Kubernetes network configuration for the cluster.

" }, "logging":{ "shape":"Logging", "documentation":"

Enable or disable exporting the Kubernetes control plane logs for your cluster to CloudWatch Logs. By default, cluster control plane logs aren't exported to CloudWatch Logs. For more information, see Amazon EKS Cluster Control Plane Logs in the Amazon EKS User Guide .

CloudWatch Logs ingestion, archive storage, and data scanning rates apply to exported control plane logs. For more information, see Amazon CloudWatch Pricing.

" }, "clientRequestToken":{ "shape":"String", "documentation":"

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

", "idempotencyToken":true }, "tags":{ "shape":"TagMap", "documentation":"

The metadata to 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.

" }, "encryptionConfig":{ "shape":"EncryptionConfigList", "documentation":"

The encryption configuration for the cluster.

" } } }, "CreateClusterResponse":{ "type":"structure", "members":{ "cluster":{ "shape":"Cluster", "documentation":"

The full description of your new cluster.

" } } }, "CreateFargateProfileRequest":{ "type":"structure", "required":[ "fargateProfileName", "clusterName", "podExecutionRoleArn" ], "members":{ "fargateProfileName":{ "shape":"String", "documentation":"

The name of the Fargate profile.

" }, "clusterName":{ "shape":"String", "documentation":"

The name of the Amazon EKS cluster to apply the Fargate profile to.

", "location":"uri", "locationName":"name" }, "podExecutionRoleArn":{ "shape":"String", "documentation":"

The Amazon Resource Name (ARN) of the pod execution role to use for pods that match the selectors in the Fargate profile. The pod execution role allows Fargate infrastructure to register with your cluster as a node, and it provides read access to Amazon ECR image repositories. For more information, see Pod Execution Role in the Amazon EKS User Guide.

" }, "subnets":{ "shape":"StringList", "documentation":"

The IDs of subnets to launch your pods into. At this time, pods running on Fargate are not assigned public IP addresses, so only private subnets (with no direct route to an Internet Gateway) are accepted for this parameter.

" }, "selectors":{ "shape":"FargateProfileSelectors", "documentation":"

The selectors to match for pods to use this Fargate profile. Each selector must have an associated namespace. Optionally, you can also specify labels for a namespace. You may specify up to five selectors in a Fargate profile.

" }, "clientRequestToken":{ "shape":"String", "documentation":"

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

", "idempotencyToken":true }, "tags":{ "shape":"TagMap", "documentation":"

The metadata to apply to the Fargate profile to assist with categorization and organization. Each tag consists of a key and an optional value, both of which you define. Fargate profile tags do not propagate to any other resources associated with the Fargate profile, such as the pods that are scheduled with it.

" } } }, "CreateFargateProfileResponse":{ "type":"structure", "members":{ "fargateProfile":{ "shape":"FargateProfile", "documentation":"

The full description of your new Fargate profile.

" } } }, "CreateNodegroupRequest":{ "type":"structure", "required":[ "clusterName", "nodegroupName", "subnets", "nodeRole" ], "members":{ "clusterName":{ "shape":"String", "documentation":"

The name of the cluster to create the node group in.

", "location":"uri", "locationName":"name" }, "nodegroupName":{ "shape":"String", "documentation":"

The unique name to give your node group.

" }, "scalingConfig":{ "shape":"NodegroupScalingConfig", "documentation":"

The scaling configuration details for the Auto Scaling group that is created for your node group.

" }, "diskSize":{ "shape":"BoxedInteger", "documentation":"

The root device disk size (in GiB) for your node group instances. The default disk size is 20 GiB. If you specify launchTemplate, then don't specify diskSize, or the node group deployment will fail. For more information about using launch templates with Amazon EKS, see Launch template support in the Amazon EKS User Guide.

" }, "subnets":{ "shape":"StringList", "documentation":"

The subnets to use for the Auto Scaling group that is created for your node group. These subnets must have the tag key kubernetes.io/cluster/CLUSTER_NAME with a value of shared, where CLUSTER_NAME is replaced with the name of your cluster. If you specify launchTemplate, then don't specify SubnetId in your launch template, or the node group deployment will fail. For more information about using launch templates with Amazon EKS, see Launch template support in the Amazon EKS User Guide.

" }, "instanceTypes":{ "shape":"StringList", "documentation":"

Specify the instance types for a node group. If you specify a GPU instance type, be sure to specify AL2_x86_64_GPU with the amiType parameter. If you specify launchTemplate, then you can specify zero or one instance type in your launch template or you can specify 0-20 instance types for instanceTypes. If however, you specify an instance type in your launch template and specify any instanceTypes, the node group deployment will fail. If you don't specify an instance type in a launch template or for instanceTypes, then t3.medium is used, by default. If you specify Spot for capacityType, then we recommend specifying multiple values for instanceTypes. For more information, see Managed node group capacity types and Launch template support in the Amazon EKS User Guide.

" }, "amiType":{ "shape":"AMITypes", "documentation":"

The AMI type for your node group. GPU instance types should use the AL2_x86_64_GPU AMI type. Non-GPU instances should use the AL2_x86_64 AMI type. Arm instances should use the AL2_ARM_64 AMI type. All types use the Amazon EKS optimized Amazon Linux 2 AMI. If you specify launchTemplate, and your launch template uses a custom AMI, then don't specify amiType, or the node group deployment will fail. For more information about using launch templates with Amazon EKS, see Launch template support in the Amazon EKS User Guide.

" }, "remoteAccess":{ "shape":"RemoteAccessConfig", "documentation":"

The remote access (SSH) configuration to use with your node group. If you specify launchTemplate, then don't specify remoteAccess, or the node group deployment will fail. For more information about using launch templates with Amazon EKS, see Launch template support in the Amazon EKS User Guide.

" }, "nodeRole":{ "shape":"String", "documentation":"

The Amazon Resource Name (ARN) of the IAM role to associate with your node group. The Amazon EKS worker node kubelet daemon makes calls to AWS APIs on your behalf. Nodes receive permissions for these API calls through an IAM instance profile and associated policies. Before you can launch nodes and register them into a cluster, you must create an IAM role for those nodes to use when they are launched. For more information, see Amazon EKS node IAM role in the Amazon EKS User Guide . If you specify launchTemplate, then don't specify IamInstanceProfile in your launch template, or the node group deployment will fail. For more information about using launch templates with Amazon EKS, see Launch template support in the Amazon EKS User Guide.

" }, "labels":{ "shape":"labelsMap", "documentation":"

The Kubernetes labels to be applied to the nodes in the node group when they are created.

" }, "tags":{ "shape":"TagMap", "documentation":"

The metadata to apply 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.

" }, "clientRequestToken":{ "shape":"String", "documentation":"

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

", "idempotencyToken":true }, "launchTemplate":{ "shape":"LaunchTemplateSpecification", "documentation":"

An object representing a node group's launch template specification. If specified, then do not specify instanceTypes, diskSize, or remoteAccess and make sure that the launch template meets the requirements in launchTemplateSpecification.

" }, "capacityType":{ "shape":"CapacityTypes", "documentation":"

The capacity type for your node group.

" }, "version":{ "shape":"String", "documentation":"

The Kubernetes version to use for your managed nodes. By default, the Kubernetes version of the cluster is used, and this is the only accepted specified value. If you specify launchTemplate, and your launch template uses a custom AMI, then don't specify version, or the node group deployment will fail. For more information about using launch templates with Amazon EKS, see Launch template support in the Amazon EKS User Guide.

" }, "releaseVersion":{ "shape":"String", "documentation":"

The AMI version of the Amazon EKS optimized AMI to use with your node group. By default, the latest available AMI version for the node group's current Kubernetes version is used. For more information, see Amazon EKS optimized Amazon Linux 2 AMI versions in the Amazon EKS User Guide. If you specify launchTemplate, and your launch template uses a custom AMI, then don't specify releaseVersion, or the node group deployment will fail. For more information about using launch templates with Amazon EKS, see Launch template support in the Amazon EKS User Guide.

" } } }, "CreateNodegroupResponse":{ "type":"structure", "members":{ "nodegroup":{ "shape":"Nodegroup", "documentation":"

The full description of your new node group.

" } } }, "DeleteAddonRequest":{ "type":"structure", "required":[ "clusterName", "addonName" ], "members":{ "clusterName":{ "shape":"ClusterName", "documentation":"

The name of the cluster to delete the add-on from.

", "location":"uri", "locationName":"name" }, "addonName":{ "shape":"String", "documentation":"

The name of the add-on. The name must match one of the names returned by ListAddons .

", "location":"uri", "locationName":"addonName" } } }, "DeleteAddonResponse":{ "type":"structure", "members":{ "addon":{"shape":"Addon"} } }, "DeleteClusterRequest":{ "type":"structure", "required":["name"], "members":{ "name":{ "shape":"String", "documentation":"

The name of the cluster to delete.

", "location":"uri", "locationName":"name" } } }, "DeleteClusterResponse":{ "type":"structure", "members":{ "cluster":{ "shape":"Cluster", "documentation":"

The full description of the cluster to delete.

" } } }, "DeleteFargateProfileRequest":{ "type":"structure", "required":[ "clusterName", "fargateProfileName" ], "members":{ "clusterName":{ "shape":"String", "documentation":"

The name of the Amazon EKS cluster associated with the Fargate profile to delete.

", "location":"uri", "locationName":"name" }, "fargateProfileName":{ "shape":"String", "documentation":"

The name of the Fargate profile to delete.

", "location":"uri", "locationName":"fargateProfileName" } } }, "DeleteFargateProfileResponse":{ "type":"structure", "members":{ "fargateProfile":{ "shape":"FargateProfile", "documentation":"

The deleted Fargate profile.

" } } }, "DeleteNodegroupRequest":{ "type":"structure", "required":[ "clusterName", "nodegroupName" ], "members":{ "clusterName":{ "shape":"String", "documentation":"

The name of the Amazon EKS cluster that is associated with your node group.

", "location":"uri", "locationName":"name" }, "nodegroupName":{ "shape":"String", "documentation":"

The name of the node group to delete.

", "location":"uri", "locationName":"nodegroupName" } } }, "DeleteNodegroupResponse":{ "type":"structure", "members":{ "nodegroup":{ "shape":"Nodegroup", "documentation":"

The full description of your deleted node group.

" } } }, "DescribeAddonRequest":{ "type":"structure", "required":[ "clusterName", "addonName" ], "members":{ "clusterName":{ "shape":"ClusterName", "documentation":"

The name of the cluster.

", "location":"uri", "locationName":"name" }, "addonName":{ "shape":"String", "documentation":"

The name of the add-on. The name must match one of the names returned by ListAddons .

", "location":"uri", "locationName":"addonName" } } }, "DescribeAddonResponse":{ "type":"structure", "members":{ "addon":{"shape":"Addon"} } }, "DescribeAddonVersionsRequest":{ "type":"structure", "members":{ "kubernetesVersion":{ "shape":"String", "documentation":"

The Kubernetes versions that the add-on can be used with.

", "location":"querystring", "locationName":"kubernetesVersion" }, "maxResults":{ "shape":"DescribeAddonVersionsRequestMaxResults", "documentation":"

The maximum number of results to return.

", "location":"querystring", "locationName":"maxResults" }, "nextToken":{ "shape":"String", "documentation":"

The nextToken value returned from a previous paginated DescribeAddonVersionsRequest where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value.

This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes.

", "location":"querystring", "locationName":"nextToken" }, "addonName":{ "shape":"String", "documentation":"

The name of the add-on. The name must match one of the names returned by ListAddons .

", "location":"querystring", "locationName":"addonName" } } }, "DescribeAddonVersionsRequestMaxResults":{ "type":"integer", "box":true, "max":100, "min":1 }, "DescribeAddonVersionsResponse":{ "type":"structure", "members":{ "addons":{ "shape":"Addons", "documentation":"

The list of available versions with Kubernetes version compatibility.

" }, "nextToken":{ "shape":"String", "documentation":"

The nextToken value returned from a previous paginated DescribeAddonVersionsResponse where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value.

This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes.

" } } }, "DescribeClusterRequest":{ "type":"structure", "required":["name"], "members":{ "name":{ "shape":"String", "documentation":"

The name of the cluster to describe.

", "location":"uri", "locationName":"name" } } }, "DescribeClusterResponse":{ "type":"structure", "members":{ "cluster":{ "shape":"Cluster", "documentation":"

The full description of your specified cluster.

" } } }, "DescribeFargateProfileRequest":{ "type":"structure", "required":[ "clusterName", "fargateProfileName" ], "members":{ "clusterName":{ "shape":"String", "documentation":"

The name of the Amazon EKS cluster associated with the Fargate profile.

", "location":"uri", "locationName":"name" }, "fargateProfileName":{ "shape":"String", "documentation":"

The name of the Fargate profile to describe.

", "location":"uri", "locationName":"fargateProfileName" } } }, "DescribeFargateProfileResponse":{ "type":"structure", "members":{ "fargateProfile":{ "shape":"FargateProfile", "documentation":"

The full description of your Fargate profile.

" } } }, "DescribeIdentityProviderConfigRequest":{ "type":"structure", "required":[ "clusterName", "identityProviderConfig" ], "members":{ "clusterName":{ "shape":"String", "documentation":"

The cluster name that the identity provider configuration is associated to.

", "location":"uri", "locationName":"name" }, "identityProviderConfig":{ "shape":"IdentityProviderConfig", "documentation":"

An object that represents an identity provider configuration.

" } } }, "DescribeIdentityProviderConfigResponse":{ "type":"structure", "members":{ "identityProviderConfig":{ "shape":"IdentityProviderConfigResponse", "documentation":"

The object that represents an OpenID Connect (OIDC) identity provider configuration.

" } } }, "DescribeNodegroupRequest":{ "type":"structure", "required":[ "clusterName", "nodegroupName" ], "members":{ "clusterName":{ "shape":"String", "documentation":"

The name of the Amazon EKS cluster associated with the node group.

", "location":"uri", "locationName":"name" }, "nodegroupName":{ "shape":"String", "documentation":"

The name of the node group to describe.

", "location":"uri", "locationName":"nodegroupName" } } }, "DescribeNodegroupResponse":{ "type":"structure", "members":{ "nodegroup":{ "shape":"Nodegroup", "documentation":"

The full description of your node group.

" } } }, "DescribeUpdateRequest":{ "type":"structure", "required":[ "name", "updateId" ], "members":{ "name":{ "shape":"String", "documentation":"

The name of the Amazon EKS cluster associated with the update.

", "location":"uri", "locationName":"name" }, "updateId":{ "shape":"String", "documentation":"

The ID of the update to describe.

", "location":"uri", "locationName":"updateId" }, "nodegroupName":{ "shape":"String", "documentation":"

The name of the Amazon EKS node group associated with the update.

", "location":"querystring", "locationName":"nodegroupName" }, "addonName":{ "shape":"String", "documentation":"

The name of the add-on. The name must match one of the names returned by ListAddons .

", "location":"querystring", "locationName":"addonName" } } }, "DescribeUpdateResponse":{ "type":"structure", "members":{ "update":{ "shape":"Update", "documentation":"

The full description of the specified update.

" } } }, "DisassociateIdentityProviderConfigRequest":{ "type":"structure", "required":[ "clusterName", "identityProviderConfig" ], "members":{ "clusterName":{ "shape":"String", "documentation":"

The name of the cluster to disassociate an identity provider from.

", "location":"uri", "locationName":"name" }, "identityProviderConfig":{ "shape":"IdentityProviderConfig", "documentation":"

An object that represents an identity provider configuration.

" }, "clientRequestToken":{ "shape":"String", "documentation":"

A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

", "idempotencyToken":true } } }, "DisassociateIdentityProviderConfigResponse":{ "type":"structure", "members":{ "update":{"shape":"Update"} } }, "EncryptionConfig":{ "type":"structure", "members":{ "resources":{ "shape":"StringList", "documentation":"

Specifies the resources to be encrypted. The only supported value is \"secrets\".

" }, "provider":{ "shape":"Provider", "documentation":"

AWS Key Management Service (AWS KMS) customer master key (CMK). Either the ARN or the alias can be used.

" } }, "documentation":"

The encryption configuration for the cluster.

" }, "EncryptionConfigList":{ "type":"list", "member":{"shape":"EncryptionConfig"}, "max":1 }, "ErrorCode":{ "type":"string", "enum":[ "SubnetNotFound", "SecurityGroupNotFound", "EniLimitReached", "IpNotAvailable", "AccessDenied", "OperationNotPermitted", "VpcIdNotFound", "Unknown", "NodeCreationFailure", "PodEvictionFailure", "InsufficientFreeAddresses", "ClusterUnreachable", "InsufficientNumberOfReplicas", "ConfigurationConflict", "AdmissionRequestDenied" ] }, "ErrorDetail":{ "type":"structure", "members":{ "errorCode":{ "shape":"ErrorCode", "documentation":"

A brief description of the error.

" }, "errorMessage":{ "shape":"String", "documentation":"

A more complete description of the error.

" }, "resourceIds":{ "shape":"StringList", "documentation":"

An optional field that contains the resource IDs associated with the error.

" } }, "documentation":"

An object representing an error when an asynchronous operation fails.

" }, "ErrorDetails":{ "type":"list", "member":{"shape":"ErrorDetail"} }, "FargateProfile":{ "type":"structure", "members":{ "fargateProfileName":{ "shape":"String", "documentation":"

The name of the Fargate profile.

" }, "fargateProfileArn":{ "shape":"String", "documentation":"

The full Amazon Resource Name (ARN) of the Fargate profile.

" }, "clusterName":{ "shape":"String", "documentation":"

The name of the Amazon EKS cluster that the Fargate profile belongs to.

" }, "createdAt":{ "shape":"Timestamp", "documentation":"

The Unix epoch timestamp in seconds for when the Fargate profile was created.

" }, "podExecutionRoleArn":{ "shape":"String", "documentation":"

The Amazon Resource Name (ARN) of the pod execution role to use for pods that match the selectors in the Fargate profile. For more information, see Pod Execution Role in the Amazon EKS User Guide.

" }, "subnets":{ "shape":"StringList", "documentation":"

The IDs of subnets to launch pods into.

" }, "selectors":{ "shape":"FargateProfileSelectors", "documentation":"

The selectors to match for pods to use this Fargate profile.

" }, "status":{ "shape":"FargateProfileStatus", "documentation":"

The current status of the Fargate profile.

" }, "tags":{ "shape":"TagMap", "documentation":"

The metadata applied to the Fargate profile to assist with categorization and organization. Each tag consists of a key and an optional value, both of which you define. Fargate profile tags do not propagate to any other resources associated with the Fargate profile, such as the pods that are scheduled with it.

" } }, "documentation":"

An object representing an AWS Fargate profile.

" }, "FargateProfileLabel":{ "type":"map", "key":{"shape":"String"}, "value":{"shape":"String"} }, "FargateProfileSelector":{ "type":"structure", "members":{ "namespace":{ "shape":"String", "documentation":"

The Kubernetes namespace that the selector should match.

" }, "labels":{ "shape":"FargateProfileLabel", "documentation":"

The Kubernetes labels that the selector should match. A pod must contain all of the labels that are specified in the selector for it to be considered a match.

" } }, "documentation":"

An object representing an AWS Fargate profile selector.

" }, "FargateProfileSelectors":{ "type":"list", "member":{"shape":"FargateProfileSelector"} }, "FargateProfileStatus":{ "type":"string", "enum":[ "CREATING", "ACTIVE", "DELETING", "CREATE_FAILED", "DELETE_FAILED" ] }, "FargateProfilesRequestMaxResults":{ "type":"integer", "box":true, "max":100, "min":1 }, "Identity":{ "type":"structure", "members":{ "oidc":{ "shape":"OIDC", "documentation":"

An object representing the OpenID Connect identity provider information.

" } }, "documentation":"

An object representing an identity provider.

" }, "IdentityProviderConfig":{ "type":"structure", "required":[ "type", "name" ], "members":{ "type":{ "shape":"String", "documentation":"

The type of the identity provider configuration.

" }, "name":{ "shape":"String", "documentation":"

The name of the identity provider configuration.

" } }, "documentation":"

An object representing an identity provider configuration.

" }, "IdentityProviderConfigResponse":{ "type":"structure", "members":{ "oidc":{ "shape":"OidcIdentityProviderConfig", "documentation":"

An object that represents an OpenID Connect (OIDC) identity provider configuration.

" } }, "documentation":"

An object that represents an identity configuration.

" }, "IdentityProviderConfigs":{ "type":"list", "member":{"shape":"IdentityProviderConfig"} }, "InvalidParameterException":{ "type":"structure", "members":{ "clusterName":{ "shape":"String", "documentation":"

The Amazon EKS cluster associated with the exception.

" }, "nodegroupName":{ "shape":"String", "documentation":"

The Amazon EKS managed node group associated with the exception.

" }, "fargateProfileName":{ "shape":"String", "documentation":"

The Fargate profile associated with the exception.

" }, "addonName":{"shape":"String"}, "message":{"shape":"String"} }, "documentation":"

The specified parameter is invalid. Review the available parameters for the API request.

", "error":{"httpStatusCode":400}, "exception":true }, "InvalidRequestException":{ "type":"structure", "members":{ "clusterName":{ "shape":"String", "documentation":"

The Amazon EKS cluster associated with the exception.

" }, "nodegroupName":{ "shape":"String", "documentation":"

The Amazon EKS managed node group associated with the exception.

" }, "addonName":{"shape":"String"}, "message":{"shape":"String"} }, "documentation":"

The request is invalid given the state of the cluster. Check the state of the cluster and the associated operations.

", "error":{"httpStatusCode":400}, "exception":true }, "Issue":{ "type":"structure", "members":{ "code":{ "shape":"NodegroupIssueCode", "documentation":"

A brief description of the error.

" }, "message":{ "shape":"String", "documentation":"

The error message associated with the issue.

" }, "resourceIds":{ "shape":"StringList", "documentation":"

The AWS resources that are afflicted by this issue.

" } }, "documentation":"

An object representing an issue with an Amazon EKS resource.

" }, "IssueList":{ "type":"list", "member":{"shape":"Issue"} }, "KubernetesNetworkConfigRequest":{ "type":"structure", "members":{ "serviceIpv4Cidr":{ "shape":"String", "documentation":"

The CIDR block to assign Kubernetes service IP addresses from. If you don't specify a block, Kubernetes assigns addresses from either the 10.100.0.0/16 or 172.20.0.0/16 CIDR blocks. We recommend that you specify a block that does not overlap with resources in other networks that are peered or connected to your VPC. The block must meet the following requirements:

You can only specify a custom CIDR block when you create a cluster and can't change this value once the cluster is created.

" } }, "documentation":"

The Kubernetes network configuration for the cluster.

" }, "KubernetesNetworkConfigResponse":{ "type":"structure", "members":{ "serviceIpv4Cidr":{ "shape":"String", "documentation":"

The CIDR block that Kubernetes service IP addresses are assigned from. If you didn't specify a CIDR block when you created the cluster, then Kubernetes assigns addresses from either the 10.100.0.0/16 or 172.20.0.0/16 CIDR blocks. If this was specified, then it was specified when the cluster was created and it cannot be changed.

" } }, "documentation":"

The Kubernetes network configuration for the cluster.

" }, "LaunchTemplateSpecification":{ "type":"structure", "members":{ "name":{ "shape":"String", "documentation":"

The name of the launch template.

" }, "version":{ "shape":"String", "documentation":"

The version of the launch template to use. If no version is specified, then the template's default version is used.

" }, "id":{ "shape":"String", "documentation":"

The ID of the launch template.

" } }, "documentation":"

An object representing a node group launch template specification. The launch template cannot include SubnetId , IamInstanceProfile , RequestSpotInstances , HibernationOptions , or TerminateInstances , or the node group deployment or update will fail. For more information about launch templates, see CreateLaunchTemplate in the Amazon EC2 API Reference. For more information about using launch templates with Amazon EKS, see Launch template support in the Amazon EKS User Guide.

Specify either name or id, but not both.

" }, "ListAddonsRequest":{ "type":"structure", "required":["clusterName"], "members":{ "clusterName":{ "shape":"ClusterName", "documentation":"

The name of the cluster.

", "location":"uri", "locationName":"name" }, "maxResults":{ "shape":"ListAddonsRequestMaxResults", "documentation":"

The maximum number of add-on results returned by ListAddonsRequest in paginated output. When you use this parameter, ListAddonsRequest returns only maxResults results in a single page along with a nextToken response element. You can see the remaining results of the initial request by sending another ListAddonsRequest request with the returned nextToken value. This value can be between 1 and 100. If you don't use this parameter, ListAddonsRequest returns up to 100 results and a nextToken value, if applicable.

", "location":"querystring", "locationName":"maxResults" }, "nextToken":{ "shape":"String", "documentation":"

The nextToken value returned from a previous paginated ListAddonsRequest where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value.

This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes.

", "location":"querystring", "locationName":"nextToken" } } }, "ListAddonsRequestMaxResults":{ "type":"integer", "box":true, "max":100, "min":1 }, "ListAddonsResponse":{ "type":"structure", "members":{ "addons":{ "shape":"StringList", "documentation":"

A list of available add-ons.

" }, "nextToken":{ "shape":"String", "documentation":"

The nextToken value returned from a previous paginated ListAddonsResponse where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value.

This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes.

" } } }, "ListClustersRequest":{ "type":"structure", "members":{ "maxResults":{ "shape":"ListClustersRequestMaxResults", "documentation":"

The maximum number of cluster results returned by ListClusters in paginated output. When you use this parameter, ListClusters returns only maxResults results in a single page along with a nextToken response element. You can see the remaining results of the initial request by sending another ListClusters request with the returned nextToken value. This value can be between 1 and 100. If you don't use this parameter, ListClusters returns up to 100 results and a nextToken value if applicable.

", "location":"querystring", "locationName":"maxResults" }, "nextToken":{ "shape":"String", "documentation":"

The nextToken value returned from a previous paginated ListClusters request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value.

This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes.

", "location":"querystring", "locationName":"nextToken" } } }, "ListClustersRequestMaxResults":{ "type":"integer", "box":true, "max":100, "min":1 }, "ListClustersResponse":{ "type":"structure", "members":{ "clusters":{ "shape":"StringList", "documentation":"

A list of all of the clusters for your account in the specified Region.

" }, "nextToken":{ "shape":"String", "documentation":"

The nextToken value to include in a future ListClusters request. When the results of a ListClusters request exceed maxResults, you can use this value to retrieve the next page of results. This value is null when there are no more results to return.

" } } }, "ListFargateProfilesRequest":{ "type":"structure", "required":["clusterName"], "members":{ "clusterName":{ "shape":"String", "documentation":"

The name of the Amazon EKS cluster that you would like to listFargate profiles in.

", "location":"uri", "locationName":"name" }, "maxResults":{ "shape":"FargateProfilesRequestMaxResults", "documentation":"

The maximum number of Fargate profile results returned by ListFargateProfiles in paginated output. When you use this parameter, ListFargateProfiles returns only maxResults results in a single page along with a nextToken response element. You can see the remaining results of the initial request by sending another ListFargateProfiles request with the returned nextToken value. This value can be between 1 and 100. If you don't use this parameter, ListFargateProfiles returns up to 100 results and a nextToken value if applicable.

", "location":"querystring", "locationName":"maxResults" }, "nextToken":{ "shape":"String", "documentation":"

The nextToken value returned from a previous paginated ListFargateProfiles request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value.

", "location":"querystring", "locationName":"nextToken" } } }, "ListFargateProfilesResponse":{ "type":"structure", "members":{ "fargateProfileNames":{ "shape":"StringList", "documentation":"

A list of all of the Fargate profiles associated with the specified cluster.

" }, "nextToken":{ "shape":"String", "documentation":"

The nextToken value to include in a future ListFargateProfiles request. When the results of a ListFargateProfiles request exceed maxResults, you can use this value to retrieve the next page of results. This value is null when there are no more results to return.

" } } }, "ListIdentityProviderConfigsRequest":{ "type":"structure", "required":["clusterName"], "members":{ "clusterName":{ "shape":"String", "documentation":"

The cluster name that you want to list identity provider configurations for.

", "location":"uri", "locationName":"name" }, "maxResults":{ "shape":"ListIdentityProviderConfigsRequestMaxResults", "documentation":"

The maximum number of identity provider configurations returned by ListIdentityProviderConfigs in paginated output. When you use this parameter, ListIdentityProviderConfigs returns only maxResults results in a single page along with a nextToken response element. You can see the remaining results of the initial request by sending another ListIdentityProviderConfigs request with the returned nextToken value. This value can be between 1 and 100. If you don't use this parameter, ListIdentityProviderConfigs returns up to 100 results and a nextToken value, if applicable.

", "location":"querystring", "locationName":"maxResults" }, "nextToken":{ "shape":"String", "documentation":"

The nextToken value returned from a previous paginated IdentityProviderConfigsRequest where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value.

", "location":"querystring", "locationName":"nextToken" } } }, "ListIdentityProviderConfigsRequestMaxResults":{ "type":"integer", "box":true, "max":100, "min":1 }, "ListIdentityProviderConfigsResponse":{ "type":"structure", "members":{ "identityProviderConfigs":{ "shape":"IdentityProviderConfigs", "documentation":"

The identity provider configurations for the cluster.

" }, "nextToken":{ "shape":"String", "documentation":"

The nextToken value returned from a previous paginated ListIdentityProviderConfigsResponse where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value.

" } } }, "ListNodegroupsRequest":{ "type":"structure", "required":["clusterName"], "members":{ "clusterName":{ "shape":"String", "documentation":"

The name of the Amazon EKS cluster that you would like to list node groups in.

", "location":"uri", "locationName":"name" }, "maxResults":{ "shape":"ListNodegroupsRequestMaxResults", "documentation":"

The maximum number of node group results returned by ListNodegroups in paginated output. When you use this parameter, ListNodegroups returns only maxResults results in a single page along with a nextToken response element. You can see the remaining results of the initial request by sending another ListNodegroups request with the returned nextToken value. This value can be between 1 and 100. If you don't use this parameter, ListNodegroups returns up to 100 results and a nextToken value if applicable.

", "location":"querystring", "locationName":"maxResults" }, "nextToken":{ "shape":"String", "documentation":"

The nextToken value returned from a previous paginated ListNodegroups request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value.

", "location":"querystring", "locationName":"nextToken" } } }, "ListNodegroupsRequestMaxResults":{ "type":"integer", "box":true, "max":100, "min":1 }, "ListNodegroupsResponse":{ "type":"structure", "members":{ "nodegroups":{ "shape":"StringList", "documentation":"

A list of all of the node groups associated with the specified cluster.

" }, "nextToken":{ "shape":"String", "documentation":"

The nextToken value to include in a future ListNodegroups request. When the results of a ListNodegroups request exceed maxResults, you can use this value to retrieve the next page of results. This value is null when there are no more results to return.

" } } }, "ListTagsForResourceRequest":{ "type":"structure", "required":["resourceArn"], "members":{ "resourceArn":{ "shape":"String", "documentation":"

The Amazon Resource Name (ARN) that identifies the resource for which to list the tags. Currently, the supported resources are Amazon EKS clusters and managed node groups.

", "location":"uri", "locationName":"resourceArn" } } }, "ListTagsForResourceResponse":{ "type":"structure", "members":{ "tags":{ "shape":"TagMap", "documentation":"

The tags for the resource.

" } } }, "ListUpdatesRequest":{ "type":"structure", "required":["name"], "members":{ "name":{ "shape":"String", "documentation":"

The name of the Amazon EKS cluster to list updates for.

", "location":"uri", "locationName":"name" }, "nodegroupName":{ "shape":"String", "documentation":"

The name of the Amazon EKS managed node group to list updates for.

", "location":"querystring", "locationName":"nodegroupName" }, "addonName":{ "shape":"String", "documentation":"

The names of the installed add-ons that have available updates.

", "location":"querystring", "locationName":"addonName" }, "nextToken":{ "shape":"String", "documentation":"

The nextToken value returned from a previous paginated ListUpdates request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value.

", "location":"querystring", "locationName":"nextToken" }, "maxResults":{ "shape":"ListUpdatesRequestMaxResults", "documentation":"

The maximum number of update results returned by ListUpdates in paginated output. When you use this parameter, ListUpdates returns only maxResults results in a single page along with a nextToken response element. You can see the remaining results of the initial request by sending another ListUpdates request with the returned nextToken value. This value can be between 1 and 100. If you don't use this parameter, ListUpdates returns up to 100 results and a nextToken value if applicable.

", "location":"querystring", "locationName":"maxResults" } } }, "ListUpdatesRequestMaxResults":{ "type":"integer", "box":true, "max":100, "min":1 }, "ListUpdatesResponse":{ "type":"structure", "members":{ "updateIds":{ "shape":"StringList", "documentation":"

A list of all the updates for the specified cluster and Region.

" }, "nextToken":{ "shape":"String", "documentation":"

The nextToken value to include in a future ListUpdates request. When the results of a ListUpdates request exceed maxResults, you can use this value to retrieve the next page of results. This value is null when there are no more results to return.

" } } }, "LogSetup":{ "type":"structure", "members":{ "types":{ "shape":"LogTypes", "documentation":"

The available cluster control plane log types.

" }, "enabled":{ "shape":"BoxedBoolean", "documentation":"

If a log type is enabled, that log type exports its control plane logs to CloudWatch Logs. If a log type isn't enabled, that log type doesn't export its control plane logs. Each individual log type can be enabled or disabled independently.

" } }, "documentation":"

An object representing the enabled or disabled Kubernetes control plane logs for your cluster.

" }, "LogSetups":{ "type":"list", "member":{"shape":"LogSetup"} }, "LogType":{ "type":"string", "enum":[ "api", "audit", "authenticator", "controllerManager", "scheduler" ] }, "LogTypes":{ "type":"list", "member":{"shape":"LogType"} }, "Logging":{ "type":"structure", "members":{ "clusterLogging":{ "shape":"LogSetups", "documentation":"

The cluster control plane logging configuration for your cluster.

" } }, "documentation":"

An object representing the logging configuration for resources in your cluster.

" }, "Nodegroup":{ "type":"structure", "members":{ "nodegroupName":{ "shape":"String", "documentation":"

The name associated with an Amazon EKS managed node group.

" }, "nodegroupArn":{ "shape":"String", "documentation":"

The Amazon Resource Name (ARN) associated with the managed node group.

" }, "clusterName":{ "shape":"String", "documentation":"

The name of the cluster that the managed node group resides in.

" }, "version":{ "shape":"String", "documentation":"

The Kubernetes version of the managed node group.

" }, "releaseVersion":{ "shape":"String", "documentation":"

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.

" }, "createdAt":{ "shape":"Timestamp", "documentation":"

The Unix epoch timestamp in seconds for when the managed node group was created.

" }, "modifiedAt":{ "shape":"Timestamp", "documentation":"

The Unix epoch timestamp in seconds for when the managed node group was last modified.

" }, "status":{ "shape":"NodegroupStatus", "documentation":"

The current status of the managed node group.

" }, "capacityType":{ "shape":"CapacityTypes", "documentation":"

The capacity type of your managed node group.

" }, "scalingConfig":{ "shape":"NodegroupScalingConfig", "documentation":"

The scaling configuration details for the Auto Scaling group that is associated with your node group.

" }, "instanceTypes":{ "shape":"StringList", "documentation":"

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 this is null.

" }, "subnets":{ "shape":"StringList", "documentation":"

The subnets that were specified for the Auto Scaling group that is associated with your node group.

" }, "remoteAccess":{ "shape":"RemoteAccessConfig", "documentation":"

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 this is null.

" }, "amiType":{ "shape":"AMITypes", "documentation":"

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.

" }, "nodeRole":{ "shape":"String", "documentation":"

The IAM role associated with your node group. The Amazon EKS node kubelet daemon makes calls to AWS APIs on your behalf. Nodes receive permissions for these API calls through an IAM instance profile and associated policies.

" }, "labels":{ "shape":"labelsMap", "documentation":"

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.

" }, "resources":{ "shape":"NodegroupResources", "documentation":"

The resources associated with the node group, such as Auto Scaling groups and security groups for remote access.

" }, "diskSize":{ "shape":"BoxedInteger", "documentation":"

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 this is null.

" }, "health":{ "shape":"NodegroupHealth", "documentation":"

The health status of the node group. If there are issues with your node group's health, they are listed here.

" }, "launchTemplate":{ "shape":"LaunchTemplateSpecification", "documentation":"

If a launch template was used to create the node group, then this is the launch template that was used.

" }, "tags":{ "shape":"TagMap", "documentation":"

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.

" } }, "documentation":"

An object representing an Amazon EKS managed node group.

" }, "NodegroupHealth":{ "type":"structure", "members":{ "issues":{ "shape":"IssueList", "documentation":"

Any issues that are associated with the node group.

" } }, "documentation":"

An object representing the health status of the node group.

" }, "NodegroupIssueCode":{ "type":"string", "enum":[ "AutoScalingGroupNotFound", "AutoScalingGroupInvalidConfiguration", "Ec2SecurityGroupNotFound", "Ec2SecurityGroupDeletionFailure", "Ec2LaunchTemplateNotFound", "Ec2LaunchTemplateVersionMismatch", "Ec2SubnetNotFound", "Ec2SubnetInvalidConfiguration", "IamInstanceProfileNotFound", "IamLimitExceeded", "IamNodeRoleNotFound", "NodeCreationFailure", "AsgInstanceLaunchFailures", "InstanceLimitExceeded", "InsufficientFreeAddresses", "AccessDenied", "InternalFailure", "ClusterUnreachable" ] }, "NodegroupResources":{ "type":"structure", "members":{ "autoScalingGroups":{ "shape":"AutoScalingGroupList", "documentation":"

The Auto Scaling groups associated with the node group.

" }, "remoteAccessSecurityGroup":{ "shape":"String", "documentation":"

The remote access security group associated with the node group. This security group controls SSH access to the nodes.

" } }, "documentation":"

An object representing the resources associated with the node group, such as Auto Scaling groups and security groups for remote access.

" }, "NodegroupScalingConfig":{ "type":"structure", "members":{ "minSize":{ "shape":"Capacity", "documentation":"

The minimum number of nodes that the managed node group can scale in to. This number must be greater than zero.

" }, "maxSize":{ "shape":"Capacity", "documentation":"

The maximum number of nodes that the managed node group can scale out to. For information about the maximum number that you can specify, see Amazon EKS service quotas in the Amazon EKS User Guide.

" }, "desiredSize":{ "shape":"Capacity", "documentation":"

The current number of nodes that the managed node group should maintain.

" } }, "documentation":"

An object representing the scaling configuration details for the Auto Scaling group that is associated with your node group. If you specify a value for any property, then you must specify values for all of the properties.

" }, "NodegroupStatus":{ "type":"string", "enum":[ "CREATING", "ACTIVE", "UPDATING", "DELETING", "CREATE_FAILED", "DELETE_FAILED", "DEGRADED" ] }, "NotFoundException":{ "type":"structure", "members":{ "message":{"shape":"String"} }, "documentation":"

A service resource associated with the request could not be found. Clients should not retry such requests.

", "error":{"httpStatusCode":404}, "exception":true }, "OIDC":{ "type":"structure", "members":{ "issuer":{ "shape":"String", "documentation":"

The issuer URL for the OIDC identity provider.

" } }, "documentation":"

An object representing the OpenID Connect (OIDC) identity provider information for the cluster.

" }, "OidcIdentityProviderConfig":{ "type":"structure", "members":{ "identityProviderConfigName":{ "shape":"String", "documentation":"

The name of the configuration.

" }, "identityProviderConfigArn":{ "shape":"String", "documentation":"

The ARN of the configuration.

" }, "clusterName":{ "shape":"String", "documentation":"

The cluster that the configuration is associated to.

" }, "issuerUrl":{ "shape":"String", "documentation":"

The URL of the OIDC identity provider that allows the API server to discover public signing keys for verifying tokens.

" }, "clientId":{ "shape":"String", "documentation":"

This is also known as audience. The ID of the client application that makes authentication requests to the OIDC identity provider.

" }, "usernameClaim":{ "shape":"String", "documentation":"

The JSON Web token (JWT) claim that is used as the username.

" }, "usernamePrefix":{ "shape":"String", "documentation":"

The prefix that is prepended to username claims to prevent clashes with existing names. The prefix can't contain system:

" }, "groupsClaim":{ "shape":"String", "documentation":"

The JSON web token (JWT) claim that the provider uses to return your groups.

" }, "groupsPrefix":{ "shape":"String", "documentation":"

The prefix that is prepended to group claims to prevent clashes with existing names (such as system: groups). For example, the value oidc: creates group names like oidc:engineering and oidc:infra. The prefix can't contain system:

" }, "requiredClaims":{ "shape":"requiredClaimsMap", "documentation":"

The key-value pairs that describe required claims in the identity token. If set, each claim is verified to be present in the token with a matching value.

" }, "tags":{ "shape":"TagMap", "documentation":"

The metadata to apply to the provider configuration to assist with categorization and organization. Each tag consists of a key and an optional value, both of which you defined.

" }, "status":{ "shape":"configStatus", "documentation":"

The status of the OIDC identity provider.

" } }, "documentation":"

An object that represents the configuration for an OpenID Connect (OIDC) identity provider.

" }, "OidcIdentityProviderConfigRequest":{ "type":"structure", "required":[ "identityProviderConfigName", "issuerUrl", "clientId" ], "members":{ "identityProviderConfigName":{ "shape":"String", "documentation":"

The name of the OIDC provider configuration.

" }, "issuerUrl":{ "shape":"String", "documentation":"

The URL of the OpenID identity provider that allows the API server to discover public signing keys for verifying tokens. The URL must begin with https:// and should correspond to the iss claim in the provider's OIDC ID tokens. Per the OIDC standard, path components are allowed but query parameters are not. Typically the URL consists of only a hostname, like https://server.example.org or https://example.com. This URL should point to the level below .well-known/openid-configuration and must be publicly accessible over the internet.

" }, "clientId":{ "shape":"String", "documentation":"

This is also known as audience. The ID for the client application that makes authentication requests to the OpenID identity provider.

" }, "usernameClaim":{ "shape":"String", "documentation":"

The JSON Web Token (JWT) claim to use as the username. The default is sub, which is expected to be a unique identifier of the end user. You can choose other claims, such as email or name, depending on the OpenID identity provider. Claims other than email are prefixed with the issuer URL to prevent naming clashes with other plug-ins.

" }, "usernamePrefix":{ "shape":"String", "documentation":"

The prefix that is prepended to username claims to prevent clashes with existing names. If you do not provide this field, and username is a value other than email, the prefix defaults to issuerurl#. You can use the value - to disable all prefixing.

" }, "groupsClaim":{ "shape":"String", "documentation":"

The JWT claim that the provider uses to return your groups.

" }, "groupsPrefix":{ "shape":"String", "documentation":"

The prefix that is prepended to group claims to prevent clashes with existing names (such as system: groups). For example, the value oidc: will create group names like oidc:engineering and oidc:infra.

" }, "requiredClaims":{ "shape":"requiredClaimsMap", "documentation":"

The key value pairs that describe required claims in the identity token. If set, each claim is verified to be present in the token with a matching value. For the maximum number of claims that you can require, see Amazon EKS service quotas in the Amazon EKS User Guide.

" } }, "documentation":"

An object representing an OpenID Connect (OIDC) configuration. Before associating an OIDC identity provider to your cluster, review the considerations in Authenticating users for your cluster from an OpenID Connect identity provider in the Amazon EKS User Guide.

" }, "Provider":{ "type":"structure", "members":{ "keyArn":{ "shape":"String", "documentation":"

Amazon Resource Name (ARN) or alias of the customer master key (CMK). The CMK must be symmetric, created in the same region as the cluster, and if the CMK was created in a different account, the user must have access to the CMK. For more information, see Allowing Users in Other Accounts to Use a CMK in the AWS Key Management Service Developer Guide.

" } }, "documentation":"

Identifies the AWS Key Management Service (AWS KMS) customer master key (CMK) used to encrypt the secrets.

" }, "RemoteAccessConfig":{ "type":"structure", "members":{ "ec2SshKey":{ "shape":"String", "documentation":"

The Amazon EC2 SSH key that provides access for SSH communication with the nodes in the managed node group. For more information, see Amazon EC2 Key Pairs in the Amazon Elastic Compute Cloud User Guide for Linux Instances.

" }, "sourceSecurityGroups":{ "shape":"StringList", "documentation":"

The security groups that are allowed SSH access (port 22) to the nodes. If you specify an Amazon EC2 SSH key but do not specify a source security group when you create a managed node group, then port 22 on the nodes is opened to the internet (0.0.0.0/0). For more information, see Security Groups for Your VPC in the Amazon Virtual Private Cloud User Guide.

" } }, "documentation":"

An object representing the remote access configuration for the managed node group.

" }, "ResolveConflicts":{ "type":"string", "enum":[ "OVERWRITE", "NONE" ] }, "ResourceInUseException":{ "type":"structure", "members":{ "clusterName":{ "shape":"String", "documentation":"

The Amazon EKS cluster associated with the exception.

" }, "nodegroupName":{ "shape":"String", "documentation":"

The Amazon EKS managed node group associated with the exception.

" }, "addonName":{"shape":"String"}, "message":{"shape":"String"} }, "documentation":"

The specified resource is in use.

", "error":{"httpStatusCode":409}, "exception":true }, "ResourceLimitExceededException":{ "type":"structure", "members":{ "clusterName":{ "shape":"String", "documentation":"

The Amazon EKS cluster associated with the exception.

" }, "nodegroupName":{ "shape":"String", "documentation":"

The Amazon EKS managed node group associated with the exception.

" }, "message":{"shape":"String"} }, "documentation":"

You have encountered a service limit on the specified resource.

", "error":{"httpStatusCode":400}, "exception":true }, "ResourceNotFoundException":{ "type":"structure", "members":{ "clusterName":{ "shape":"String", "documentation":"

The Amazon EKS cluster associated with the exception.

" }, "nodegroupName":{ "shape":"String", "documentation":"

The Amazon EKS managed node group associated with the exception.

" }, "fargateProfileName":{ "shape":"String", "documentation":"

The Fargate profile associated with the exception.

" }, "addonName":{"shape":"String"}, "message":{"shape":"String"} }, "documentation":"

The specified resource could not be found. You can view your available clusters with ListClusters. You can view your available managed node groups with ListNodegroups. Amazon EKS clusters and node groups are Region-specific.

", "error":{"httpStatusCode":404}, "exception":true }, "RoleArn":{ "type":"string", "max":255, "min":1 }, "ServerException":{ "type":"structure", "members":{ "clusterName":{ "shape":"String", "documentation":"

The Amazon EKS cluster associated with the exception.

" }, "nodegroupName":{ "shape":"String", "documentation":"

The Amazon EKS managed node group associated with the exception.

" }, "addonName":{"shape":"String"}, "message":{"shape":"String"} }, "documentation":"

These errors are usually caused by a server-side issue.

", "error":{"httpStatusCode":500}, "exception":true, "fault":true }, "ServiceUnavailableException":{ "type":"structure", "members":{ "message":{"shape":"String"} }, "documentation":"

The service is unavailable. Back off and retry the operation.

", "error":{"httpStatusCode":503}, "exception":true, "fault":true }, "String":{"type":"string"}, "StringList":{ "type":"list", "member":{"shape":"String"} }, "TagKey":{ "type":"string", "max":128, "min":1 }, "TagKeyList":{ "type":"list", "member":{"shape":"TagKey"}, "max":50, "min":1 }, "TagMap":{ "type":"map", "key":{"shape":"TagKey"}, "value":{"shape":"TagValue"}, "max":50, "min":1 }, "TagResourceRequest":{ "type":"structure", "required":[ "resourceArn", "tags" ], "members":{ "resourceArn":{ "shape":"String", "documentation":"

The Amazon Resource Name (ARN) of the resource to which to add tags. Currently, the supported resources are Amazon EKS clusters and managed node groups.

", "location":"uri", "locationName":"resourceArn" }, "tags":{ "shape":"TagMap", "documentation":"

The tags to add to the resource. A tag is an array of key-value pairs.

" } } }, "TagResourceResponse":{ "type":"structure", "members":{ } }, "TagValue":{ "type":"string", "max":256 }, "Timestamp":{"type":"timestamp"}, "UnsupportedAvailabilityZoneException":{ "type":"structure", "members":{ "message":{"shape":"String"}, "clusterName":{ "shape":"String", "documentation":"

The Amazon EKS cluster associated with the exception.

" }, "nodegroupName":{ "shape":"String", "documentation":"

The Amazon EKS managed node group associated with the exception.

" }, "validZones":{ "shape":"StringList", "documentation":"

The supported Availability Zones for your account. Choose subnets in these Availability Zones for your cluster.

" } }, "documentation":"

At least one of your specified cluster subnets is in an Availability Zone that does not support Amazon EKS. The exception output specifies the supported Availability Zones for your account, from which you can choose subnets for your cluster.

", "error":{"httpStatusCode":400}, "exception":true }, "UntagResourceRequest":{ "type":"structure", "required":[ "resourceArn", "tagKeys" ], "members":{ "resourceArn":{ "shape":"String", "documentation":"

The Amazon Resource Name (ARN) of the resource from which to delete tags. Currently, the supported resources are Amazon EKS clusters and managed node groups.

", "location":"uri", "locationName":"resourceArn" }, "tagKeys":{ "shape":"TagKeyList", "documentation":"

The keys of the tags to be removed.

", "location":"querystring", "locationName":"tagKeys" } } }, "UntagResourceResponse":{ "type":"structure", "members":{ } }, "Update":{ "type":"structure", "members":{ "id":{ "shape":"String", "documentation":"

A UUID that is used to track the update.

" }, "status":{ "shape":"UpdateStatus", "documentation":"

The current status of the update.

" }, "type":{ "shape":"UpdateType", "documentation":"

The type of the update.

" }, "params":{ "shape":"UpdateParams", "documentation":"

A key-value map that contains the parameters associated with the update.

" }, "createdAt":{ "shape":"Timestamp", "documentation":"

The Unix epoch timestamp in seconds for when the update was created.

" }, "errors":{ "shape":"ErrorDetails", "documentation":"

Any errors associated with a Failed update.

" } }, "documentation":"

An object representing an asynchronous update.

" }, "UpdateAddonRequest":{ "type":"structure", "required":[ "clusterName", "addonName" ], "members":{ "clusterName":{ "shape":"ClusterName", "documentation":"

The name of the cluster.

", "location":"uri", "locationName":"name" }, "addonName":{ "shape":"String", "documentation":"

The name of the add-on. The name must match one of the names returned by ListAddons .

", "location":"uri", "locationName":"addonName" }, "addonVersion":{ "shape":"String", "documentation":"

The version of the add-on. The version must match one of the versions returned by DescribeAddonVersions .

" }, "serviceAccountRoleArn":{ "shape":"RoleArn", "documentation":"

The Amazon Resource Name (ARN) of an existing IAM role to bind to the add-on's service account. The role must be assigned the IAM permissions required by the add-on. If you don't specify an existing IAM role, then the add-on uses the permissions assigned to the node IAM role. For more information, see Amazon EKS node IAM role in the Amazon EKS User Guide.

To specify an existing IAM role, you must have an IAM OpenID Connect (OIDC) provider created for your cluster. For more information, see Enabling IAM roles for service accounts on your cluster in the Amazon EKS User Guide.

" }, "resolveConflicts":{ "shape":"ResolveConflicts", "documentation":"

How to resolve parameter value conflicts when applying the new version of the add-on to the cluster.

" }, "clientRequestToken":{ "shape":"String", "documentation":"

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

", "idempotencyToken":true } } }, "UpdateAddonResponse":{ "type":"structure", "members":{ "update":{"shape":"Update"} } }, "UpdateClusterConfigRequest":{ "type":"structure", "required":["name"], "members":{ "name":{ "shape":"String", "documentation":"

The name of the Amazon EKS cluster to update.

", "location":"uri", "locationName":"name" }, "resourcesVpcConfig":{"shape":"VpcConfigRequest"}, "logging":{ "shape":"Logging", "documentation":"

Enable or disable exporting the Kubernetes control plane logs for your cluster to CloudWatch Logs. By default, cluster control plane logs aren't exported to CloudWatch Logs. For more information, see Amazon EKS Cluster Control Plane Logs in the Amazon EKS User Guide .

CloudWatch Logs ingestion, archive storage, and data scanning rates apply to exported control plane logs. For more information, see Amazon CloudWatch Pricing.

" }, "clientRequestToken":{ "shape":"String", "documentation":"

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

", "idempotencyToken":true } } }, "UpdateClusterConfigResponse":{ "type":"structure", "members":{ "update":{"shape":"Update"} } }, "UpdateClusterVersionRequest":{ "type":"structure", "required":[ "name", "version" ], "members":{ "name":{ "shape":"String", "documentation":"

The name of the Amazon EKS cluster to update.

", "location":"uri", "locationName":"name" }, "version":{ "shape":"String", "documentation":"

The desired Kubernetes version following a successful update.

" }, "clientRequestToken":{ "shape":"String", "documentation":"

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

", "idempotencyToken":true } } }, "UpdateClusterVersionResponse":{ "type":"structure", "members":{ "update":{ "shape":"Update", "documentation":"

The full description of the specified update

" } } }, "UpdateLabelsPayload":{ "type":"structure", "members":{ "addOrUpdateLabels":{ "shape":"labelsMap", "documentation":"

Kubernetes labels to be added or updated.

" }, "removeLabels":{ "shape":"labelsKeyList", "documentation":"

Kubernetes labels to be removed.

" } }, "documentation":"

An object representing a Kubernetes label change for a managed node group.

" }, "UpdateNodegroupConfigRequest":{ "type":"structure", "required":[ "clusterName", "nodegroupName" ], "members":{ "clusterName":{ "shape":"String", "documentation":"

The name of the Amazon EKS cluster that the managed node group resides in.

", "location":"uri", "locationName":"name" }, "nodegroupName":{ "shape":"String", "documentation":"

The name of the managed node group to update.

", "location":"uri", "locationName":"nodegroupName" }, "labels":{ "shape":"UpdateLabelsPayload", "documentation":"

The Kubernetes labels to be applied to the nodes in the node group after the update.

" }, "scalingConfig":{ "shape":"NodegroupScalingConfig", "documentation":"

The scaling configuration details for the Auto Scaling group after the update.

" }, "clientRequestToken":{ "shape":"String", "documentation":"

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

", "idempotencyToken":true } } }, "UpdateNodegroupConfigResponse":{ "type":"structure", "members":{ "update":{"shape":"Update"} } }, "UpdateNodegroupVersionRequest":{ "type":"structure", "required":[ "clusterName", "nodegroupName" ], "members":{ "clusterName":{ "shape":"String", "documentation":"

The name of the Amazon EKS cluster that is associated with the managed node group to update.

", "location":"uri", "locationName":"name" }, "nodegroupName":{ "shape":"String", "documentation":"

The name of the managed node group to update.

", "location":"uri", "locationName":"nodegroupName" }, "version":{ "shape":"String", "documentation":"

The Kubernetes version to update to. If no version is specified, then the Kubernetes version of the node group does not change. You can specify the Kubernetes version of the cluster to update the node group to the latest AMI version of the cluster's Kubernetes version. If you specify launchTemplate, and your launch template uses a custom AMI, then don't specify version, or the node group update will fail. For more information about using launch templates with Amazon EKS, see Launch template support in the Amazon EKS User Guide.

" }, "releaseVersion":{ "shape":"String", "documentation":"

The AMI version of the Amazon EKS optimized AMI to use for the update. By default, the latest available AMI version for the node group's Kubernetes version is used. For more information, see Amazon EKS optimized Amazon Linux 2 AMI versions in the Amazon EKS User Guide. If you specify launchTemplate, and your launch template uses a custom AMI, then don't specify releaseVersion, or the node group update will fail. For more information about using launch templates with Amazon EKS, see Launch template support in the Amazon EKS User Guide.

" }, "launchTemplate":{ "shape":"LaunchTemplateSpecification", "documentation":"

An object representing a node group's launch template specification. You can only update a node group using a launch template if the node group was originally deployed with a launch template.

" }, "force":{ "shape":"Boolean", "documentation":"

Force the update if the existing node group's pods are unable to be drained due to a pod disruption budget issue. If an update fails because pods could not be drained, you can force the update after it fails to terminate the old node whether or not any pods are running on the node.

" }, "clientRequestToken":{ "shape":"String", "documentation":"

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

", "idempotencyToken":true } } }, "UpdateNodegroupVersionResponse":{ "type":"structure", "members":{ "update":{"shape":"Update"} } }, "UpdateParam":{ "type":"structure", "members":{ "type":{ "shape":"UpdateParamType", "documentation":"

The keys associated with an update request.

" }, "value":{ "shape":"String", "documentation":"

The value of the keys submitted as part of an update request.

" } }, "documentation":"

An object representing the details of an update request.

" }, "UpdateParamType":{ "type":"string", "enum":[ "Version", "PlatformVersion", "EndpointPrivateAccess", "EndpointPublicAccess", "ClusterLogging", "DesiredSize", "LabelsToAdd", "LabelsToRemove", "MaxSize", "MinSize", "ReleaseVersion", "PublicAccessCidrs", "IdentityProviderConfig", "EncryptionConfig", "AddonVersion", "ServiceAccountRoleArn", "ResolveConflicts" ] }, "UpdateParams":{ "type":"list", "member":{"shape":"UpdateParam"} }, "UpdateStatus":{ "type":"string", "enum":[ "InProgress", "Failed", "Cancelled", "Successful" ] }, "UpdateType":{ "type":"string", "enum":[ "VersionUpdate", "EndpointAccessUpdate", "LoggingUpdate", "ConfigUpdate", "AssociateIdentityProviderConfig", "DisassociateIdentityProviderConfig", "AssociateEncryptionConfig", "AddonUpdate" ] }, "VpcConfigRequest":{ "type":"structure", "members":{ "subnetIds":{ "shape":"StringList", "documentation":"

Specify subnets for your Amazon EKS nodes. Amazon EKS creates cross-account elastic network interfaces in these subnets to allow communication between your nodes and the Kubernetes control plane.

" }, "securityGroupIds":{ "shape":"StringList", "documentation":"

Specify one or more security groups for the cross-account elastic network interfaces that Amazon EKS creates to use to allow communication between your nodes and the Kubernetes control plane. If you don't specify any security groups, then familiarize yourself with the difference between Amazon EKS defaults for clusters deployed with Kubernetes:

For more information, see Amazon EKS security group considerations in the Amazon EKS User Guide .

" }, "endpointPublicAccess":{ "shape":"BoxedBoolean", "documentation":"

Set this value to false to disable public access to your cluster's Kubernetes API server endpoint. If you disable public access, your cluster's Kubernetes API server can only receive requests from within the cluster VPC. The default value for this parameter is true, which enables public access for your Kubernetes API server. For more information, see Amazon EKS Cluster Endpoint Access Control in the Amazon EKS User Guide .

" }, "endpointPrivateAccess":{ "shape":"BoxedBoolean", "documentation":"

Set this value to true to enable private access for your cluster's Kubernetes API server endpoint. If you enable private access, Kubernetes API requests from within your cluster's VPC use the private VPC endpoint. The default value for this parameter is false, which disables private access for your Kubernetes API server. If you disable private access and you have nodes or AWS Fargate pods in the cluster, then ensure that publicAccessCidrs includes the necessary CIDR blocks for communication with the nodes or Fargate pods. For more information, see Amazon EKS Cluster Endpoint Access Control in the Amazon EKS User Guide .

" }, "publicAccessCidrs":{ "shape":"StringList", "documentation":"

The CIDR blocks that are allowed access to your cluster's public Kubernetes API server endpoint. Communication to the endpoint from addresses outside of the CIDR blocks that you specify is denied. The default value is 0.0.0.0/0. If you've disabled private endpoint access and you have nodes or AWS Fargate pods in the cluster, then ensure that you specify the necessary CIDR blocks. For more information, see Amazon EKS Cluster Endpoint Access Control in the Amazon EKS User Guide .

" } }, "documentation":"

An object representing the VPC configuration to use for an Amazon EKS cluster.

" }, "VpcConfigResponse":{ "type":"structure", "members":{ "subnetIds":{ "shape":"StringList", "documentation":"

The subnets associated with your cluster.

" }, "securityGroupIds":{ "shape":"StringList", "documentation":"

The security groups associated with the cross-account elastic network interfaces that are used to allow communication between your nodes and the Kubernetes control plane.

" }, "clusterSecurityGroupId":{ "shape":"String", "documentation":"

The cluster security group that was created by Amazon EKS for the cluster. Managed node groups use this security group for control-plane-to-data-plane communication.

" }, "vpcId":{ "shape":"String", "documentation":"

The VPC associated with your cluster.

" }, "endpointPublicAccess":{ "shape":"Boolean", "documentation":"

This parameter indicates whether the Amazon EKS public API server endpoint is enabled. If the Amazon EKS public API server endpoint is disabled, your cluster's Kubernetes API server can only receive requests that originate from within the cluster VPC.

" }, "endpointPrivateAccess":{ "shape":"Boolean", "documentation":"

This parameter indicates whether the Amazon EKS private API server endpoint is enabled. If the Amazon EKS private API server endpoint is enabled, Kubernetes API requests that originate from within your cluster's VPC use the private VPC endpoint instead of traversing the internet. If this value is disabled and you have nodes or AWS Fargate pods in the cluster, then ensure that publicAccessCidrs includes the necessary CIDR blocks for communication with the nodes or Fargate pods. For more information, see Amazon EKS Cluster Endpoint Access Control in the Amazon EKS User Guide .

" }, "publicAccessCidrs":{ "shape":"StringList", "documentation":"

The CIDR blocks that are allowed access to your cluster's public Kubernetes API server endpoint. Communication to the endpoint from addresses outside of the listed CIDR blocks is denied. The default value is 0.0.0.0/0. If you've disabled private endpoint access and you have nodes or AWS Fargate pods in the cluster, then ensure that the necessary CIDR blocks are listed. For more information, see Amazon EKS Cluster Endpoint Access Control in the Amazon EKS User Guide .

" } }, "documentation":"

An object representing an Amazon EKS cluster VPC configuration response.

" }, "configStatus":{ "type":"string", "enum":[ "CREATING", "DELETING", "ACTIVE" ] }, "labelKey":{ "type":"string", "max":63, "min":1 }, "labelValue":{ "type":"string", "max":253, "min":1 }, "labelsKeyList":{ "type":"list", "member":{"shape":"String"} }, "labelsMap":{ "type":"map", "key":{"shape":"labelKey"}, "value":{"shape":"labelValue"} }, "requiredClaimsKey":{ "type":"string", "max":63, "min":1 }, "requiredClaimsMap":{ "type":"map", "key":{"shape":"requiredClaimsKey"}, "value":{"shape":"requiredClaimsValue"} }, "requiredClaimsValue":{ "type":"string", "max":253, "min":1 } }, "documentation":"

Amazon Elastic Kubernetes Service (Amazon EKS) is a managed service that makes it easy for you to run Kubernetes on AWS without needing to stand up or maintain your own Kubernetes control plane. Kubernetes is an open-source system for automating the deployment, scaling, and management of containerized applications.

Amazon EKS runs up-to-date versions of the open-source Kubernetes software, so you can use all the existing plugins and tooling from the Kubernetes community. Applications running on Amazon EKS are fully compatible with applications running on any standard Kubernetes environment, whether running in on-premises data centers or public clouds. This means that you can easily migrate any standard Kubernetes application to Amazon EKS without any code modification required.

" }