python-botocore/botocore/data/eks/2017-11-01/service-2.json
2022-12-12 08:14:19 -08:00

3653 lines
182 KiB
JSON
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"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":"<p>Associate encryption configuration to an existing cluster.</p> <p>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 Amazon EKS clusters.</p>"
},
"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":"<p>Associate an identity provider configuration to a cluster.</p> <p>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 <code>roles</code> and <code>clusterroles</code> to assign permissions to the roles, and then bind the roles to the identities using Kubernetes <code>rolebindings</code> and <code>clusterrolebindings</code>. For more information see <a href=\"https://kubernetes.io/docs/reference/access-authn-authz/rbac/\">Using RBAC Authorization</a> in the Kubernetes documentation.</p>"
},
"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":"<p>Creates an Amazon EKS add-on.</p> <p>Amazon EKS add-ons help to automate the provisioning and lifecycle management of common operational software for Amazon EKS clusters. For more information, see <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/eks-add-ons.html\">Amazon EKS add-ons</a> in the <i>Amazon EKS User Guide</i>.</p>"
},
"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":"<p>Creates an Amazon EKS control plane. </p> <p>The Amazon EKS control plane consists of control plane instances that run the Kubernetes software, such as <code>etcd</code> and the API server. The control plane runs in an account managed by Amazon Web Services, and the Kubernetes API is exposed by the Amazon EKS API server endpoint. Each Amazon EKS cluster control plane is single tenant and unique. It runs on its own set of Amazon EC2 instances.</p> <p>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 <code>kubectl exec</code>, <code>logs</code>, and <code>proxy</code> data flows).</p> <p>Amazon EKS nodes run in your Amazon Web Services account and connect to your cluster's control plane over the Kubernetes API server endpoint and a certificate file that is created for your cluster.</p> <p>In most cases, it takes several minutes to create a cluster. 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 <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/managing-auth.html\">Managing Cluster Authentication</a> and <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/launch-workers.html\">Launching Amazon EKS nodes</a> in the <i>Amazon EKS User Guide</i>.</p>"
},
"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":"<p>Creates an 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.</p> <p>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 profiles 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.</p> <p>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 <a href=\"https://kubernetes.io/docs/admin/authorization/rbac/\">Role Based Access Control</a> (RBAC) for authorization so that the <code>kubelet</code> 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 <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/pod-execution-role.html\">Pod Execution Role</a> in the <i>Amazon EKS User Guide</i>.</p> <p>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.</p> <p>If any Fargate profiles in a cluster are in the <code>DELETING</code> status, you must wait for that Fargate profile to finish deleting before you can create any other profiles in that cluster.</p> <p>For more information, see <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/fargate-profile.html\">Fargate Profile</a> in the <i>Amazon EKS User Guide</i>.</p>"
},
"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":"<p>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 <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html\">Launch template support</a>.</p> <p>An Amazon EKS managed node group is an Amazon EC2 Auto Scaling group and associated Amazon EC2 instances that are managed by Amazon Web Services for an Amazon EKS cluster. Each node group uses a version of the Amazon EKS optimized Amazon Linux 2 AMI. For more information, see <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/managed-node-groups.html\">Managed Node Groups</a> in the <i>Amazon EKS User Guide</i>. </p>"
},
"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":"<p>Delete an Amazon EKS add-on.</p> <p>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.</p>"
},
"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":"<p>Deletes the Amazon EKS cluster control plane.</p> <p>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 <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/delete-cluster.html\">Deleting a Cluster</a> in the <i>Amazon EKS User Guide</i>.</p> <p>If you have managed node groups or Fargate profiles attached to the cluster, you must delete them first. For more information, see <a>DeleteNodegroup</a> and <a>DeleteFargateProfile</a>.</p>"
},
"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":"<p>Deletes an Fargate profile.</p> <p>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.</p> <p>Only one Fargate profile in a cluster can be in the <code>DELETING</code> status at a time. You must wait for a Fargate profile to finish deleting before you can delete any other profiles in that cluster.</p>"
},
"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":"<p>Deletes an Amazon EKS node group for a cluster.</p>"
},
"DeregisterCluster":{
"name":"DeregisterCluster",
"http":{
"method":"DELETE",
"requestUri":"/cluster-registrations/{name}"
},
"input":{"shape":"DeregisterClusterRequest"},
"output":{"shape":"DeregisterClusterResponse"},
"errors":[
{"shape":"ResourceInUseException"},
{"shape":"ResourceNotFoundException"},
{"shape":"ClientException"},
{"shape":"ServerException"},
{"shape":"ServiceUnavailableException"},
{"shape":"AccessDeniedException"}
],
"documentation":"<p>Deregisters a connected cluster to remove it from the Amazon EKS control plane.</p>"
},
"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":"<p>Describes an Amazon EKS add-on.</p>"
},
"DescribeAddonConfiguration":{
"name":"DescribeAddonConfiguration",
"http":{
"method":"GET",
"requestUri":"/addons/configuration-schemas"
},
"input":{"shape":"DescribeAddonConfigurationRequest"},
"output":{"shape":"DescribeAddonConfigurationResponse"},
"errors":[
{"shape":"ServerException"},
{"shape":"ResourceNotFoundException"},
{"shape":"InvalidParameterException"}
],
"documentation":"<p>Returns configuration options.</p>"
},
"DescribeAddonVersions":{
"name":"DescribeAddonVersions",
"http":{
"method":"GET",
"requestUri":"/addons/supported-versions"
},
"input":{"shape":"DescribeAddonVersionsRequest"},
"output":{"shape":"DescribeAddonVersionsResponse"},
"errors":[
{"shape":"ServerException"},
{"shape":"ResourceNotFoundException"},
{"shape":"InvalidParameterException"}
],
"documentation":"<p>Describes the versions for an add-on. Information such as the Kubernetes versions that you can use the add-on with, the <code>owner</code>, <code>publisher</code>, and the <code>type</code> of the add-on are returned. </p>"
},
"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":"<p>Returns descriptive information about an Amazon EKS cluster.</p> <p>The API server endpoint and certificate authority data returned by this operation are required for <code>kubelet</code> and <code>kubectl</code> to communicate with your Kubernetes API server. For more information, see <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/create-kubeconfig.html\">Create a kubeconfig for Amazon EKS</a>.</p> <note> <p>The API server endpoint and certificate authority data aren't available until the cluster reaches the <code>ACTIVE</code> state.</p> </note>"
},
"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":"<p>Returns descriptive information about an Fargate profile.</p>"
},
"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":"<p>Returns descriptive information about an identity provider configuration.</p>"
},
"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":"<p>Returns descriptive information about an Amazon EKS node group.</p>"
},
"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":"<p>Returns descriptive information about an update against your Amazon EKS cluster or associated managed node group or Amazon EKS add-on.</p> <p>When the status of the update is <code>Succeeded</code>, the update is complete. If an update fails, the status is <code>Failed</code>, and an error detail explains the reason for the failure.</p>"
},
"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":"<p>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 Amazon Web Services IAM users.</p>"
},
"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":"<p>Lists the available add-ons.</p>"
},
"ListClusters":{
"name":"ListClusters",
"http":{
"method":"GET",
"requestUri":"/clusters"
},
"input":{"shape":"ListClustersRequest"},
"output":{"shape":"ListClustersResponse"},
"errors":[
{"shape":"InvalidParameterException"},
{"shape":"ClientException"},
{"shape":"ServerException"},
{"shape":"ServiceUnavailableException"}
],
"documentation":"<p>Lists the Amazon EKS clusters in your Amazon Web Services account in the specified Region.</p>"
},
"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":"<p>Lists the Fargate profiles associated with the specified cluster in your Amazon Web Services account in the specified Region.</p>"
},
"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":"<p>A list of identity provider configurations.</p>"
},
"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":"<p>Lists the Amazon EKS managed node groups associated with the specified cluster in your Amazon Web Services account in the specified Region. Self-managed node groups are not listed.</p>"
},
"ListTagsForResource":{
"name":"ListTagsForResource",
"http":{
"method":"GET",
"requestUri":"/tags/{resourceArn}"
},
"input":{"shape":"ListTagsForResourceRequest"},
"output":{"shape":"ListTagsForResourceResponse"},
"errors":[
{"shape":"BadRequestException"},
{"shape":"NotFoundException"}
],
"documentation":"<p>List the tags for an Amazon EKS resource.</p>"
},
"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":"<p>Lists the updates associated with an Amazon EKS cluster or managed node group in your Amazon Web Services account, in the specified Region.</p>"
},
"RegisterCluster":{
"name":"RegisterCluster",
"http":{
"method":"POST",
"requestUri":"/cluster-registrations"
},
"input":{"shape":"RegisterClusterRequest"},
"output":{"shape":"RegisterClusterResponse"},
"errors":[
{"shape":"ResourceLimitExceededException"},
{"shape":"InvalidParameterException"},
{"shape":"ClientException"},
{"shape":"ServerException"},
{"shape":"ServiceUnavailableException"},
{"shape":"AccessDeniedException"},
{"shape":"ResourceInUseException"},
{"shape":"ResourcePropagationDelayException"}
],
"documentation":"<p>Connects a Kubernetes cluster to the Amazon EKS control plane. </p> <p>Any Kubernetes cluster can be connected to the Amazon EKS control plane to view current information about the cluster and its nodes. </p> <p>Cluster connection requires two steps. First, send a <code> <a>RegisterClusterRequest</a> </code> to add it to the Amazon EKS control plane.</p> <p>Second, a <a href=\"https://amazon-eks.s3.us-west-2.amazonaws.com/eks-connector/manifests/eks-connector/latest/eks-connector.yaml\">Manifest</a> containing the <code>activationID</code> and <code>activationCode</code> must be applied to the Kubernetes cluster through it's native provider to provide visibility.</p> <p>After the Manifest is updated and applied, then the connected cluster is visible to the Amazon EKS control plane. If the Manifest is not applied within three days, then the connected cluster will no longer be visible and must be deregistered. See <a>DeregisterCluster</a>.</p>"
},
"TagResource":{
"name":"TagResource",
"http":{
"method":"POST",
"requestUri":"/tags/{resourceArn}"
},
"input":{"shape":"TagResourceRequest"},
"output":{"shape":"TagResourceResponse"},
"errors":[
{"shape":"BadRequestException"},
{"shape":"NotFoundException"}
],
"documentation":"<p>Associates the specified tags to a resource with the specified <code>resourceArn</code>. 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.</p>"
},
"UntagResource":{
"name":"UntagResource",
"http":{
"method":"DELETE",
"requestUri":"/tags/{resourceArn}"
},
"input":{"shape":"UntagResourceRequest"},
"output":{"shape":"UntagResourceResponse"},
"errors":[
{"shape":"BadRequestException"},
{"shape":"NotFoundException"}
],
"documentation":"<p>Deletes specified tags from a resource.</p>"
},
"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":"<p>Updates an Amazon EKS add-on.</p>"
},
"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":"<p>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 <a>DescribeUpdate</a> API operation.</p> <p>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 <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/control-plane-logs.html\">Amazon EKS Cluster Control Plane Logs</a> in the <i> <i>Amazon EKS User Guide</i> </i>.</p> <note> <p>CloudWatch Logs ingestion, archive storage, and data scanning rates apply to exported control plane logs. For more information, see <a href=\"http://aws.amazon.com/cloudwatch/pricing/\">CloudWatch Pricing</a>.</p> </note> <p>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 <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/cluster-endpoint.html\">Amazon EKS cluster endpoint access control</a> in the <i> <i>Amazon EKS User Guide</i> </i>. </p> <important> <p>You can't update the subnets or security group IDs for an existing cluster.</p> </important> <p>Cluster updates are asynchronous, and they should finish within a few minutes. During an update, the cluster status moves to <code>UPDATING</code> (this status transition is eventually consistent). When the update is complete (either <code>Failed</code> or <code>Successful</code>), the cluster status moves to <code>Active</code>.</p>"
},
"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":"<p>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 <a>DescribeUpdate</a> API operation.</p> <p>Cluster updates are asynchronous, and they should finish within a few minutes. During an update, the cluster status moves to <code>UPDATING</code> (this status transition is eventually consistent). When the update is complete (either <code>Failed</code> or <code>Successful</code>), the cluster status moves to <code>Active</code>.</p> <p>If your cluster has managed node groups attached to it, all of your node groups Kubernetes versions must match the clusters Kubernetes version in order to update the cluster to a new Kubernetes version.</p>"
},
"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":"<p>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 <a>DescribeUpdate</a> API operation. Currently you can update the Kubernetes labels for a node group or the scaling configuration.</p>"
},
"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":"<p>Updates the Kubernetes version or AMI version of an Amazon EKS managed node group.</p> <p>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.</p> <p>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 <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/eks-linux-ami-versions.html\">Amazon EKS optimized Amazon Linux 2 AMI versions</a> in the <i>Amazon EKS User Guide</i>.</p> <p>You cannot roll back a node group to an earlier Kubernetes version or AMI version.</p> <p>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 <code>force</code> the update if Amazon EKS is unable to drain the nodes as a result of a pod disruption budget issue.</p>"
}
},
"shapes":{
"AMITypes":{
"type":"string",
"enum":[
"AL2_x86_64",
"AL2_x86_64_GPU",
"AL2_ARM_64",
"CUSTOM",
"BOTTLEROCKET_ARM_64",
"BOTTLEROCKET_x86_64",
"BOTTLEROCKET_ARM_64_NVIDIA",
"BOTTLEROCKET_x86_64_NVIDIA"
]
},
"AccessDeniedException":{
"type":"structure",
"members":{
"message":{"shape":"String"}
},
"documentation":"<p>You don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see <a href=\"https://docs.aws.amazon.com/IAM/latest/UserGuide/access.html\">Access Management</a> in the <i>IAM User Guide</i>. </p>",
"error":{"httpStatusCode":403},
"exception":true
},
"Addon":{
"type":"structure",
"members":{
"addonName":{
"shape":"String",
"documentation":"<p>The name of the add-on.</p>"
},
"clusterName":{
"shape":"ClusterName",
"documentation":"<p>The name of the cluster.</p>"
},
"status":{
"shape":"AddonStatus",
"documentation":"<p>The status of the add-on.</p>"
},
"addonVersion":{
"shape":"String",
"documentation":"<p>The version of the add-on.</p>"
},
"health":{
"shape":"AddonHealth",
"documentation":"<p>An object representing the health of the add-on.</p>"
},
"addonArn":{
"shape":"String",
"documentation":"<p>The Amazon Resource Name (ARN) of the add-on.</p>"
},
"createdAt":{
"shape":"Timestamp",
"documentation":"<p>The date and time that the add-on was created.</p>"
},
"modifiedAt":{
"shape":"Timestamp",
"documentation":"<p>The date and time that the add-on was last modified.</p>"
},
"serviceAccountRoleArn":{
"shape":"String",
"documentation":"<p>The Amazon Resource Name (ARN) of the IAM role that is bound to the Kubernetes service account used by the add-on.</p>"
},
"tags":{
"shape":"TagMap",
"documentation":"<p>The metadata that you apply to the add-on to assist with categorization and organization. Each tag consists of a key and an optional value. You define both. Add-on tags do not propagate to any other resources associated with the cluster. </p>"
},
"publisher":{
"shape":"String",
"documentation":"<p>The publisher of the add-on.</p>"
},
"owner":{
"shape":"String",
"documentation":"<p>The owner of the add-on.</p>"
},
"marketplaceInformation":{
"shape":"MarketplaceInformation",
"documentation":"<p>Information about an Amazon EKS add-on from the Amazon Web Services Marketplace.</p>"
},
"configurationValues":{
"shape":"String",
"documentation":"<p>The provided configuration values.</p>"
}
},
"documentation":"<p>An Amazon EKS add-on. For more information, see <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/eks-add-ons.html\">Amazon EKS add-ons</a> in the <i>Amazon EKS User Guide</i>.</p>"
},
"AddonHealth":{
"type":"structure",
"members":{
"issues":{
"shape":"AddonIssueList",
"documentation":"<p>An object representing the health issues for an add-on.</p>"
}
},
"documentation":"<p>The health of the add-on.</p>"
},
"AddonInfo":{
"type":"structure",
"members":{
"addonName":{
"shape":"String",
"documentation":"<p>The name of the add-on.</p>"
},
"type":{
"shape":"String",
"documentation":"<p>The type of the add-on.</p>"
},
"addonVersions":{
"shape":"AddonVersionInfoList",
"documentation":"<p>An object representing information about available add-on versions and compatible Kubernetes versions.</p>"
},
"publisher":{
"shape":"String",
"documentation":"<p>The publisher of the add-on.</p>"
},
"owner":{
"shape":"String",
"documentation":"<p>The owner of the add-on.</p>"
},
"marketplaceInformation":{
"shape":"MarketplaceInformation",
"documentation":"<p>Information about the add-on from the Amazon Web Services Marketplace.</p>"
}
},
"documentation":"<p>Information about an add-on.</p>"
},
"AddonIssue":{
"type":"structure",
"members":{
"code":{
"shape":"AddonIssueCode",
"documentation":"<p>A code that describes the type of issue.</p>"
},
"message":{
"shape":"String",
"documentation":"<p>A message that provides details about the issue and what might cause it.</p>"
},
"resourceIds":{
"shape":"StringList",
"documentation":"<p>The resource IDs of the issue.</p>"
}
},
"documentation":"<p>An issue related to an add-on.</p>"
},
"AddonIssueCode":{
"type":"string",
"enum":[
"AccessDenied",
"InternalFailure",
"ClusterUnreachable",
"InsufficientNumberOfReplicas",
"ConfigurationConflict",
"AdmissionRequestDenied",
"UnsupportedAddonModification",
"K8sResourceNotFound"
]
},
"AddonIssueList":{
"type":"list",
"member":{"shape":"AddonIssue"}
},
"AddonStatus":{
"type":"string",
"enum":[
"CREATING",
"ACTIVE",
"CREATE_FAILED",
"UPDATING",
"DELETING",
"DELETE_FAILED",
"DEGRADED",
"UPDATE_FAILED"
]
},
"AddonVersionInfo":{
"type":"structure",
"members":{
"addonVersion":{
"shape":"String",
"documentation":"<p>The version of the add-on.</p>"
},
"architecture":{
"shape":"StringList",
"documentation":"<p>The architectures that the version supports.</p>"
},
"compatibilities":{
"shape":"Compatibilities",
"documentation":"<p>An object representing the compatibilities of a version.</p>"
},
"requiresConfiguration":{
"shape":"Boolean",
"documentation":"<p>Whether the add-on requires configuration.</p>"
}
},
"documentation":"<p>Information about an add-on version.</p>"
},
"AddonVersionInfoList":{
"type":"list",
"member":{"shape":"AddonVersionInfo"}
},
"Addons":{
"type":"list",
"member":{"shape":"AddonInfo"}
},
"AssociateEncryptionConfigRequest":{
"type":"structure",
"required":[
"clusterName",
"encryptionConfig"
],
"members":{
"clusterName":{
"shape":"String",
"documentation":"<p>The name of the cluster that you are associating with encryption configuration.</p>",
"location":"uri",
"locationName":"name"
},
"encryptionConfig":{
"shape":"EncryptionConfigList",
"documentation":"<p>The configuration you are using for encryption.</p>"
},
"clientRequestToken":{
"shape":"String",
"documentation":"<p>The client request token you are using with the encryption configuration.</p>",
"idempotencyToken":true
}
}
},
"AssociateEncryptionConfigResponse":{
"type":"structure",
"members":{
"update":{"shape":"Update"}
}
},
"AssociateIdentityProviderConfigRequest":{
"type":"structure",
"required":[
"clusterName",
"oidc"
],
"members":{
"clusterName":{
"shape":"String",
"documentation":"<p>The name of the cluster to associate the configuration to.</p>",
"location":"uri",
"locationName":"name"
},
"oidc":{
"shape":"OidcIdentityProviderConfigRequest",
"documentation":"<p>An object representing an OpenID Connect (OIDC) identity provider configuration.</p>"
},
"tags":{
"shape":"TagMap",
"documentation":"<p>The metadata to apply to the configuration to assist with categorization and organization. Each tag consists of a key and an optional value. You define both.</p>"
},
"clientRequestToken":{
"shape":"String",
"documentation":"<p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>",
"idempotencyToken":true
}
}
},
"AssociateIdentityProviderConfigResponse":{
"type":"structure",
"members":{
"update":{"shape":"Update"},
"tags":{
"shape":"TagMap",
"documentation":"<p>The tags for the resource.</p>"
}
}
},
"AutoScalingGroup":{
"type":"structure",
"members":{
"name":{
"shape":"String",
"documentation":"<p>The name of the Auto Scaling group associated with an Amazon EKS managed node group.</p>"
}
},
"documentation":"<p>An Auto Scaling group that is associated with an Amazon EKS managed node group.</p>"
},
"AutoScalingGroupList":{
"type":"list",
"member":{"shape":"AutoScalingGroup"}
},
"BadRequestException":{
"type":"structure",
"members":{
"message":{"shape":"String"}
},
"documentation":"<p>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.</p>",
"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":"<p>The Base64-encoded certificate data required to communicate with your cluster. Add this to the <code>certificate-authority-data</code> section of the <code>kubeconfig</code> file for your cluster.</p>"
}
},
"documentation":"<p>An object representing the <code>certificate-authority-data</code> for your cluster.</p>"
},
"ClientException":{
"type":"structure",
"members":{
"clusterName":{
"shape":"String",
"documentation":"<p>The Amazon EKS cluster associated with the exception.</p>"
},
"nodegroupName":{
"shape":"String",
"documentation":"<p>The Amazon EKS managed node group associated with the exception.</p>"
},
"addonName":{"shape":"String"},
"message":{"shape":"String"}
},
"documentation":"<p>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.</p>",
"error":{"httpStatusCode":400},
"exception":true
},
"Cluster":{
"type":"structure",
"members":{
"name":{
"shape":"String",
"documentation":"<p>The name of the cluster.</p>"
},
"arn":{
"shape":"String",
"documentation":"<p>The Amazon Resource Name (ARN) of the cluster.</p>"
},
"createdAt":{
"shape":"Timestamp",
"documentation":"<p>The Unix epoch timestamp in seconds for when the cluster was created.</p>"
},
"version":{
"shape":"String",
"documentation":"<p>The Kubernetes server version for the cluster.</p>"
},
"endpoint":{
"shape":"String",
"documentation":"<p>The endpoint for your Kubernetes API server.</p>"
},
"roleArn":{
"shape":"String",
"documentation":"<p>The Amazon Resource Name (ARN) of the IAM role that provides permissions for the Kubernetes control plane to make calls to Amazon Web Services API operations on your behalf.</p>"
},
"resourcesVpcConfig":{
"shape":"VpcConfigResponse",
"documentation":"<p>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 <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/network_reqs.html\">Cluster VPC Considerations</a> and <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/sec-group-reqs.html\">Cluster Security Group Considerations</a> in the <i>Amazon EKS User Guide</i>.</p>"
},
"kubernetesNetworkConfig":{
"shape":"KubernetesNetworkConfigResponse",
"documentation":"<p>The Kubernetes network configuration for the cluster.</p>"
},
"logging":{
"shape":"Logging",
"documentation":"<p>The logging configuration for your cluster.</p>"
},
"identity":{
"shape":"Identity",
"documentation":"<p>The identity provider information for the cluster.</p>"
},
"status":{
"shape":"ClusterStatus",
"documentation":"<p>The current status of the cluster.</p>"
},
"certificateAuthority":{
"shape":"Certificate",
"documentation":"<p>The <code>certificate-authority-data</code> for your cluster.</p>"
},
"clientRequestToken":{
"shape":"String",
"documentation":"<p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>"
},
"platformVersion":{
"shape":"String",
"documentation":"<p>The platform version of your Amazon EKS cluster. For more information, see <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/platform-versions.html\">Platform Versions</a> in the <i> <i>Amazon EKS User Guide</i> </i>.</p>"
},
"tags":{
"shape":"TagMap",
"documentation":"<p>The metadata that you apply to the cluster to assist with categorization and organization. Each tag consists of a key and an optional value. You define both. Cluster tags do not propagate to any other resources associated with the cluster.</p>"
},
"encryptionConfig":{
"shape":"EncryptionConfigList",
"documentation":"<p>The encryption configuration for the cluster.</p>"
},
"connectorConfig":{
"shape":"ConnectorConfigResponse",
"documentation":"<p>The configuration used to connect to a cluster for registration.</p>"
},
"id":{
"shape":"String",
"documentation":"<p>The ID of your local Amazon EKS cluster on an Amazon Web Services Outpost. This property isn't available for an Amazon EKS cluster on the Amazon Web Services cloud.</p>"
},
"health":{
"shape":"ClusterHealth",
"documentation":"<p>An object representing the health of your local Amazon EKS cluster on an Amazon Web Services Outpost. This object isn't available for clusters on the Amazon Web Services cloud.</p>"
},
"outpostConfig":{
"shape":"OutpostConfigResponse",
"documentation":"<p>An object representing the configuration of your local Amazon EKS cluster on an Amazon Web Services Outpost. This object isn't available for clusters on the Amazon Web Services cloud.</p>"
}
},
"documentation":"<p>An object representing an Amazon EKS cluster.</p>"
},
"ClusterHealth":{
"type":"structure",
"members":{
"issues":{
"shape":"ClusterIssueList",
"documentation":"<p>An object representing the health issues of your local Amazon EKS cluster on an Amazon Web Services Outpost.</p>"
}
},
"documentation":"<p>An object representing the health of your local Amazon EKS cluster on an Amazon Web Services Outpost. You can't use this API with an Amazon EKS cluster on the Amazon Web Services cloud. </p>"
},
"ClusterIssue":{
"type":"structure",
"members":{
"code":{
"shape":"ClusterIssueCode",
"documentation":"<p>The error code of the issue.</p>"
},
"message":{
"shape":"String",
"documentation":"<p>A description of the issue.</p>"
},
"resourceIds":{
"shape":"StringList",
"documentation":"<p>The resource IDs that the issue relates to.</p>"
}
},
"documentation":"<p>An issue with your local Amazon EKS cluster on an Amazon Web Services Outpost. You can't use this API with an Amazon EKS cluster on the Amazon Web Services cloud.</p>"
},
"ClusterIssueCode":{
"type":"string",
"enum":[
"AccessDenied",
"ClusterUnreachable",
"ConfigurationConflict",
"InternalFailure",
"ResourceLimitExceeded",
"ResourceNotFound"
]
},
"ClusterIssueList":{
"type":"list",
"member":{"shape":"ClusterIssue"}
},
"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",
"PENDING"
]
},
"Compatibilities":{
"type":"list",
"member":{"shape":"Compatibility"}
},
"Compatibility":{
"type":"structure",
"members":{
"clusterVersion":{
"shape":"String",
"documentation":"<p>The supported Kubernetes version of the cluster.</p>"
},
"platformVersions":{
"shape":"StringList",
"documentation":"<p>The supported compute platform.</p>"
},
"defaultVersion":{
"shape":"Boolean",
"documentation":"<p>The supported default version.</p>"
}
},
"documentation":"<p>Compatibility information.</p>"
},
"ConnectorConfigProvider":{
"type":"string",
"enum":[
"EKS_ANYWHERE",
"ANTHOS",
"GKE",
"AKS",
"OPENSHIFT",
"TANZU",
"RANCHER",
"EC2",
"OTHER"
]
},
"ConnectorConfigRequest":{
"type":"structure",
"required":[
"roleArn",
"provider"
],
"members":{
"roleArn":{
"shape":"String",
"documentation":"<p>The Amazon Resource Name (ARN) of the role that is authorized to request the connector configuration.</p>"
},
"provider":{
"shape":"ConnectorConfigProvider",
"documentation":"<p>The cloud provider for the target cluster to connect.</p>"
}
},
"documentation":"<p>The configuration sent to a cluster for configuration.</p>"
},
"ConnectorConfigResponse":{
"type":"structure",
"members":{
"activationId":{
"shape":"String",
"documentation":"<p>A unique ID associated with the cluster for registration purposes.</p>"
},
"activationCode":{
"shape":"String",
"documentation":"<p>A unique code associated with the cluster for registration purposes.</p>"
},
"activationExpiry":{
"shape":"Timestamp",
"documentation":"<p>The expiration time of the connected cluster. The cluster's YAML file must be applied through the native provider.</p>"
},
"provider":{
"shape":"String",
"documentation":"<p>The cluster's cloud service provider.</p>"
},
"roleArn":{
"shape":"String",
"documentation":"<p>The Amazon Resource Name (ARN) of the role to communicate with services from the connected Kubernetes cluster.</p>"
}
},
"documentation":"<p>The full description of your connected cluster.</p>"
},
"ControlPlanePlacementRequest":{
"type":"structure",
"members":{
"groupName":{
"shape":"String",
"documentation":"<p>The name of the placement group for the Kubernetes control plane instances. This setting can't be changed after cluster creation. </p>"
}
},
"documentation":"<p>The placement configuration for all the control plane instances of your local Amazon EKS cluster on an Amazon Web Services Outpost. For more information, see <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/eks-outposts-capacity-considerations.html\">Capacity considerations</a> in the <i>Amazon EKS User Guide</i> </p>"
},
"ControlPlanePlacementResponse":{
"type":"structure",
"members":{
"groupName":{
"shape":"String",
"documentation":"<p>The name of the placement group for the Kubernetes control plane instances.</p>"
}
},
"documentation":"<p>The placement configuration for all the control plane instances of your local Amazon EKS cluster on an Amazon Web Services Outpost. For more information, see <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/eks-outposts-capacity-considerations.html\">Capacity considerations</a> in the <i>Amazon EKS User Guide</i>.</p>"
},
"CreateAddonRequest":{
"type":"structure",
"required":[
"clusterName",
"addonName"
],
"members":{
"clusterName":{
"shape":"ClusterName",
"documentation":"<p>The name of the cluster to create the add-on for.</p>",
"location":"uri",
"locationName":"name"
},
"addonName":{
"shape":"String",
"documentation":"<p>The name of the add-on. The name must match one of the names returned by <a href=\"https://docs.aws.amazon.com/eks/latest/APIReference/API_DescribeAddonVersions.html\"> <code>DescribeAddonVersions</code> </a>.</p>"
},
"addonVersion":{
"shape":"String",
"documentation":"<p>The version of the add-on. The version must match one of the versions returned by <a href=\"https://docs.aws.amazon.com/eks/latest/APIReference/API_DescribeAddonVersions.html\"> <code>DescribeAddonVersions</code> </a>.</p>"
},
"serviceAccountRoleArn":{
"shape":"RoleArn",
"documentation":"<p>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 <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/create-node-role.html\">Amazon EKS node IAM role</a> in the <i>Amazon EKS User Guide</i>.</p> <note> <p>To specify an existing IAM role, you must have an IAM OpenID Connect (OIDC) provider created for your cluster. For more information, see <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/enable-iam-roles-for-service-accounts.html\">Enabling IAM roles for service accounts on your cluster</a> in the <i>Amazon EKS User Guide</i>.</p> </note>"
},
"resolveConflicts":{
"shape":"ResolveConflicts",
"documentation":"<p>How to resolve field value conflicts for an Amazon EKS add-on. Conflicts are handled based on the value you choose:</p> <ul> <li> <p> <b>None</b> If the self-managed version of the add-on is installed on your cluster, Amazon EKS doesn't change the value. Creation of the add-on might fail.</p> </li> <li> <p> <b>Overwrite</b> If the self-managed version of the add-on is installed on your cluster and the Amazon EKS default value is different than the existing value, Amazon EKS changes the value to the Amazon EKS default value.</p> </li> <li> <p> <b>Preserve</b> Not supported. You can set this value when updating an add-on though. For more information, see <a href=\"https://docs.aws.amazon.com/eks/latest/APIReference/API_UpdateAddon.html\">UpdateAddon</a>.</p> </li> </ul> <p>If you don't currently have the self-managed version of the add-on installed on your cluster, the Amazon EKS add-on is installed. Amazon EKS sets all values to default values, regardless of the option that you specify.</p>"
},
"clientRequestToken":{
"shape":"String",
"documentation":"<p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>",
"idempotencyToken":true
},
"tags":{
"shape":"TagMap",
"documentation":"<p>The metadata to apply to the cluster to assist with categorization and organization. Each tag consists of a key and an optional value. You define both.</p>"
},
"configurationValues":{
"shape":"String",
"documentation":"<p> The set of configuration values for the add-on being created. Whatever values provided here are validated against the schema from <a href=\"https://docs.aws.amazon.com/eks/latest/APIReference/API_DescribeAddonConfiguration.html\"> <code>DescribeAddonConfiguration</code> </a>.</p>"
}
}
},
"CreateAddonResponse":{
"type":"structure",
"members":{
"addon":{"shape":"Addon"}
}
},
"CreateClusterRequest":{
"type":"structure",
"required":[
"name",
"roleArn",
"resourcesVpcConfig"
],
"members":{
"name":{
"shape":"ClusterName",
"documentation":"<p>The unique name to give to your cluster.</p>"
},
"version":{
"shape":"String",
"documentation":"<p>The desired Kubernetes version for your cluster. If you don't specify a value here, the default version available in Amazon EKS is used.</p> <note> <p>The default version might not be the latest version available.</p> </note>"
},
"roleArn":{
"shape":"String",
"documentation":"<p>The Amazon Resource Name (ARN) of the IAM role that provides permissions for the Kubernetes control plane to make calls to Amazon Web Services API operations on your behalf. For more information, see <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/service_IAM_role.html\">Amazon EKS Service IAM Role</a> in the <i> <i>Amazon EKS User Guide</i> </i>.</p>"
},
"resourcesVpcConfig":{
"shape":"VpcConfigRequest",
"documentation":"<p>The VPC configuration that's used by the cluster control plane. Amazon EKS VPC resources have specific requirements to work properly with Kubernetes. For more information, see <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/network_reqs.html\">Cluster VPC Considerations</a> and <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/sec-group-reqs.html\">Cluster Security Group Considerations</a> in the <i>Amazon EKS User Guide</i>. You must specify at least two subnets. You can specify up to five security groups. However, we recommend that you use a dedicated security group for your cluster control plane.</p>"
},
"kubernetesNetworkConfig":{
"shape":"KubernetesNetworkConfigRequest",
"documentation":"<p>The Kubernetes network configuration for the cluster.</p>"
},
"logging":{
"shape":"Logging",
"documentation":"<p>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 <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/control-plane-logs.html\">Amazon EKS Cluster control plane logs</a> in the <i> <i>Amazon EKS User Guide</i> </i>.</p> <note> <p>CloudWatch Logs ingestion, archive storage, and data scanning rates apply to exported control plane logs. For more information, see <a href=\"http://aws.amazon.com/cloudwatch/pricing/\">CloudWatch Pricing</a>.</p> </note>"
},
"clientRequestToken":{
"shape":"String",
"documentation":"<p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>",
"idempotencyToken":true
},
"tags":{
"shape":"TagMap",
"documentation":"<p>The metadata to apply to the cluster to assist with categorization and organization. Each tag consists of a key and an optional value. You define both.</p>"
},
"encryptionConfig":{
"shape":"EncryptionConfigList",
"documentation":"<p>The encryption configuration for the cluster.</p>"
},
"outpostConfig":{
"shape":"OutpostConfigRequest",
"documentation":"<p>An object representing the configuration of your local Amazon EKS cluster on an Amazon Web Services Outpost. Before creating a local cluster on an Outpost, review <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/eks-outposts-local-cluster-overview.html\">Local clusters for Amazon EKS on Amazon Web Services Outposts</a> in the <i>Amazon EKS User Guide</i>. This object isn't available for creating Amazon EKS clusters on the Amazon Web Services cloud.</p>"
}
}
},
"CreateClusterResponse":{
"type":"structure",
"members":{
"cluster":{
"shape":"Cluster",
"documentation":"<p>The full description of your new cluster.</p>"
}
}
},
"CreateFargateProfileRequest":{
"type":"structure",
"required":[
"fargateProfileName",
"clusterName",
"podExecutionRoleArn"
],
"members":{
"fargateProfileName":{
"shape":"String",
"documentation":"<p>The name of the Fargate profile.</p>"
},
"clusterName":{
"shape":"String",
"documentation":"<p>The name of the Amazon EKS cluster to apply the Fargate profile to.</p>",
"location":"uri",
"locationName":"name"
},
"podExecutionRoleArn":{
"shape":"String",
"documentation":"<p>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 <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/pod-execution-role.html\">Pod Execution Role</a> in the <i>Amazon EKS User Guide</i>.</p>"
},
"subnets":{
"shape":"StringList",
"documentation":"<p>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.</p>"
},
"selectors":{
"shape":"FargateProfileSelectors",
"documentation":"<p>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.</p>"
},
"clientRequestToken":{
"shape":"String",
"documentation":"<p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>",
"idempotencyToken":true
},
"tags":{
"shape":"TagMap",
"documentation":"<p>The metadata to apply to the Fargate profile to assist with categorization and organization. Each tag consists of a key and an optional value. You define both. Fargate profile tags do not propagate to any other resources associated with the Fargate profile, such as the pods that are scheduled with it.</p>"
}
}
},
"CreateFargateProfileResponse":{
"type":"structure",
"members":{
"fargateProfile":{
"shape":"FargateProfile",
"documentation":"<p>The full description of your new Fargate profile.</p>"
}
}
},
"CreateNodegroupRequest":{
"type":"structure",
"required":[
"clusterName",
"nodegroupName",
"subnets",
"nodeRole"
],
"members":{
"clusterName":{
"shape":"String",
"documentation":"<p>The name of the cluster to create the node group in.</p>",
"location":"uri",
"locationName":"name"
},
"nodegroupName":{
"shape":"String",
"documentation":"<p>The unique name to give your node group.</p>"
},
"scalingConfig":{
"shape":"NodegroupScalingConfig",
"documentation":"<p>The scaling configuration details for the Auto Scaling group that is created for your node group.</p>"
},
"diskSize":{
"shape":"BoxedInteger",
"documentation":"<p>The root device disk size (in GiB) for your node group instances. The default disk size is 20 GiB. If you specify <code>launchTemplate</code>, then don't specify <code>diskSize</code>, or the node group deployment will fail. For more information about using launch templates with Amazon EKS, see <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html\">Launch template support</a> in the <i>Amazon EKS User Guide</i>.</p>"
},
"subnets":{
"shape":"StringList",
"documentation":"<p>The subnets to use for the Auto Scaling group that is created for your node group. If you specify <code>launchTemplate</code>, then don't specify <a href=\"https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateNetworkInterface.html\"> <code>SubnetId</code> </a> in your launch template, or the node group deployment will fail. For more information about using launch templates with Amazon EKS, see <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html\">Launch template support</a> in the <i>Amazon EKS User Guide</i>.</p>"
},
"instanceTypes":{
"shape":"StringList",
"documentation":"<p>Specify the instance types for a node group. If you specify a GPU instance type, be sure to specify <code>AL2_x86_64_GPU</code> with the <code>amiType</code> parameter. If you specify <code>launchTemplate</code>, then you can specify zero or one instance type in your launch template <i>or</i> you can specify 0-20 instance types for <code>instanceTypes</code>. If however, you specify an instance type in your launch template <i>and</i> specify any <code>instanceTypes</code>, the node group deployment will fail. If you don't specify an instance type in a launch template or for <code>instanceTypes</code>, then <code>t3.medium</code> is used, by default. If you specify <code>Spot</code> for <code>capacityType</code>, then we recommend specifying multiple values for <code>instanceTypes</code>. For more information, see <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/managed-node-groups.html#managed-node-group-capacity-types\">Managed node group capacity types</a> and <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html\">Launch template support</a> in the <i>Amazon EKS User Guide</i>.</p>"
},
"amiType":{
"shape":"AMITypes",
"documentation":"<p>The AMI type for your node group. GPU instance types should use the <code>AL2_x86_64_GPU</code> AMI type. Non-GPU instances should use the <code>AL2_x86_64</code> AMI type. Arm instances should use the <code>AL2_ARM_64</code> AMI type. All types use the Amazon EKS optimized Amazon Linux 2 AMI. If you specify <code>launchTemplate</code>, and your launch template uses a custom AMI, then don't specify <code>amiType</code>, or the node group deployment will fail. For more information about using launch templates with Amazon EKS, see <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html\">Launch template support</a> in the <i>Amazon EKS User Guide</i>.</p>"
},
"remoteAccess":{
"shape":"RemoteAccessConfig",
"documentation":"<p>The remote access (SSH) configuration to use with your node group. If you specify <code>launchTemplate</code>, then don't specify <code>remoteAccess</code>, or the node group deployment will fail. For more information about using launch templates with Amazon EKS, see <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html\">Launch template support</a> in the <i>Amazon EKS User Guide</i>.</p>"
},
"nodeRole":{
"shape":"String",
"documentation":"<p>The Amazon Resource Name (ARN) of the IAM role to associate with your node group. The Amazon EKS worker node <code>kubelet</code> daemon makes calls to Amazon Web Services 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 <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/create-node-role.html\">Amazon EKS node IAM role</a> in the <i> <i>Amazon EKS User Guide</i> </i>. If you specify <code>launchTemplate</code>, then don't specify <a href=\"https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_IamInstanceProfile.html\"> <code>IamInstanceProfile</code> </a> in your launch template, or the node group deployment will fail. For more information about using launch templates with Amazon EKS, see <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html\">Launch template support</a> in the <i>Amazon EKS User Guide</i>.</p>"
},
"labels":{
"shape":"labelsMap",
"documentation":"<p>The Kubernetes labels to be applied to the nodes in the node group when they are created.</p>"
},
"taints":{
"shape":"taintsList",
"documentation":"<p>The Kubernetes taints to be applied to the nodes in the node group. For more information, see <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html\">Node taints on managed node groups</a>.</p>"
},
"tags":{
"shape":"TagMap",
"documentation":"<p>The metadata to apply to the node group to assist with categorization and organization. Each tag consists of a key and an optional value. You define both. Node group tags do not propagate to any other resources associated with the node group, such as the Amazon EC2 instances or subnets.</p>"
},
"clientRequestToken":{
"shape":"String",
"documentation":"<p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>",
"idempotencyToken":true
},
"launchTemplate":{
"shape":"LaunchTemplateSpecification",
"documentation":"<p>An object representing a node group's launch template specification. If specified, then do not specify <code>instanceTypes</code>, <code>diskSize</code>, or <code>remoteAccess</code> and make sure that the launch template meets the requirements in <code>launchTemplateSpecification</code>.</p>"
},
"updateConfig":{
"shape":"NodegroupUpdateConfig",
"documentation":"<p>The node group update configuration.</p>"
},
"capacityType":{
"shape":"CapacityTypes",
"documentation":"<p>The capacity type for your node group.</p>"
},
"version":{
"shape":"String",
"documentation":"<p>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 <code>launchTemplate</code>, and your launch template uses a custom AMI, then don't specify <code>version</code>, or the node group deployment will fail. For more information about using launch templates with Amazon EKS, see <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html\">Launch template support</a> in the <i>Amazon EKS User Guide</i>.</p>"
},
"releaseVersion":{
"shape":"String",
"documentation":"<p>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 <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/eks-linux-ami-versions.html\">Amazon EKS optimized Amazon Linux 2 AMI versions</a> in the <i>Amazon EKS User Guide</i>. If you specify <code>launchTemplate</code>, and your launch template uses a custom AMI, then don't specify <code>releaseVersion</code>, or the node group deployment will fail. For more information about using launch templates with Amazon EKS, see <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html\">Launch template support</a> in the <i>Amazon EKS User Guide</i>.</p>"
}
}
},
"CreateNodegroupResponse":{
"type":"structure",
"members":{
"nodegroup":{
"shape":"Nodegroup",
"documentation":"<p>The full description of your new node group.</p>"
}
}
},
"DeleteAddonRequest":{
"type":"structure",
"required":[
"clusterName",
"addonName"
],
"members":{
"clusterName":{
"shape":"ClusterName",
"documentation":"<p>The name of the cluster to delete the add-on from.</p>",
"location":"uri",
"locationName":"name"
},
"addonName":{
"shape":"String",
"documentation":"<p>The name of the add-on. The name must match one of the names returned by <a href=\"https://docs.aws.amazon.com/eks/latest/APIReference/API_ListAddons.html\"> <code>ListAddons</code> </a>.</p>",
"location":"uri",
"locationName":"addonName"
},
"preserve":{
"shape":"Boolean",
"documentation":"<p>Specifying this option preserves the add-on software on your cluster but Amazon EKS stops managing any settings for the add-on. If an IAM account is associated with the add-on, it isn't removed.</p>",
"location":"querystring",
"locationName":"preserve"
}
}
},
"DeleteAddonResponse":{
"type":"structure",
"members":{
"addon":{"shape":"Addon"}
}
},
"DeleteClusterRequest":{
"type":"structure",
"required":["name"],
"members":{
"name":{
"shape":"String",
"documentation":"<p>The name of the cluster to delete.</p>",
"location":"uri",
"locationName":"name"
}
}
},
"DeleteClusterResponse":{
"type":"structure",
"members":{
"cluster":{
"shape":"Cluster",
"documentation":"<p>The full description of the cluster to delete.</p>"
}
}
},
"DeleteFargateProfileRequest":{
"type":"structure",
"required":[
"clusterName",
"fargateProfileName"
],
"members":{
"clusterName":{
"shape":"String",
"documentation":"<p>The name of the Amazon EKS cluster associated with the Fargate profile to delete.</p>",
"location":"uri",
"locationName":"name"
},
"fargateProfileName":{
"shape":"String",
"documentation":"<p>The name of the Fargate profile to delete.</p>",
"location":"uri",
"locationName":"fargateProfileName"
}
}
},
"DeleteFargateProfileResponse":{
"type":"structure",
"members":{
"fargateProfile":{
"shape":"FargateProfile",
"documentation":"<p>The deleted Fargate profile.</p>"
}
}
},
"DeleteNodegroupRequest":{
"type":"structure",
"required":[
"clusterName",
"nodegroupName"
],
"members":{
"clusterName":{
"shape":"String",
"documentation":"<p>The name of the Amazon EKS cluster that is associated with your node group.</p>",
"location":"uri",
"locationName":"name"
},
"nodegroupName":{
"shape":"String",
"documentation":"<p>The name of the node group to delete.</p>",
"location":"uri",
"locationName":"nodegroupName"
}
}
},
"DeleteNodegroupResponse":{
"type":"structure",
"members":{
"nodegroup":{
"shape":"Nodegroup",
"documentation":"<p>The full description of your deleted node group.</p>"
}
}
},
"DeregisterClusterRequest":{
"type":"structure",
"required":["name"],
"members":{
"name":{
"shape":"String",
"documentation":"<p>The name of the connected cluster to deregister.</p>",
"location":"uri",
"locationName":"name"
}
}
},
"DeregisterClusterResponse":{
"type":"structure",
"members":{
"cluster":{"shape":"Cluster"}
}
},
"DescribeAddonConfigurationRequest":{
"type":"structure",
"required":[
"addonName",
"addonVersion"
],
"members":{
"addonName":{
"shape":"String",
"documentation":"<p>The name of the add-on. The name must match one of the names returned by <a href=\"https://docs.aws.amazon.com/eks/latest/APIReference/API_DescribeAddonVersions.html\"> <code>DescribeAddonVersions</code> </a>.</p>",
"location":"querystring",
"locationName":"addonName"
},
"addonVersion":{
"shape":"String",
"documentation":"<p>The version of the add-on. The version must match one of the versions returned by <a href=\"https://docs.aws.amazon.com/eks/latest/APIReference/API_DescribeAddonVersions.html\"> <code>DescribeAddonVersions</code> </a>.</p>",
"location":"querystring",
"locationName":"addonVersion"
}
}
},
"DescribeAddonConfigurationResponse":{
"type":"structure",
"members":{
"addonName":{
"shape":"String",
"documentation":"<p>The name of the add-on.</p>"
},
"addonVersion":{
"shape":"String",
"documentation":"<p>The version of the add-on. The version must match one of the versions returned by <a href=\"https://docs.aws.amazon.com/eks/latest/APIReference/API_DescribeAddonVersions.html\"> <code>DescribeAddonVersions</code> </a>.</p>"
},
"configurationSchema":{
"shape":"String",
"documentation":"<p>A JSON schema used to validate provided configuration values when creating or updating an addon.</p>"
}
}
},
"DescribeAddonRequest":{
"type":"structure",
"required":[
"clusterName",
"addonName"
],
"members":{
"clusterName":{
"shape":"ClusterName",
"documentation":"<p>The name of the cluster.</p>",
"location":"uri",
"locationName":"name"
},
"addonName":{
"shape":"String",
"documentation":"<p>The name of the add-on. The name must match one of the names returned by <a href=\"https://docs.aws.amazon.com/eks/latest/APIReference/API_ListAddons.html\"> <code>ListAddons</code> </a>.</p>",
"location":"uri",
"locationName":"addonName"
}
}
},
"DescribeAddonResponse":{
"type":"structure",
"members":{
"addon":{"shape":"Addon"}
}
},
"DescribeAddonVersionsRequest":{
"type":"structure",
"members":{
"kubernetesVersion":{
"shape":"String",
"documentation":"<p>The Kubernetes versions that you can use the add-on with.</p>",
"location":"querystring",
"locationName":"kubernetesVersion"
},
"maxResults":{
"shape":"DescribeAddonVersionsRequestMaxResults",
"documentation":"<p>The maximum number of results to return.</p>",
"location":"querystring",
"locationName":"maxResults"
},
"nextToken":{
"shape":"String",
"documentation":"<p>The <code>nextToken</code> value returned from a previous paginated <code>DescribeAddonVersionsRequest</code> where <code>maxResults</code> was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the <code>nextToken</code> value.</p> <note> <p>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.</p> </note>",
"location":"querystring",
"locationName":"nextToken"
},
"addonName":{
"shape":"String",
"documentation":"<p>The name of the add-on. The name must match one of the names returned by <a href=\"https://docs.aws.amazon.com/eks/latest/APIReference/API_ListAddons.html\"> <code>ListAddons</code> </a>.</p>",
"location":"querystring",
"locationName":"addonName"
},
"types":{
"shape":"StringList",
"documentation":"<p>The type of the add-on. For valid <code>types</code>, don't specify a value for this property.</p>",
"location":"querystring",
"locationName":"types"
},
"publishers":{
"shape":"StringList",
"documentation":"<p>The publisher of the add-on. For valid <code>publishers</code>, don't specify a value for this property.</p>",
"location":"querystring",
"locationName":"publishers"
},
"owners":{
"shape":"StringList",
"documentation":"<p>The owner of the add-on. For valid <code>owners</code>, don't specify a value for this property.</p>",
"location":"querystring",
"locationName":"owners"
}
}
},
"DescribeAddonVersionsRequestMaxResults":{
"type":"integer",
"box":true,
"max":100,
"min":1
},
"DescribeAddonVersionsResponse":{
"type":"structure",
"members":{
"addons":{
"shape":"Addons",
"documentation":"<p>The list of available versions with Kubernetes version compatibility and other properties.</p>"
},
"nextToken":{
"shape":"String",
"documentation":"<p>The <code>nextToken</code> value returned from a previous paginated <code>DescribeAddonVersionsResponse</code> where <code>maxResults</code> was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the <code>nextToken</code> value.</p> <note> <p>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.</p> </note>"
}
}
},
"DescribeClusterRequest":{
"type":"structure",
"required":["name"],
"members":{
"name":{
"shape":"String",
"documentation":"<p>The name of the cluster to describe.</p>",
"location":"uri",
"locationName":"name"
}
}
},
"DescribeClusterResponse":{
"type":"structure",
"members":{
"cluster":{
"shape":"Cluster",
"documentation":"<p>The full description of your specified cluster.</p>"
}
}
},
"DescribeFargateProfileRequest":{
"type":"structure",
"required":[
"clusterName",
"fargateProfileName"
],
"members":{
"clusterName":{
"shape":"String",
"documentation":"<p>The name of the Amazon EKS cluster associated with the Fargate profile.</p>",
"location":"uri",
"locationName":"name"
},
"fargateProfileName":{
"shape":"String",
"documentation":"<p>The name of the Fargate profile to describe.</p>",
"location":"uri",
"locationName":"fargateProfileName"
}
}
},
"DescribeFargateProfileResponse":{
"type":"structure",
"members":{
"fargateProfile":{
"shape":"FargateProfile",
"documentation":"<p>The full description of your Fargate profile.</p>"
}
}
},
"DescribeIdentityProviderConfigRequest":{
"type":"structure",
"required":[
"clusterName",
"identityProviderConfig"
],
"members":{
"clusterName":{
"shape":"String",
"documentation":"<p>The cluster name that the identity provider configuration is associated to.</p>",
"location":"uri",
"locationName":"name"
},
"identityProviderConfig":{
"shape":"IdentityProviderConfig",
"documentation":"<p>An object representing an identity provider configuration.</p>"
}
}
},
"DescribeIdentityProviderConfigResponse":{
"type":"structure",
"members":{
"identityProviderConfig":{
"shape":"IdentityProviderConfigResponse",
"documentation":"<p>The object that represents an OpenID Connect (OIDC) identity provider configuration.</p>"
}
}
},
"DescribeNodegroupRequest":{
"type":"structure",
"required":[
"clusterName",
"nodegroupName"
],
"members":{
"clusterName":{
"shape":"String",
"documentation":"<p>The name of the Amazon EKS cluster associated with the node group.</p>",
"location":"uri",
"locationName":"name"
},
"nodegroupName":{
"shape":"String",
"documentation":"<p>The name of the node group to describe.</p>",
"location":"uri",
"locationName":"nodegroupName"
}
}
},
"DescribeNodegroupResponse":{
"type":"structure",
"members":{
"nodegroup":{
"shape":"Nodegroup",
"documentation":"<p>The full description of your node group.</p>"
}
}
},
"DescribeUpdateRequest":{
"type":"structure",
"required":[
"name",
"updateId"
],
"members":{
"name":{
"shape":"String",
"documentation":"<p>The name of the Amazon EKS cluster associated with the update.</p>",
"location":"uri",
"locationName":"name"
},
"updateId":{
"shape":"String",
"documentation":"<p>The ID of the update to describe.</p>",
"location":"uri",
"locationName":"updateId"
},
"nodegroupName":{
"shape":"String",
"documentation":"<p>The name of the Amazon EKS node group associated with the update. This parameter is required if the update is a node group update.</p>",
"location":"querystring",
"locationName":"nodegroupName"
},
"addonName":{
"shape":"String",
"documentation":"<p>The name of the add-on. The name must match one of the names returned by <a href=\"https://docs.aws.amazon.com/eks/latest/APIReference/API_ListAddons.html\"> <code>ListAddons</code> </a>. This parameter is required if the update is an add-on update.</p>",
"location":"querystring",
"locationName":"addonName"
}
}
},
"DescribeUpdateResponse":{
"type":"structure",
"members":{
"update":{
"shape":"Update",
"documentation":"<p>The full description of the specified update.</p>"
}
}
},
"DisassociateIdentityProviderConfigRequest":{
"type":"structure",
"required":[
"clusterName",
"identityProviderConfig"
],
"members":{
"clusterName":{
"shape":"String",
"documentation":"<p>The name of the cluster to disassociate an identity provider from.</p>",
"location":"uri",
"locationName":"name"
},
"identityProviderConfig":{
"shape":"IdentityProviderConfig",
"documentation":"<p>An object representing an identity provider configuration.</p>"
},
"clientRequestToken":{
"shape":"String",
"documentation":"<p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>",
"idempotencyToken":true
}
}
},
"DisassociateIdentityProviderConfigResponse":{
"type":"structure",
"members":{
"update":{"shape":"Update"}
}
},
"EncryptionConfig":{
"type":"structure",
"members":{
"resources":{
"shape":"StringList",
"documentation":"<p>Specifies the resources to be encrypted. The only supported value is \"secrets\".</p>"
},
"provider":{
"shape":"Provider",
"documentation":"<p>Key Management Service (KMS) key. Either the ARN or the alias can be used.</p>"
}
},
"documentation":"<p>The encryption configuration for the cluster.</p>"
},
"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",
"UnsupportedAddonModification",
"K8sResourceNotFound"
]
},
"ErrorDetail":{
"type":"structure",
"members":{
"errorCode":{
"shape":"ErrorCode",
"documentation":"<p>A brief description of the error. </p> <ul> <li> <p> <b>SubnetNotFound</b>: We couldn't find one of the subnets associated with the cluster.</p> </li> <li> <p> <b>SecurityGroupNotFound</b>: We couldn't find one of the security groups associated with the cluster.</p> </li> <li> <p> <b>EniLimitReached</b>: You have reached the elastic network interface limit for your account.</p> </li> <li> <p> <b>IpNotAvailable</b>: A subnet associated with the cluster doesn't have any free IP addresses.</p> </li> <li> <p> <b>AccessDenied</b>: You don't have permissions to perform the specified operation.</p> </li> <li> <p> <b>OperationNotPermitted</b>: The service role associated with the cluster doesn't have the required access permissions for Amazon EKS.</p> </li> <li> <p> <b>VpcIdNotFound</b>: We couldn't find the VPC associated with the cluster.</p> </li> </ul>"
},
"errorMessage":{
"shape":"String",
"documentation":"<p>A more complete description of the error.</p>"
},
"resourceIds":{
"shape":"StringList",
"documentation":"<p>An optional field that contains the resource IDs associated with the error.</p>"
}
},
"documentation":"<p>An object representing an error when an asynchronous operation fails.</p>"
},
"ErrorDetails":{
"type":"list",
"member":{"shape":"ErrorDetail"}
},
"FargateProfile":{
"type":"structure",
"members":{
"fargateProfileName":{
"shape":"String",
"documentation":"<p>The name of the Fargate profile.</p>"
},
"fargateProfileArn":{
"shape":"String",
"documentation":"<p>The full Amazon Resource Name (ARN) of the Fargate profile.</p>"
},
"clusterName":{
"shape":"String",
"documentation":"<p>The name of the Amazon EKS cluster that the Fargate profile belongs to.</p>"
},
"createdAt":{
"shape":"Timestamp",
"documentation":"<p>The Unix epoch timestamp in seconds for when the Fargate profile was created.</p>"
},
"podExecutionRoleArn":{
"shape":"String",
"documentation":"<p>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 <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/pod-execution-role.html\">Pod Execution Role</a> in the <i>Amazon EKS User Guide</i>.</p>"
},
"subnets":{
"shape":"StringList",
"documentation":"<p>The IDs of subnets to launch pods into.</p>"
},
"selectors":{
"shape":"FargateProfileSelectors",
"documentation":"<p>The selectors to match for pods to use this Fargate profile.</p>"
},
"status":{
"shape":"FargateProfileStatus",
"documentation":"<p>The current status of the Fargate profile.</p>"
},
"tags":{
"shape":"TagMap",
"documentation":"<p>The metadata applied to the Fargate profile to assist with categorization and organization. Each tag consists of a key and an optional value. You define both. Fargate profile tags do not propagate to any other resources associated with the Fargate profile, such as the pods that are scheduled with it.</p>"
}
},
"documentation":"<p>An object representing an Fargate profile.</p>"
},
"FargateProfileLabel":{
"type":"map",
"key":{"shape":"String"},
"value":{"shape":"String"}
},
"FargateProfileSelector":{
"type":"structure",
"members":{
"namespace":{
"shape":"String",
"documentation":"<p>The Kubernetes namespace that the selector should match.</p>"
},
"labels":{
"shape":"FargateProfileLabel",
"documentation":"<p>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.</p>"
}
},
"documentation":"<p>An object representing an Fargate profile selector.</p>"
},
"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":"<p>An object representing the <a href=\"https://openid.net/connect/\">OpenID Connect</a> identity provider information.</p>"
}
},
"documentation":"<p>An object representing an identity provider.</p>"
},
"IdentityProviderConfig":{
"type":"structure",
"required":[
"type",
"name"
],
"members":{
"type":{
"shape":"String",
"documentation":"<p>The type of the identity provider configuration. The only type available is <code>oidc</code>.</p>"
},
"name":{
"shape":"String",
"documentation":"<p>The name of the identity provider configuration.</p>"
}
},
"documentation":"<p>An object representing an identity provider configuration.</p>"
},
"IdentityProviderConfigResponse":{
"type":"structure",
"members":{
"oidc":{
"shape":"OidcIdentityProviderConfig",
"documentation":"<p>An object representing an OpenID Connect (OIDC) identity provider configuration.</p>"
}
},
"documentation":"<p>The full description of your identity configuration.</p>"
},
"IdentityProviderConfigs":{
"type":"list",
"member":{"shape":"IdentityProviderConfig"}
},
"IncludeClustersList":{
"type":"list",
"member":{"shape":"String"}
},
"InvalidParameterException":{
"type":"structure",
"members":{
"clusterName":{
"shape":"String",
"documentation":"<p>The Amazon EKS cluster associated with the exception.</p>"
},
"nodegroupName":{
"shape":"String",
"documentation":"<p>The Amazon EKS managed node group associated with the exception.</p>"
},
"fargateProfileName":{
"shape":"String",
"documentation":"<p>The Fargate profile associated with the exception.</p>"
},
"addonName":{"shape":"String"},
"message":{"shape":"String"}
},
"documentation":"<p>The specified parameter is invalid. Review the available parameters for the API request.</p>",
"error":{"httpStatusCode":400},
"exception":true
},
"InvalidRequestException":{
"type":"structure",
"members":{
"clusterName":{
"shape":"String",
"documentation":"<p>The Amazon EKS cluster associated with the exception.</p>"
},
"nodegroupName":{
"shape":"String",
"documentation":"<p>The Amazon EKS managed node group associated with the exception.</p>"
},
"addonName":{"shape":"String"},
"message":{"shape":"String"}
},
"documentation":"<p>The request is invalid given the state of the cluster. Check the state of the cluster and the associated operations.</p>",
"error":{"httpStatusCode":400},
"exception":true
},
"IpFamily":{
"type":"string",
"enum":[
"ipv4",
"ipv6"
]
},
"Issue":{
"type":"structure",
"members":{
"code":{
"shape":"NodegroupIssueCode",
"documentation":"<p>A brief description of the error.</p> <ul> <li> <p> <b>AccessDenied</b>: Amazon EKS or one or more of your managed nodes is failing to authenticate or authorize with your Kubernetes cluster API server.</p> </li> <li> <p> <b>AsgInstanceLaunchFailures</b>: Your Auto Scaling group is experiencing failures while attempting to launch instances.</p> </li> <li> <p> <b>AutoScalingGroupNotFound</b>: We couldn't find the Auto Scaling group associated with the managed node group. You may be able to recreate an Auto Scaling group with the same settings to recover.</p> </li> <li> <p> <b>ClusterUnreachable</b>: Amazon EKS or one or more of your managed nodes is unable to to communicate with your Kubernetes cluster API server. This can happen if there are network disruptions or if API servers are timing out processing requests. </p> </li> <li> <p> <b>Ec2LaunchTemplateNotFound</b>: We couldn't find the Amazon EC2 launch template for your managed node group. You may be able to recreate a launch template with the same settings to recover.</p> </li> <li> <p> <b>Ec2LaunchTemplateVersionMismatch</b>: The Amazon EC2 launch template version for your managed node group does not match the version that Amazon EKS created. You may be able to revert to the version that Amazon EKS created to recover.</p> </li> <li> <p> <b>Ec2SecurityGroupDeletionFailure</b>: We could not delete the remote access security group for your managed node group. Remove any dependencies from the security group.</p> </li> <li> <p> <b>Ec2SecurityGroupNotFound</b>: We couldn't find the cluster security group for the cluster. You must recreate your cluster.</p> </li> <li> <p> <b>Ec2SubnetInvalidConfiguration</b>: One or more Amazon EC2 subnets specified for a node group do not automatically assign public IP addresses to instances launched into it. If you want your instances to be assigned a public IP address, then you need to enable the <code>auto-assign public IP address</code> setting for the subnet. See <a href=\"https://docs.aws.amazon.com/vpc/latest/userguide/vpc-ip-addressing.html#subnet-public-ip\">Modifying the public IPv4 addressing attribute for your subnet</a> in the <i>Amazon VPC User Guide</i>.</p> </li> <li> <p> <b>IamInstanceProfileNotFound</b>: We couldn't find the IAM instance profile for your managed node group. You may be able to recreate an instance profile with the same settings to recover.</p> </li> <li> <p> <b>IamNodeRoleNotFound</b>: We couldn't find the IAM role for your managed node group. You may be able to recreate an IAM role with the same settings to recover.</p> </li> <li> <p> <b>InstanceLimitExceeded</b>: Your Amazon Web Services account is unable to launch any more instances of the specified instance type. You may be able to request an Amazon EC2 instance limit increase to recover.</p> </li> <li> <p> <b>InsufficientFreeAddresses</b>: One or more of the subnets associated with your managed node group does not have enough available IP addresses for new nodes.</p> </li> <li> <p> <b>InternalFailure</b>: These errors are usually caused by an Amazon EKS server-side issue.</p> </li> <li> <p> <b>NodeCreationFailure</b>: Your launched instances are unable to register with your Amazon EKS cluster. Common causes of this failure are insufficient <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/create-node-role.html\">node IAM role</a> permissions or lack of outbound internet access for the nodes. </p> </li> </ul>"
},
"message":{
"shape":"String",
"documentation":"<p>The error message associated with the issue.</p>"
},
"resourceIds":{
"shape":"StringList",
"documentation":"<p>The Amazon Web Services resources that are afflicted by this issue.</p>"
}
},
"documentation":"<p>An object representing an issue with an Amazon EKS resource.</p>"
},
"IssueList":{
"type":"list",
"member":{"shape":"Issue"}
},
"KubernetesNetworkConfigRequest":{
"type":"structure",
"members":{
"serviceIpv4Cidr":{
"shape":"String",
"documentation":"<p>Don't specify a value if you select <code>ipv6</code> for <b>ipFamily</b>. The CIDR block to assign Kubernetes service IP addresses from. If you don't specify a block, Kubernetes assigns addresses from either the <code>10.100.0.0/16</code> or <code>172.20.0.0/16</code> 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:</p> <ul> <li> <p>Within one of the following private IP address blocks: <code>10.0.0.0/8</code>, <code>172.16.0.0/12</code>, or <code>192.168.0.0/16</code>.</p> </li> <li> <p>Doesn't overlap with any CIDR block assigned to the VPC that you selected for VPC.</p> </li> <li> <p>Between /24 and /12.</p> </li> </ul> <important> <p>You can only specify a custom CIDR block when you create a cluster and can't change this value once the cluster is created.</p> </important>"
},
"ipFamily":{
"shape":"IpFamily",
"documentation":"<p>Specify which IP family is used to assign Kubernetes pod and service IP addresses. If you don't specify a value, <code>ipv4</code> is used by default. You can only specify an IP family when you create a cluster and can't change this value once the cluster is created. If you specify <code>ipv6</code>, the VPC and subnets that you specify for cluster creation must have both <code>IPv4</code> and <code>IPv6</code> CIDR blocks assigned to them. You can't specify <code>ipv6</code> for clusters in China Regions.</p> <p>You can only specify <code>ipv6</code> for <code>1.21</code> and later clusters that use version <code>1.10.1</code> or later of the Amazon VPC CNI add-on. If you specify <code>ipv6</code>, then ensure that your VPC meets the requirements listed in the considerations listed in <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/cni-ipv6.html\">Assigning IPv6 addresses to pods and services</a> in the Amazon EKS User Guide. Kubernetes assigns services <code>IPv6</code> addresses from the unique local address range <code>(fc00::/7)</code>. You can't specify a custom <code>IPv6</code> CIDR block. Pod addresses are assigned from the subnet's <code>IPv6</code> CIDR.</p>"
}
},
"documentation":"<p>The Kubernetes network configuration for the cluster.</p>"
},
"KubernetesNetworkConfigResponse":{
"type":"structure",
"members":{
"serviceIpv4Cidr":{
"shape":"String",
"documentation":"<p>The CIDR block that Kubernetes pod and service IP addresses are assigned from. Kubernetes assigns addresses from an IPv4 CIDR block assigned to a subnet that the node is in. 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 can't be changed.</p>"
},
"serviceIpv6Cidr":{
"shape":"String",
"documentation":"<p>The CIDR block that Kubernetes pod and service IP addresses are assigned from if you created a 1.21 or later cluster with version 1.10.1 or later of the Amazon VPC CNI add-on and specified <code>ipv6</code> for <b>ipFamily</b> when you created the cluster. Kubernetes assigns service addresses from the unique local address range (<code>fc00::/7</code>) because you can't specify a custom IPv6 CIDR block when you create the cluster.</p>"
},
"ipFamily":{
"shape":"IpFamily",
"documentation":"<p>The IP family used to assign Kubernetes pod and service IP addresses. The IP family is always <code>ipv4</code>, unless you have a <code>1.21</code> or later cluster running version 1.10.1 or later of the Amazon VPC CNI add-on and specified <code>ipv6</code> when you created the cluster. </p>"
}
},
"documentation":"<p>The Kubernetes network configuration for the cluster. The response contains a value for <b>serviceIpv6Cidr</b> or <b>serviceIpv4Cidr</b>, but not both. </p>"
},
"LaunchTemplateSpecification":{
"type":"structure",
"members":{
"name":{
"shape":"String",
"documentation":"<p>The name of the launch template.</p> <p>You must specify either the launch template name or the launch template ID in the request, but not both.</p>"
},
"version":{
"shape":"String",
"documentation":"<p>The version number of the launch template to use. If no version is specified, then the template's default version is used.</p>"
},
"id":{
"shape":"String",
"documentation":"<p>The ID of the launch template.</p> <p>You must specify either the launch template ID or the launch template name in the request, but not both.</p>"
}
},
"documentation":"<p>An object representing a node group launch template specification. The launch template can't include <a href=\"https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateNetworkInterface.html\"> <code>SubnetId</code> </a>, <a href=\"https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_IamInstanceProfile.html\"> <code>IamInstanceProfile</code> </a>, <a href=\"https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RequestSpotInstances.html\"> <code>RequestSpotInstances</code> </a>, <a href=\"https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_HibernationOptionsRequest.html\"> <code>HibernationOptions</code> </a>, or <a href=\"https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_TerminateInstances.html\"> <code>TerminateInstances</code> </a>, or the node group deployment or update will fail. For more information about launch templates, see <a href=\"https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateLaunchTemplate.html\"> <code>CreateLaunchTemplate</code> </a> in the Amazon EC2 API Reference. For more information about using launch templates with Amazon EKS, see <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html\">Launch template support</a> in the <i>Amazon EKS User Guide</i>.</p> <p>You must specify either the launch template ID or the launch template name in the request, but not both.</p>"
},
"ListAddonsRequest":{
"type":"structure",
"required":["clusterName"],
"members":{
"clusterName":{
"shape":"ClusterName",
"documentation":"<p>The name of the cluster.</p>",
"location":"uri",
"locationName":"name"
},
"maxResults":{
"shape":"ListAddonsRequestMaxResults",
"documentation":"<p>The maximum number of add-on results returned by <code>ListAddonsRequest</code> in paginated output. When you use this parameter, <code>ListAddonsRequest</code> returns only <code>maxResults</code> results in a single page along with a <code>nextToken</code> response element. You can see the remaining results of the initial request by sending another <code>ListAddonsRequest</code> request with the returned <code>nextToken</code> value. This value can be between 1 and 100. If you don't use this parameter, <code>ListAddonsRequest</code> returns up to 100 results and a <code>nextToken</code> value, if applicable.</p>",
"location":"querystring",
"locationName":"maxResults"
},
"nextToken":{
"shape":"String",
"documentation":"<p>The <code>nextToken</code> value returned from a previous paginated <code>ListAddonsRequest</code> where <code>maxResults</code> was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the <code>nextToken</code> value.</p> <note> <p>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.</p> </note>",
"location":"querystring",
"locationName":"nextToken"
}
}
},
"ListAddonsRequestMaxResults":{
"type":"integer",
"box":true,
"max":100,
"min":1
},
"ListAddonsResponse":{
"type":"structure",
"members":{
"addons":{
"shape":"StringList",
"documentation":"<p>A list of available add-ons.</p>"
},
"nextToken":{
"shape":"String",
"documentation":"<p>The <code>nextToken</code> value returned from a previous paginated <code>ListAddonsResponse</code> where <code>maxResults</code> was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the <code>nextToken</code> value.</p> <note> <p>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.</p> </note>"
}
}
},
"ListClustersRequest":{
"type":"structure",
"members":{
"maxResults":{
"shape":"ListClustersRequestMaxResults",
"documentation":"<p>The maximum number of cluster results returned by <code>ListClusters</code> in paginated output. When you use this parameter, <code>ListClusters</code> returns only <code>maxResults</code> results in a single page along with a <code>nextToken</code> response element. You can see the remaining results of the initial request by sending another <code>ListClusters</code> request with the returned <code>nextToken</code> value. This value can be between 1 and 100. If you don't use this parameter, <code>ListClusters</code> returns up to 100 results and a <code>nextToken</code> value if applicable.</p>",
"location":"querystring",
"locationName":"maxResults"
},
"nextToken":{
"shape":"String",
"documentation":"<p>The <code>nextToken</code> value returned from a previous paginated <code>ListClusters</code> request where <code>maxResults</code> was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the <code>nextToken</code> value.</p> <note> <p>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.</p> </note>",
"location":"querystring",
"locationName":"nextToken"
},
"include":{
"shape":"IncludeClustersList",
"documentation":"<p>Indicates whether external clusters are included in the returned list. Use '<code>all</code>' to return connected clusters, or blank to return only Amazon EKS clusters. '<code>all</code>' must be in lowercase otherwise an error occurs.</p>",
"location":"querystring",
"locationName":"include"
}
}
},
"ListClustersRequestMaxResults":{
"type":"integer",
"box":true,
"max":100,
"min":1
},
"ListClustersResponse":{
"type":"structure",
"members":{
"clusters":{
"shape":"StringList",
"documentation":"<p>A list of all of the clusters for your account in the specified Region.</p>"
},
"nextToken":{
"shape":"String",
"documentation":"<p>The <code>nextToken</code> value to include in a future <code>ListClusters</code> request. When the results of a <code>ListClusters</code> request exceed <code>maxResults</code>, you can use this value to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>"
}
}
},
"ListFargateProfilesRequest":{
"type":"structure",
"required":["clusterName"],
"members":{
"clusterName":{
"shape":"String",
"documentation":"<p>The name of the Amazon EKS cluster that you would like to list Fargate profiles in.</p>",
"location":"uri",
"locationName":"name"
},
"maxResults":{
"shape":"FargateProfilesRequestMaxResults",
"documentation":"<p>The maximum number of Fargate profile results returned by <code>ListFargateProfiles</code> in paginated output. When you use this parameter, <code>ListFargateProfiles</code> returns only <code>maxResults</code> results in a single page along with a <code>nextToken</code> response element. You can see the remaining results of the initial request by sending another <code>ListFargateProfiles</code> request with the returned <code>nextToken</code> value. This value can be between 1 and 100. If you don't use this parameter, <code>ListFargateProfiles</code> returns up to 100 results and a <code>nextToken</code> value if applicable.</p>",
"location":"querystring",
"locationName":"maxResults"
},
"nextToken":{
"shape":"String",
"documentation":"<p>The <code>nextToken</code> value returned from a previous paginated <code>ListFargateProfiles</code> request where <code>maxResults</code> was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the <code>nextToken</code> value.</p>",
"location":"querystring",
"locationName":"nextToken"
}
}
},
"ListFargateProfilesResponse":{
"type":"structure",
"members":{
"fargateProfileNames":{
"shape":"StringList",
"documentation":"<p>A list of all of the Fargate profiles associated with the specified cluster.</p>"
},
"nextToken":{
"shape":"String",
"documentation":"<p>The <code>nextToken</code> value to include in a future <code>ListFargateProfiles</code> request. When the results of a <code>ListFargateProfiles</code> request exceed <code>maxResults</code>, you can use this value to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>"
}
}
},
"ListIdentityProviderConfigsRequest":{
"type":"structure",
"required":["clusterName"],
"members":{
"clusterName":{
"shape":"String",
"documentation":"<p>The cluster name that you want to list identity provider configurations for.</p>",
"location":"uri",
"locationName":"name"
},
"maxResults":{
"shape":"ListIdentityProviderConfigsRequestMaxResults",
"documentation":"<p>The maximum number of identity provider configurations returned by <code>ListIdentityProviderConfigs</code> in paginated output. When you use this parameter, <code>ListIdentityProviderConfigs</code> returns only <code>maxResults</code> results in a single page along with a <code>nextToken</code> response element. You can see the remaining results of the initial request by sending another <code>ListIdentityProviderConfigs</code> request with the returned <code>nextToken</code> value. This value can be between 1 and 100. If you don't use this parameter, <code>ListIdentityProviderConfigs</code> returns up to 100 results and a <code>nextToken</code> value, if applicable.</p>",
"location":"querystring",
"locationName":"maxResults"
},
"nextToken":{
"shape":"String",
"documentation":"<p>The <code>nextToken</code> value returned from a previous paginated <code>IdentityProviderConfigsRequest</code> where <code>maxResults</code> was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the <code>nextToken</code> value.</p>",
"location":"querystring",
"locationName":"nextToken"
}
}
},
"ListIdentityProviderConfigsRequestMaxResults":{
"type":"integer",
"box":true,
"max":100,
"min":1
},
"ListIdentityProviderConfigsResponse":{
"type":"structure",
"members":{
"identityProviderConfigs":{
"shape":"IdentityProviderConfigs",
"documentation":"<p>The identity provider configurations for the cluster.</p>"
},
"nextToken":{
"shape":"String",
"documentation":"<p>The <code>nextToken</code> value returned from a previous paginated <code>ListIdentityProviderConfigsResponse</code> where <code>maxResults</code> was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the <code>nextToken</code> value.</p>"
}
}
},
"ListNodegroupsRequest":{
"type":"structure",
"required":["clusterName"],
"members":{
"clusterName":{
"shape":"String",
"documentation":"<p>The name of the Amazon EKS cluster that you would like to list node groups in.</p>",
"location":"uri",
"locationName":"name"
},
"maxResults":{
"shape":"ListNodegroupsRequestMaxResults",
"documentation":"<p>The maximum number of node group results returned by <code>ListNodegroups</code> in paginated output. When you use this parameter, <code>ListNodegroups</code> returns only <code>maxResults</code> results in a single page along with a <code>nextToken</code> response element. You can see the remaining results of the initial request by sending another <code>ListNodegroups</code> request with the returned <code>nextToken</code> value. This value can be between 1 and 100. If you don't use this parameter, <code>ListNodegroups</code> returns up to 100 results and a <code>nextToken</code> value if applicable.</p>",
"location":"querystring",
"locationName":"maxResults"
},
"nextToken":{
"shape":"String",
"documentation":"<p>The <code>nextToken</code> value returned from a previous paginated <code>ListNodegroups</code> request where <code>maxResults</code> was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the <code>nextToken</code> value.</p>",
"location":"querystring",
"locationName":"nextToken"
}
}
},
"ListNodegroupsRequestMaxResults":{
"type":"integer",
"box":true,
"max":100,
"min":1
},
"ListNodegroupsResponse":{
"type":"structure",
"members":{
"nodegroups":{
"shape":"StringList",
"documentation":"<p>A list of all of the node groups associated with the specified cluster.</p>"
},
"nextToken":{
"shape":"String",
"documentation":"<p>The <code>nextToken</code> value to include in a future <code>ListNodegroups</code> request. When the results of a <code>ListNodegroups</code> request exceed <code>maxResults</code>, you can use this value to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>"
}
}
},
"ListTagsForResourceRequest":{
"type":"structure",
"required":["resourceArn"],
"members":{
"resourceArn":{
"shape":"String",
"documentation":"<p>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.</p>",
"location":"uri",
"locationName":"resourceArn"
}
}
},
"ListTagsForResourceResponse":{
"type":"structure",
"members":{
"tags":{
"shape":"TagMap",
"documentation":"<p>The tags for the resource.</p>"
}
}
},
"ListUpdatesRequest":{
"type":"structure",
"required":["name"],
"members":{
"name":{
"shape":"String",
"documentation":"<p>The name of the Amazon EKS cluster to list updates for.</p>",
"location":"uri",
"locationName":"name"
},
"nodegroupName":{
"shape":"String",
"documentation":"<p>The name of the Amazon EKS managed node group to list updates for.</p>",
"location":"querystring",
"locationName":"nodegroupName"
},
"addonName":{
"shape":"String",
"documentation":"<p>The names of the installed add-ons that have available updates.</p>",
"location":"querystring",
"locationName":"addonName"
},
"nextToken":{
"shape":"String",
"documentation":"<p>The <code>nextToken</code> value returned from a previous paginated <code>ListUpdates</code> request where <code>maxResults</code> was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the <code>nextToken</code> value.</p>",
"location":"querystring",
"locationName":"nextToken"
},
"maxResults":{
"shape":"ListUpdatesRequestMaxResults",
"documentation":"<p>The maximum number of update results returned by <code>ListUpdates</code> in paginated output. When you use this parameter, <code>ListUpdates</code> returns only <code>maxResults</code> results in a single page along with a <code>nextToken</code> response element. You can see the remaining results of the initial request by sending another <code>ListUpdates</code> request with the returned <code>nextToken</code> value. This value can be between 1 and 100. If you don't use this parameter, <code>ListUpdates</code> returns up to 100 results and a <code>nextToken</code> value if applicable.</p>",
"location":"querystring",
"locationName":"maxResults"
}
}
},
"ListUpdatesRequestMaxResults":{
"type":"integer",
"box":true,
"max":100,
"min":1
},
"ListUpdatesResponse":{
"type":"structure",
"members":{
"updateIds":{
"shape":"StringList",
"documentation":"<p>A list of all the updates for the specified cluster and Region.</p>"
},
"nextToken":{
"shape":"String",
"documentation":"<p>The <code>nextToken</code> value to include in a future <code>ListUpdates</code> request. When the results of a <code>ListUpdates</code> request exceed <code>maxResults</code>, you can use this value to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>"
}
}
},
"LogSetup":{
"type":"structure",
"members":{
"types":{
"shape":"LogTypes",
"documentation":"<p>The available cluster control plane log types.</p>"
},
"enabled":{
"shape":"BoxedBoolean",
"documentation":"<p>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.</p>"
}
},
"documentation":"<p>An object representing the enabled or disabled Kubernetes control plane logs for your cluster.</p>"
},
"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":"<p>The cluster control plane logging configuration for your cluster.</p>"
}
},
"documentation":"<p>An object representing the logging configuration for resources in your cluster.</p>"
},
"MarketplaceInformation":{
"type":"structure",
"members":{
"productId":{
"shape":"String",
"documentation":"<p>The product ID from the Amazon Web Services Marketplace.</p>"
},
"productUrl":{
"shape":"String",
"documentation":"<p>The product URL from the Amazon Web Services Marketplace.</p>"
}
},
"documentation":"<p>Information about an Amazon EKS add-on from the Amazon Web Services Marketplace.</p>"
},
"Nodegroup":{
"type":"structure",
"members":{
"nodegroupName":{
"shape":"String",
"documentation":"<p>The name associated with an Amazon EKS managed node group.</p>"
},
"nodegroupArn":{
"shape":"String",
"documentation":"<p>The Amazon Resource Name (ARN) associated with the managed node group.</p>"
},
"clusterName":{
"shape":"String",
"documentation":"<p>The name of the cluster that the managed node group resides in.</p>"
},
"version":{
"shape":"String",
"documentation":"<p>The Kubernetes version of the managed node group.</p>"
},
"releaseVersion":{
"shape":"String",
"documentation":"<p>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.</p>"
},
"createdAt":{
"shape":"Timestamp",
"documentation":"<p>The Unix epoch timestamp in seconds for when the managed node group was created.</p>"
},
"modifiedAt":{
"shape":"Timestamp",
"documentation":"<p>The Unix epoch timestamp in seconds for when the managed node group was last modified.</p>"
},
"status":{
"shape":"NodegroupStatus",
"documentation":"<p>The current status of the managed node group.</p>"
},
"capacityType":{
"shape":"CapacityTypes",
"documentation":"<p>The capacity type of your managed node group.</p>"
},
"scalingConfig":{
"shape":"NodegroupScalingConfig",
"documentation":"<p>The scaling configuration details for the Auto Scaling group that is associated with your node group.</p>"
},
"instanceTypes":{
"shape":"StringList",
"documentation":"<p>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 <code>null</code>.</p>"
},
"subnets":{
"shape":"StringList",
"documentation":"<p>The subnets that were specified for the Auto Scaling group that is associated with your node group.</p>"
},
"remoteAccess":{
"shape":"RemoteAccessConfig",
"documentation":"<p>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 <code>null</code>.</p>"
},
"amiType":{
"shape":"AMITypes",
"documentation":"<p>If the node group was deployed using a launch template with a custom AMI, then this is <code>CUSTOM</code>. For node groups that weren't deployed using a launch template, this is the AMI type that was specified in the node group configuration.</p>"
},
"nodeRole":{
"shape":"String",
"documentation":"<p>The IAM role associated with your node group. The Amazon EKS node <code>kubelet</code> daemon makes calls to Amazon Web Services APIs on your behalf. Nodes receive permissions for these API calls through an IAM instance profile and associated policies.</p>"
},
"labels":{
"shape":"labelsMap",
"documentation":"<p>The Kubernetes labels applied to the nodes in the node group.</p> <note> <p>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.</p> </note>"
},
"taints":{
"shape":"taintsList",
"documentation":"<p>The Kubernetes taints to be applied to the nodes in the node group when they are created. Effect is one of <code>No_Schedule</code>, <code>Prefer_No_Schedule</code>, or <code>No_Execute</code>. Kubernetes taints can be used together with tolerations to control how workloads are scheduled to your nodes. For more information, see <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html\">Node taints on managed node groups</a>.</p>"
},
"resources":{
"shape":"NodegroupResources",
"documentation":"<p>The resources associated with the node group, such as Auto Scaling groups and security groups for remote access.</p>"
},
"diskSize":{
"shape":"BoxedInteger",
"documentation":"<p>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 <code>null</code>.</p>"
},
"health":{
"shape":"NodegroupHealth",
"documentation":"<p>The health status of the node group. If there are issues with your node group's health, they are listed here.</p>"
},
"updateConfig":{
"shape":"NodegroupUpdateConfig",
"documentation":"<p>The node group update configuration.</p>"
},
"launchTemplate":{
"shape":"LaunchTemplateSpecification",
"documentation":"<p>If a launch template was used to create the node group, then this is the launch template that was used.</p>"
},
"tags":{
"shape":"TagMap",
"documentation":"<p>The metadata applied to the node group to assist with categorization and organization. Each tag consists of a key and an optional value. You define both. Node group tags do not propagate to any other resources associated with the node group, such as the Amazon EC2 instances or subnets. </p>"
}
},
"documentation":"<p>An object representing an Amazon EKS managed node group.</p>"
},
"NodegroupHealth":{
"type":"structure",
"members":{
"issues":{
"shape":"IssueList",
"documentation":"<p>Any issues that are associated with the node group. </p>"
}
},
"documentation":"<p>An object representing the health status of the node group.</p>"
},
"NodegroupIssueCode":{
"type":"string",
"enum":[
"AutoScalingGroupNotFound",
"AutoScalingGroupInvalidConfiguration",
"Ec2SecurityGroupNotFound",
"Ec2SecurityGroupDeletionFailure",
"Ec2LaunchTemplateNotFound",
"Ec2LaunchTemplateVersionMismatch",
"Ec2SubnetNotFound",
"Ec2SubnetInvalidConfiguration",
"IamInstanceProfileNotFound",
"IamLimitExceeded",
"IamNodeRoleNotFound",
"NodeCreationFailure",
"AsgInstanceLaunchFailures",
"InstanceLimitExceeded",
"InsufficientFreeAddresses",
"AccessDenied",
"InternalFailure",
"ClusterUnreachable",
"Ec2SubnetMissingIpv6Assignment"
]
},
"NodegroupResources":{
"type":"structure",
"members":{
"autoScalingGroups":{
"shape":"AutoScalingGroupList",
"documentation":"<p>The Auto Scaling groups associated with the node group.</p>"
},
"remoteAccessSecurityGroup":{
"shape":"String",
"documentation":"<p>The remote access security group associated with the node group. This security group controls SSH access to the nodes.</p>"
}
},
"documentation":"<p>An object representing the resources associated with the node group, such as Auto Scaling groups and security groups for remote access.</p>"
},
"NodegroupScalingConfig":{
"type":"structure",
"members":{
"minSize":{
"shape":"ZeroCapacity",
"documentation":"<p>The minimum number of nodes that the managed node group can scale in to.</p>"
},
"maxSize":{
"shape":"Capacity",
"documentation":"<p>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 <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/service-quotas.html\">Amazon EKS service quotas</a> in the <i>Amazon EKS User Guide</i>.</p>"
},
"desiredSize":{
"shape":"ZeroCapacity",
"documentation":"<p>The current number of nodes that the managed node group should maintain.</p> <important> <p>If you use Cluster Autoscaler, you shouldn't change the desiredSize value directly, as this can cause the Cluster Autoscaler to suddenly scale up or scale down.</p> </important> <p>Whenever this parameter changes, the number of worker nodes in the node group is updated to the specified size. If this parameter is given a value that is smaller than the current number of running worker nodes, the necessary number of worker nodes are terminated to match the given value. When using CloudFormation, no action occurs if you remove this parameter from your CFN template.</p> <p>This parameter can be different from minSize in some cases, such as when starting with extra hosts for testing. This parameter can also be different when you want to start with an estimated number of needed hosts, but let Cluster Autoscaler reduce the number if there are too many. When Cluster Autoscaler is used, the desiredSize parameter is altered by Cluster Autoscaler (but can be out-of-date for short periods of time). Cluster Autoscaler doesn't scale a managed node group lower than minSize or higher than maxSize.</p>"
}
},
"documentation":"<p>An object representing the scaling configuration details for the Auto Scaling group that is associated with your node group. When creating a node group, you must specify all or none of the properties. When updating a node group, you can specify any or none of the properties.</p>"
},
"NodegroupStatus":{
"type":"string",
"enum":[
"CREATING",
"ACTIVE",
"UPDATING",
"DELETING",
"CREATE_FAILED",
"DELETE_FAILED",
"DEGRADED"
]
},
"NodegroupUpdateConfig":{
"type":"structure",
"members":{
"maxUnavailable":{
"shape":"NonZeroInteger",
"documentation":"<p>The maximum number of nodes unavailable at once during a version update. Nodes will be updated in parallel. This value or <code>maxUnavailablePercentage</code> is required to have a value.The maximum number is 100.</p>"
},
"maxUnavailablePercentage":{
"shape":"PercentCapacity",
"documentation":"<p>The maximum percentage of nodes unavailable during a version update. This percentage of nodes will be updated in parallel, up to 100 nodes at once. This value or <code>maxUnavailable</code> is required to have a value.</p>"
}
},
"documentation":"<p>The node group update configuration.</p>"
},
"NonZeroInteger":{
"type":"integer",
"box":true,
"min":1
},
"NotFoundException":{
"type":"structure",
"members":{
"message":{"shape":"String"}
},
"documentation":"<p>A service resource associated with the request could not be found. Clients should not retry such requests.</p>",
"error":{"httpStatusCode":404},
"exception":true
},
"OIDC":{
"type":"structure",
"members":{
"issuer":{
"shape":"String",
"documentation":"<p>The issuer URL for the OIDC identity provider.</p>"
}
},
"documentation":"<p>An object representing the <a href=\"https://openid.net/connect/\">OpenID Connect</a> (OIDC) identity provider information for the cluster.</p>"
},
"OidcIdentityProviderConfig":{
"type":"structure",
"members":{
"identityProviderConfigName":{
"shape":"String",
"documentation":"<p>The name of the configuration.</p>"
},
"identityProviderConfigArn":{
"shape":"String",
"documentation":"<p>The ARN of the configuration.</p>"
},
"clusterName":{
"shape":"String",
"documentation":"<p>The cluster that the configuration is associated to.</p>"
},
"issuerUrl":{
"shape":"String",
"documentation":"<p>The URL of the OIDC identity provider that allows the API server to discover public signing keys for verifying tokens.</p>"
},
"clientId":{
"shape":"String",
"documentation":"<p>This is also known as <i>audience</i>. The ID of the client application that makes authentication requests to the OIDC identity provider.</p>"
},
"usernameClaim":{
"shape":"String",
"documentation":"<p>The JSON Web token (JWT) claim that is used as the username.</p>"
},
"usernamePrefix":{
"shape":"String",
"documentation":"<p>The prefix that is prepended to username claims to prevent clashes with existing names. The prefix can't contain <code>system:</code> </p>"
},
"groupsClaim":{
"shape":"String",
"documentation":"<p>The JSON web token (JWT) claim that the provider uses to return your groups.</p>"
},
"groupsPrefix":{
"shape":"String",
"documentation":"<p>The prefix that is prepended to group claims to prevent clashes with existing names (such as <code>system:</code> groups). For example, the value<code> oidc:</code> creates group names like <code>oidc:engineering</code> and <code>oidc:infra</code>. The prefix can't contain <code>system:</code> </p>"
},
"requiredClaims":{
"shape":"requiredClaimsMap",
"documentation":"<p>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.</p>"
},
"tags":{
"shape":"TagMap",
"documentation":"<p>The metadata to apply to the provider configuration to assist with categorization and organization. Each tag consists of a key and an optional value. You define both.</p>"
},
"status":{
"shape":"configStatus",
"documentation":"<p>The status of the OIDC identity provider.</p>"
}
},
"documentation":"<p>An object representing the configuration for an OpenID Connect (OIDC) identity provider. </p>"
},
"OidcIdentityProviderConfigRequest":{
"type":"structure",
"required":[
"identityProviderConfigName",
"issuerUrl",
"clientId"
],
"members":{
"identityProviderConfigName":{
"shape":"String",
"documentation":"<p>The name of the OIDC provider configuration.</p>"
},
"issuerUrl":{
"shape":"String",
"documentation":"<p>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 <code>https://</code> and should correspond to the <code>iss</code> 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 <code>https://server.example.org</code> or <code>https://example.com</code>. This URL should point to the level below <code>.well-known/openid-configuration</code> and must be publicly accessible over the internet.</p>"
},
"clientId":{
"shape":"String",
"documentation":"<p>This is also known as <i>audience</i>. The ID for the client application that makes authentication requests to the OpenID identity provider.</p>"
},
"usernameClaim":{
"shape":"String",
"documentation":"<p>The JSON Web Token (JWT) claim to use as the username. The default is <code>sub</code>, which is expected to be a unique identifier of the end user. You can choose other claims, such as <code>email</code> or <code>name</code>, depending on the OpenID identity provider. Claims other than <code>email</code> are prefixed with the issuer URL to prevent naming clashes with other plug-ins.</p>"
},
"usernamePrefix":{
"shape":"String",
"documentation":"<p>The prefix that is prepended to username claims to prevent clashes with existing names. If you do not provide this field, and <code>username</code> is a value other than <code>email</code>, the prefix defaults to <code>issuerurl#</code>. You can use the value <code>-</code> to disable all prefixing.</p>"
},
"groupsClaim":{
"shape":"String",
"documentation":"<p>The JWT claim that the provider uses to return your groups.</p>"
},
"groupsPrefix":{
"shape":"String",
"documentation":"<p>The prefix that is prepended to group claims to prevent clashes with existing names (such as <code>system:</code> groups). For example, the value<code> oidc:</code> will create group names like <code>oidc:engineering</code> and <code>oidc:infra</code>.</p>"
},
"requiredClaims":{
"shape":"requiredClaimsMap",
"documentation":"<p>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 <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/service-quotas.html\">Amazon EKS service quotas</a> in the <i>Amazon EKS User Guide</i>.</p>"
}
},
"documentation":"<p>An object representing an OpenID Connect (OIDC) configuration. Before associating an OIDC identity provider to your cluster, review the considerations in <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/authenticate-oidc-identity-provider.html\">Authenticating users for your cluster from an OpenID Connect identity provider</a> in the <i>Amazon EKS User Guide</i>.</p>"
},
"OutpostConfigRequest":{
"type":"structure",
"required":[
"outpostArns",
"controlPlaneInstanceType"
],
"members":{
"outpostArns":{
"shape":"StringList",
"documentation":"<p>The ARN of the Outpost that you want to use for your local Amazon EKS cluster on Outposts. Only a single Outpost ARN is supported.</p>"
},
"controlPlaneInstanceType":{
"shape":"String",
"documentation":"<p>The Amazon EC2 instance type that you want to use for your local Amazon EKS cluster on Outposts. Choose an instance type based on the number of nodes that your cluster will have. For more information, see <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/eks-outposts-capacity-considerations.html\">Capacity considerations</a> in the <i>Amazon EKS User Guide</i>.</p> <p>The instance type that you specify is used for all Kubernetes control plane instances. The instance type can't be changed after cluster creation. The control plane is not automatically scaled by Amazon EKS.</p> <p> </p>"
},
"controlPlanePlacement":{
"shape":"ControlPlanePlacementRequest",
"documentation":"<p>An object representing the placement configuration for all the control plane instances of your local Amazon EKS cluster on an Amazon Web Services Outpost. For more information, see <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/eks-outposts-capacity-considerations.html\">Capacity considerations</a> in the <i>Amazon EKS User Guide</i>.</p>"
}
},
"documentation":"<p>The configuration of your local Amazon EKS cluster on an Amazon Web Services Outpost. Before creating a cluster on an Outpost, review <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/eks-outposts-local-cluster-create.html\">Creating a local cluster on an Outpost</a> in the <i>Amazon EKS User Guide</i>. This API isn't available for Amazon EKS clusters on the Amazon Web Services cloud.</p>"
},
"OutpostConfigResponse":{
"type":"structure",
"required":[
"outpostArns",
"controlPlaneInstanceType"
],
"members":{
"outpostArns":{
"shape":"StringList",
"documentation":"<p>The ARN of the Outpost that you specified for use with your local Amazon EKS cluster on Outposts.</p>"
},
"controlPlaneInstanceType":{
"shape":"String",
"documentation":"<p>The Amazon EC2 instance type used for the control plane. The instance type is the same for all control plane instances.</p>"
},
"controlPlanePlacement":{
"shape":"ControlPlanePlacementResponse",
"documentation":"<p>An object representing the placement configuration for all the control plane instances of your local Amazon EKS cluster on an Amazon Web Services Outpost. For more information, see <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/eks-outposts-capacity-considerations.html\">Capacity considerations</a> in the <i>Amazon EKS User Guide</i>.</p>"
}
},
"documentation":"<p>An object representing the configuration of your local Amazon EKS cluster on an Amazon Web Services Outpost. This API isn't available for Amazon EKS clusters on the Amazon Web Services cloud.</p>"
},
"PercentCapacity":{
"type":"integer",
"box":true,
"max":100,
"min":1
},
"Provider":{
"type":"structure",
"members":{
"keyArn":{
"shape":"String",
"documentation":"<p>Amazon Resource Name (ARN) or alias of the KMS key. The KMS key must be symmetric, created in the same region as the cluster, and if the KMS key was created in a different account, the user must have access to the KMS key. For more information, see <a href=\"https://docs.aws.amazon.com/kms/latest/developerguide/key-policy-modifying-external-accounts.html\">Allowing Users in Other Accounts to Use a KMS key</a> in the <i>Key Management Service Developer Guide</i>.</p>"
}
},
"documentation":"<p>Identifies the Key Management Service (KMS) key used to encrypt the secrets.</p>"
},
"RegisterClusterRequest":{
"type":"structure",
"required":[
"name",
"connectorConfig"
],
"members":{
"name":{
"shape":"ClusterName",
"documentation":"<p>Define a unique name for this cluster for your Region.</p>"
},
"connectorConfig":{
"shape":"ConnectorConfigRequest",
"documentation":"<p>The configuration settings required to connect the Kubernetes cluster to the Amazon EKS control plane.</p>"
},
"clientRequestToken":{
"shape":"String",
"documentation":"<p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>",
"idempotencyToken":true
},
"tags":{
"shape":"TagMap",
"documentation":"<p>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.</p>"
}
}
},
"RegisterClusterResponse":{
"type":"structure",
"members":{
"cluster":{"shape":"Cluster"}
}
},
"RemoteAccessConfig":{
"type":"structure",
"members":{
"ec2SshKey":{
"shape":"String",
"documentation":"<p>The Amazon EC2 SSH key name that provides access for SSH communication with the nodes in the managed node group. For more information, see <a href=\"https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-key-pairs.html\">Amazon EC2 key pairs and Linux instances</a> in the <i>Amazon Elastic Compute Cloud User Guide for Linux Instances</i>.</p>"
},
"sourceSecurityGroups":{
"shape":"StringList",
"documentation":"<p>The security group ids 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 <a href=\"https://docs.aws.amazon.com/vpc/latest/userguide/VPC_SecurityGroups.html\">Security Groups for Your VPC</a> in the <i>Amazon Virtual Private Cloud User Guide</i>.</p>"
}
},
"documentation":"<p>An object representing the remote access configuration for the managed node group.</p>"
},
"ResolveConflicts":{
"type":"string",
"enum":[
"OVERWRITE",
"NONE",
"PRESERVE"
]
},
"ResourceInUseException":{
"type":"structure",
"members":{
"clusterName":{
"shape":"String",
"documentation":"<p>The Amazon EKS cluster associated with the exception.</p>"
},
"nodegroupName":{
"shape":"String",
"documentation":"<p>The Amazon EKS managed node group associated with the exception.</p>"
},
"addonName":{"shape":"String"},
"message":{"shape":"String"}
},
"documentation":"<p>The specified resource is in use.</p>",
"error":{"httpStatusCode":409},
"exception":true
},
"ResourceLimitExceededException":{
"type":"structure",
"members":{
"clusterName":{
"shape":"String",
"documentation":"<p>The Amazon EKS cluster associated with the exception.</p>"
},
"nodegroupName":{
"shape":"String",
"documentation":"<p>The Amazon EKS managed node group associated with the exception.</p>"
},
"message":{"shape":"String"}
},
"documentation":"<p>You have encountered a service limit on the specified resource.</p>",
"error":{"httpStatusCode":400},
"exception":true
},
"ResourceNotFoundException":{
"type":"structure",
"members":{
"clusterName":{
"shape":"String",
"documentation":"<p>The Amazon EKS cluster associated with the exception.</p>"
},
"nodegroupName":{
"shape":"String",
"documentation":"<p>The Amazon EKS managed node group associated with the exception.</p>"
},
"fargateProfileName":{
"shape":"String",
"documentation":"<p>The Fargate profile associated with the exception.</p>"
},
"addonName":{"shape":"String"},
"message":{"shape":"String"}
},
"documentation":"<p>The specified resource could not be found. You can view your available clusters with <a>ListClusters</a>. You can view your available managed node groups with <a>ListNodegroups</a>. Amazon EKS clusters and node groups are Region-specific.</p>",
"error":{"httpStatusCode":404},
"exception":true
},
"ResourcePropagationDelayException":{
"type":"structure",
"members":{
"message":{"shape":"String"}
},
"documentation":"<p>Required resources (such as service-linked roles) were created and are still propagating. Retry later.</p>",
"error":{"httpStatusCode":428},
"exception":true
},
"RoleArn":{
"type":"string",
"max":255,
"min":1
},
"ServerException":{
"type":"structure",
"members":{
"clusterName":{
"shape":"String",
"documentation":"<p>The Amazon EKS cluster associated with the exception.</p>"
},
"nodegroupName":{
"shape":"String",
"documentation":"<p>The Amazon EKS managed node group associated with the exception.</p>"
},
"addonName":{"shape":"String"},
"message":{"shape":"String"}
},
"documentation":"<p>These errors are usually caused by a server-side issue.</p>",
"error":{"httpStatusCode":500},
"exception":true,
"fault":true
},
"ServiceUnavailableException":{
"type":"structure",
"members":{
"message":{"shape":"String"}
},
"documentation":"<p>The service is unavailable. Back off and retry the operation.</p>",
"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":"<p>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.</p>",
"location":"uri",
"locationName":"resourceArn"
},
"tags":{
"shape":"TagMap",
"documentation":"<p>The tags to add to the resource. A tag is an array of key-value pairs.</p>"
}
}
},
"TagResourceResponse":{
"type":"structure",
"members":{
}
},
"TagValue":{
"type":"string",
"max":256
},
"Taint":{
"type":"structure",
"members":{
"key":{
"shape":"taintKey",
"documentation":"<p>The key of the taint.</p>"
},
"value":{
"shape":"taintValue",
"documentation":"<p>The value of the taint.</p>"
},
"effect":{
"shape":"TaintEffect",
"documentation":"<p>The effect of the taint.</p>"
}
},
"documentation":"<p>A property that allows a node to repel a set of pods. For more information, see <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html\">Node taints on managed node groups</a>.</p>"
},
"TaintEffect":{
"type":"string",
"enum":[
"NO_SCHEDULE",
"NO_EXECUTE",
"PREFER_NO_SCHEDULE"
]
},
"Timestamp":{"type":"timestamp"},
"UnsupportedAvailabilityZoneException":{
"type":"structure",
"members":{
"message":{"shape":"String"},
"clusterName":{
"shape":"String",
"documentation":"<p>The Amazon EKS cluster associated with the exception.</p>"
},
"nodegroupName":{
"shape":"String",
"documentation":"<p>The Amazon EKS managed node group associated with the exception.</p>"
},
"validZones":{
"shape":"StringList",
"documentation":"<p>The supported Availability Zones for your account. Choose subnets in these Availability Zones for your cluster.</p>"
}
},
"documentation":"<p>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.</p>",
"error":{"httpStatusCode":400},
"exception":true
},
"UntagResourceRequest":{
"type":"structure",
"required":[
"resourceArn",
"tagKeys"
],
"members":{
"resourceArn":{
"shape":"String",
"documentation":"<p>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.</p>",
"location":"uri",
"locationName":"resourceArn"
},
"tagKeys":{
"shape":"TagKeyList",
"documentation":"<p>The keys of the tags to be removed.</p>",
"location":"querystring",
"locationName":"tagKeys"
}
}
},
"UntagResourceResponse":{
"type":"structure",
"members":{
}
},
"Update":{
"type":"structure",
"members":{
"id":{
"shape":"String",
"documentation":"<p>A UUID that is used to track the update.</p>"
},
"status":{
"shape":"UpdateStatus",
"documentation":"<p>The current status of the update.</p>"
},
"type":{
"shape":"UpdateType",
"documentation":"<p>The type of the update.</p>"
},
"params":{
"shape":"UpdateParams",
"documentation":"<p>A key-value map that contains the parameters associated with the update.</p>"
},
"createdAt":{
"shape":"Timestamp",
"documentation":"<p>The Unix epoch timestamp in seconds for when the update was created.</p>"
},
"errors":{
"shape":"ErrorDetails",
"documentation":"<p>Any errors associated with a <code>Failed</code> update.</p>"
}
},
"documentation":"<p>An object representing an asynchronous update.</p>"
},
"UpdateAddonRequest":{
"type":"structure",
"required":[
"clusterName",
"addonName"
],
"members":{
"clusterName":{
"shape":"ClusterName",
"documentation":"<p>The name of the cluster.</p>",
"location":"uri",
"locationName":"name"
},
"addonName":{
"shape":"String",
"documentation":"<p>The name of the add-on. The name must match one of the names returned by <a href=\"https://docs.aws.amazon.com/eks/latest/APIReference/API_ListAddons.html\"> <code>ListAddons</code> </a>.</p>",
"location":"uri",
"locationName":"addonName"
},
"addonVersion":{
"shape":"String",
"documentation":"<p>The version of the add-on. The version must match one of the versions returned by <a href=\"https://docs.aws.amazon.com/eks/latest/APIReference/API_DescribeAddonVersions.html\"> <code>DescribeAddonVersions</code> </a>.</p>"
},
"serviceAccountRoleArn":{
"shape":"RoleArn",
"documentation":"<p>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 <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/create-node-role.html\">Amazon EKS node IAM role</a> in the <i>Amazon EKS User Guide</i>.</p> <note> <p>To specify an existing IAM role, you must have an IAM OpenID Connect (OIDC) provider created for your cluster. For more information, see <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/enable-iam-roles-for-service-accounts.html\">Enabling IAM roles for service accounts on your cluster</a> in the <i>Amazon EKS User Guide</i>.</p> </note>"
},
"resolveConflicts":{
"shape":"ResolveConflicts",
"documentation":"<p>How to resolve field value conflicts for an Amazon EKS add-on if you've changed a value from the Amazon EKS default value. Conflicts are handled based on the option you choose:</p> <ul> <li> <p> <b>None</b> Amazon EKS doesn't change the value. The update might fail.</p> </li> <li> <p> <b>Overwrite</b> Amazon EKS overwrites the changed value back to the Amazon EKS default value.</p> </li> <li> <p> <b>Preserve</b> Amazon EKS preserves the value. If you choose this option, we recommend that you test any field and value changes on a non-production cluster before updating the add-on on your production cluster.</p> </li> </ul>"
},
"clientRequestToken":{
"shape":"String",
"documentation":"<p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>",
"idempotencyToken":true
},
"configurationValues":{
"shape":"String",
"documentation":"<p>The set of configuration values for the add-on being created. Whatever values provided here are validated against the schema from <a href=\"https://docs.aws.amazon.com/eks/latest/APIReference/API_DescribeAddonConfiguration.html\">DescribeAddonConfiguration</a> </p>"
}
}
},
"UpdateAddonResponse":{
"type":"structure",
"members":{
"update":{"shape":"Update"}
}
},
"UpdateClusterConfigRequest":{
"type":"structure",
"required":["name"],
"members":{
"name":{
"shape":"String",
"documentation":"<p>The name of the Amazon EKS cluster to update.</p>",
"location":"uri",
"locationName":"name"
},
"resourcesVpcConfig":{"shape":"VpcConfigRequest"},
"logging":{
"shape":"Logging",
"documentation":"<p>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 <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/control-plane-logs.html\">Amazon EKS cluster control plane logs</a> in the <i> <i>Amazon EKS User Guide</i> </i>.</p> <note> <p>CloudWatch Logs ingestion, archive storage, and data scanning rates apply to exported control plane logs. For more information, see <a href=\"http://aws.amazon.com/cloudwatch/pricing/\">CloudWatch Pricing</a>.</p> </note>"
},
"clientRequestToken":{
"shape":"String",
"documentation":"<p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>",
"idempotencyToken":true
}
}
},
"UpdateClusterConfigResponse":{
"type":"structure",
"members":{
"update":{"shape":"Update"}
}
},
"UpdateClusterVersionRequest":{
"type":"structure",
"required":[
"name",
"version"
],
"members":{
"name":{
"shape":"String",
"documentation":"<p>The name of the Amazon EKS cluster to update.</p>",
"location":"uri",
"locationName":"name"
},
"version":{
"shape":"String",
"documentation":"<p>The desired Kubernetes version following a successful update.</p>"
},
"clientRequestToken":{
"shape":"String",
"documentation":"<p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>",
"idempotencyToken":true
}
}
},
"UpdateClusterVersionResponse":{
"type":"structure",
"members":{
"update":{
"shape":"Update",
"documentation":"<p>The full description of the specified update</p>"
}
}
},
"UpdateLabelsPayload":{
"type":"structure",
"members":{
"addOrUpdateLabels":{
"shape":"labelsMap",
"documentation":"<p>Kubernetes labels to be added or updated.</p>"
},
"removeLabels":{
"shape":"labelsKeyList",
"documentation":"<p>Kubernetes labels to be removed.</p>"
}
},
"documentation":"<p>An object representing a Kubernetes label change for a managed node group.</p>"
},
"UpdateNodegroupConfigRequest":{
"type":"structure",
"required":[
"clusterName",
"nodegroupName"
],
"members":{
"clusterName":{
"shape":"String",
"documentation":"<p>The name of the Amazon EKS cluster that the managed node group resides in.</p>",
"location":"uri",
"locationName":"name"
},
"nodegroupName":{
"shape":"String",
"documentation":"<p>The name of the managed node group to update.</p>",
"location":"uri",
"locationName":"nodegroupName"
},
"labels":{
"shape":"UpdateLabelsPayload",
"documentation":"<p>The Kubernetes labels to be applied to the nodes in the node group after the update.</p>"
},
"taints":{
"shape":"UpdateTaintsPayload",
"documentation":"<p>The Kubernetes taints to be applied to the nodes in the node group after the update. For more information, see <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html\">Node taints on managed node groups</a>.</p>"
},
"scalingConfig":{
"shape":"NodegroupScalingConfig",
"documentation":"<p>The scaling configuration details for the Auto Scaling group after the update.</p>"
},
"updateConfig":{
"shape":"NodegroupUpdateConfig",
"documentation":"<p>The node group update configuration.</p>"
},
"clientRequestToken":{
"shape":"String",
"documentation":"<p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>",
"idempotencyToken":true
}
}
},
"UpdateNodegroupConfigResponse":{
"type":"structure",
"members":{
"update":{"shape":"Update"}
}
},
"UpdateNodegroupVersionRequest":{
"type":"structure",
"required":[
"clusterName",
"nodegroupName"
],
"members":{
"clusterName":{
"shape":"String",
"documentation":"<p>The name of the Amazon EKS cluster that is associated with the managed node group to update.</p>",
"location":"uri",
"locationName":"name"
},
"nodegroupName":{
"shape":"String",
"documentation":"<p>The name of the managed node group to update.</p>",
"location":"uri",
"locationName":"nodegroupName"
},
"version":{
"shape":"String",
"documentation":"<p>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 <code>launchTemplate</code>, and your launch template uses a custom AMI, then don't specify <code>version</code>, or the node group update will fail. For more information about using launch templates with Amazon EKS, see <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html\">Launch template support</a> in the <i>Amazon EKS User Guide</i>.</p>"
},
"releaseVersion":{
"shape":"String",
"documentation":"<p>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 <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/eks-linux-ami-versions.html\">Amazon EKS optimized Amazon Linux 2 AMI versions </a> in the <i>Amazon EKS User Guide</i>. If you specify <code>launchTemplate</code>, and your launch template uses a custom AMI, then don't specify <code>releaseVersion</code>, or the node group update will fail. For more information about using launch templates with Amazon EKS, see <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html\">Launch template support</a> in the <i>Amazon EKS User Guide</i>.</p>"
},
"launchTemplate":{
"shape":"LaunchTemplateSpecification",
"documentation":"<p>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.</p>"
},
"force":{
"shape":"Boolean",
"documentation":"<p>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.</p>"
},
"clientRequestToken":{
"shape":"String",
"documentation":"<p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>",
"idempotencyToken":true
}
}
},
"UpdateNodegroupVersionResponse":{
"type":"structure",
"members":{
"update":{"shape":"Update"}
}
},
"UpdateParam":{
"type":"structure",
"members":{
"type":{
"shape":"UpdateParamType",
"documentation":"<p>The keys associated with an update request.</p>"
},
"value":{
"shape":"String",
"documentation":"<p>The value of the keys submitted as part of an update request.</p>"
}
},
"documentation":"<p>An object representing the details of an update request.</p>"
},
"UpdateParamType":{
"type":"string",
"enum":[
"Version",
"PlatformVersion",
"EndpointPrivateAccess",
"EndpointPublicAccess",
"ClusterLogging",
"DesiredSize",
"LabelsToAdd",
"LabelsToRemove",
"TaintsToAdd",
"TaintsToRemove",
"MaxSize",
"MinSize",
"ReleaseVersion",
"PublicAccessCidrs",
"LaunchTemplateName",
"LaunchTemplateVersion",
"IdentityProviderConfig",
"EncryptionConfig",
"AddonVersion",
"ServiceAccountRoleArn",
"ResolveConflicts",
"MaxUnavailable",
"MaxUnavailablePercentage"
]
},
"UpdateParams":{
"type":"list",
"member":{"shape":"UpdateParam"}
},
"UpdateStatus":{
"type":"string",
"enum":[
"InProgress",
"Failed",
"Cancelled",
"Successful"
]
},
"UpdateTaintsPayload":{
"type":"structure",
"members":{
"addOrUpdateTaints":{
"shape":"taintsList",
"documentation":"<p>Kubernetes taints to be added or updated.</p>"
},
"removeTaints":{
"shape":"taintsList",
"documentation":"<p>Kubernetes taints to remove.</p>"
}
},
"documentation":"<p>An object representing the details of an update to a taints payload. For more information, see <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html\">Node taints on managed node groups</a>.</p>"
},
"UpdateType":{
"type":"string",
"enum":[
"VersionUpdate",
"EndpointAccessUpdate",
"LoggingUpdate",
"ConfigUpdate",
"AssociateIdentityProviderConfig",
"DisassociateIdentityProviderConfig",
"AssociateEncryptionConfig",
"AddonUpdate"
]
},
"VpcConfigRequest":{
"type":"structure",
"members":{
"subnetIds":{
"shape":"StringList",
"documentation":"<p>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.</p>"
},
"securityGroupIds":{
"shape":"StringList",
"documentation":"<p>Specify one or more security groups for the cross-account elastic network interfaces that Amazon EKS creates to use that 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 <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/sec-group-reqs.html\">Amazon EKS security group considerations</a> in the <i> <i>Amazon EKS User Guide</i> </i>.</p>"
},
"endpointPublicAccess":{
"shape":"BoxedBoolean",
"documentation":"<p>Set this value to <code>false</code> 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 <code>true</code>, which enables public access for your Kubernetes API server. For more information, see <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/cluster-endpoint.html\">Amazon EKS cluster endpoint access control</a> in the <i> <i>Amazon EKS User Guide</i> </i>.</p>"
},
"endpointPrivateAccess":{
"shape":"BoxedBoolean",
"documentation":"<p>Set this value to <code>true</code> 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 <code>false</code>, which disables private access for your Kubernetes API server. If you disable private access and you have nodes or Fargate pods in the cluster, then ensure that <code>publicAccessCidrs</code> includes the necessary CIDR blocks for communication with the nodes or Fargate pods. For more information, see <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/cluster-endpoint.html\">Amazon EKS cluster endpoint access control</a> in the <i> <i>Amazon EKS User Guide</i> </i>.</p>"
},
"publicAccessCidrs":{
"shape":"StringList",
"documentation":"<p>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 <code>0.0.0.0/0</code>. If you've disabled private endpoint access and you have nodes or Fargate pods in the cluster, then ensure that you specify the necessary CIDR blocks. For more information, see <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/cluster-endpoint.html\">Amazon EKS cluster endpoint access control</a> in the <i> <i>Amazon EKS User Guide</i> </i>.</p>"
}
},
"documentation":"<p>An object representing the VPC configuration to use for an Amazon EKS cluster.</p>"
},
"VpcConfigResponse":{
"type":"structure",
"members":{
"subnetIds":{
"shape":"StringList",
"documentation":"<p>The subnets associated with your cluster.</p>"
},
"securityGroupIds":{
"shape":"StringList",
"documentation":"<p>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.</p>"
},
"clusterSecurityGroupId":{
"shape":"String",
"documentation":"<p>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.</p>"
},
"vpcId":{
"shape":"String",
"documentation":"<p>The VPC associated with your cluster.</p>"
},
"endpointPublicAccess":{
"shape":"Boolean",
"documentation":"<p>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.</p>"
},
"endpointPrivateAccess":{
"shape":"Boolean",
"documentation":"<p>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 Fargate pods in the cluster, then ensure that <code>publicAccessCidrs</code> includes the necessary CIDR blocks for communication with the nodes or Fargate pods. For more information, see <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/cluster-endpoint.html\">Amazon EKS cluster endpoint access control</a> in the <i> <i>Amazon EKS User Guide</i> </i>.</p>"
},
"publicAccessCidrs":{
"shape":"StringList",
"documentation":"<p>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 <code>0.0.0.0/0</code>. If you've disabled private endpoint access and you have nodes or Fargate pods in the cluster, then ensure that the necessary CIDR blocks are listed. For more information, see <a href=\"https://docs.aws.amazon.com/eks/latest/userguide/cluster-endpoint.html\">Amazon EKS cluster endpoint access control</a> in the <i> <i>Amazon EKS User Guide</i> </i>.</p>"
}
},
"documentation":"<p>An object representing an Amazon EKS cluster VPC configuration response.</p>"
},
"ZeroCapacity":{
"type":"integer",
"box":true,
"min":0
},
"configStatus":{
"type":"string",
"enum":[
"CREATING",
"DELETING",
"ACTIVE"
]
},
"labelKey":{
"type":"string",
"max":63,
"min":1
},
"labelValue":{
"type":"string",
"max":63,
"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
},
"taintKey":{
"type":"string",
"max":63,
"min":1
},
"taintValue":{
"type":"string",
"max":63,
"min":0
},
"taintsList":{
"type":"list",
"member":{"shape":"Taint"}
}
},
"documentation":"<p>Amazon Elastic Kubernetes Service (Amazon EKS) is a managed service that makes it easy for you to run Kubernetes on Amazon Web Services 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. </p> <p>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.</p>"
}