aws-sdk-eks 1.80.0 → 1.82.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/CHANGELOG.md +10 -0
 - data/VERSION +1 -1
 - data/lib/aws-sdk-eks/client.rb +132 -43
 - data/lib/aws-sdk-eks/client_api.rb +25 -0
 - data/lib/aws-sdk-eks/endpoint_provider.rb +64 -65
 - data/lib/aws-sdk-eks/endpoints.rb +14 -0
 - data/lib/aws-sdk-eks/plugins/endpoints.rb +2 -0
 - data/lib/aws-sdk-eks/types.rb +159 -733
 - data/lib/aws-sdk-eks.rb +1 -1
 - metadata +2 -2
 
    
        data/lib/aws-sdk-eks/types.rb
    CHANGED
    
    | 
         @@ -54,7 +54,7 @@ module Aws::EKS 
     | 
|
| 
       54 
54 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       55 
55 
     | 
    
         
             
                #
         
     | 
| 
       56 
56 
     | 
    
         
             
                # @!attribute [rw] health
         
     | 
| 
       57 
     | 
    
         
            -
                #   An object  
     | 
| 
      
 57 
     | 
    
         
            +
                #   An object that represents the health of the add-on.
         
     | 
| 
       58 
58 
     | 
    
         
             
                #   @return [Types::AddonHealth]
         
     | 
| 
       59 
59 
     | 
    
         
             
                #
         
     | 
| 
       60 
60 
     | 
    
         
             
                # @!attribute [rw] addon_arn
         
     | 
| 
         @@ -70,8 +70,8 @@ module Aws::EKS 
     | 
|
| 
       70 
70 
     | 
    
         
             
                #   @return [Time]
         
     | 
| 
       71 
71 
     | 
    
         
             
                #
         
     | 
| 
       72 
72 
     | 
    
         
             
                # @!attribute [rw] service_account_role_arn
         
     | 
| 
       73 
     | 
    
         
            -
                #   The Amazon Resource Name (ARN) of the IAM role that  
     | 
| 
       74 
     | 
    
         
            -
                #   Kubernetes service account  
     | 
| 
      
 73 
     | 
    
         
            +
                #   The Amazon Resource Name (ARN) of the IAM role that's bound to the
         
     | 
| 
      
 74 
     | 
    
         
            +
                #   Kubernetes service account that the add-on uses.
         
     | 
| 
       75 
75 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       76 
76 
     | 
    
         
             
                #
         
     | 
| 
       77 
77 
     | 
    
         
             
                # @!attribute [rw] tags
         
     | 
| 
         @@ -94,6 +94,10 @@ module Aws::EKS 
     | 
|
| 
       94 
94 
     | 
    
         
             
                #   Marketplace.
         
     | 
| 
       95 
95 
     | 
    
         
             
                #   @return [Types::MarketplaceInformation]
         
     | 
| 
       96 
96 
     | 
    
         
             
                #
         
     | 
| 
      
 97 
     | 
    
         
            +
                # @!attribute [rw] configuration_values
         
     | 
| 
      
 98 
     | 
    
         
            +
                #   The configuration values that you provided.
         
     | 
| 
      
 99 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 100 
     | 
    
         
            +
                #
         
     | 
| 
       97 
101 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/Addon AWS API Documentation
         
     | 
| 
       98 
102 
     | 
    
         
             
                #
         
     | 
| 
       99 
103 
     | 
    
         
             
                class Addon < Struct.new(
         
     | 
| 
         @@ -109,7 +113,8 @@ module Aws::EKS 
     | 
|
| 
       109 
113 
     | 
    
         
             
                  :tags,
         
     | 
| 
       110 
114 
     | 
    
         
             
                  :publisher,
         
     | 
| 
       111 
115 
     | 
    
         
             
                  :owner,
         
     | 
| 
       112 
     | 
    
         
            -
                  :marketplace_information 
     | 
| 
      
 116 
     | 
    
         
            +
                  :marketplace_information,
         
     | 
| 
      
 117 
     | 
    
         
            +
                  :configuration_values)
         
     | 
| 
       113 
118 
     | 
    
         
             
                  SENSITIVE = []
         
     | 
| 
       114 
119 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       115 
120 
     | 
    
         
             
                end
         
     | 
| 
         @@ -223,22 +228,6 @@ module Aws::EKS 
     | 
|
| 
       223 
228 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       224 
229 
     | 
    
         
             
                end
         
     | 
| 
       225 
230 
     | 
    
         | 
| 
       226 
     | 
    
         
            -
                # @note When making an API call, you may pass AssociateEncryptionConfigRequest
         
     | 
| 
       227 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       228 
     | 
    
         
            -
                #
         
     | 
| 
       229 
     | 
    
         
            -
                #       {
         
     | 
| 
       230 
     | 
    
         
            -
                #         cluster_name: "String", # required
         
     | 
| 
       231 
     | 
    
         
            -
                #         encryption_config: [ # required
         
     | 
| 
       232 
     | 
    
         
            -
                #           {
         
     | 
| 
       233 
     | 
    
         
            -
                #             resources: ["String"],
         
     | 
| 
       234 
     | 
    
         
            -
                #             provider: {
         
     | 
| 
       235 
     | 
    
         
            -
                #               key_arn: "String",
         
     | 
| 
       236 
     | 
    
         
            -
                #             },
         
     | 
| 
       237 
     | 
    
         
            -
                #           },
         
     | 
| 
       238 
     | 
    
         
            -
                #         ],
         
     | 
| 
       239 
     | 
    
         
            -
                #         client_request_token: "String",
         
     | 
| 
       240 
     | 
    
         
            -
                #       }
         
     | 
| 
       241 
     | 
    
         
            -
                #
         
     | 
| 
       242 
231 
     | 
    
         
             
                # @!attribute [rw] cluster_name
         
     | 
| 
       243 
232 
     | 
    
         
             
                #   The name of the cluster that you are associating with encryption
         
     | 
| 
       244 
233 
     | 
    
         
             
                #   configuration.
         
     | 
| 
         @@ -278,29 +267,6 @@ module Aws::EKS 
     | 
|
| 
       278 
267 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       279 
268 
     | 
    
         
             
                end
         
     | 
| 
       280 
269 
     | 
    
         | 
| 
       281 
     | 
    
         
            -
                # @note When making an API call, you may pass AssociateIdentityProviderConfigRequest
         
     | 
| 
       282 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       283 
     | 
    
         
            -
                #
         
     | 
| 
       284 
     | 
    
         
            -
                #       {
         
     | 
| 
       285 
     | 
    
         
            -
                #         cluster_name: "String", # required
         
     | 
| 
       286 
     | 
    
         
            -
                #         oidc: { # required
         
     | 
| 
       287 
     | 
    
         
            -
                #           identity_provider_config_name: "String", # required
         
     | 
| 
       288 
     | 
    
         
            -
                #           issuer_url: "String", # required
         
     | 
| 
       289 
     | 
    
         
            -
                #           client_id: "String", # required
         
     | 
| 
       290 
     | 
    
         
            -
                #           username_claim: "String",
         
     | 
| 
       291 
     | 
    
         
            -
                #           username_prefix: "String",
         
     | 
| 
       292 
     | 
    
         
            -
                #           groups_claim: "String",
         
     | 
| 
       293 
     | 
    
         
            -
                #           groups_prefix: "String",
         
     | 
| 
       294 
     | 
    
         
            -
                #           required_claims: {
         
     | 
| 
       295 
     | 
    
         
            -
                #             "requiredClaimsKey" => "requiredClaimsValue",
         
     | 
| 
       296 
     | 
    
         
            -
                #           },
         
     | 
| 
       297 
     | 
    
         
            -
                #         },
         
     | 
| 
       298 
     | 
    
         
            -
                #         tags: {
         
     | 
| 
       299 
     | 
    
         
            -
                #           "TagKey" => "TagValue",
         
     | 
| 
       300 
     | 
    
         
            -
                #         },
         
     | 
| 
       301 
     | 
    
         
            -
                #         client_request_token: "String",
         
     | 
| 
       302 
     | 
    
         
            -
                #       }
         
     | 
| 
       303 
     | 
    
         
            -
                #
         
     | 
| 
       304 
270 
     | 
    
         
             
                # @!attribute [rw] cluster_name
         
     | 
| 
       305 
271 
     | 
    
         
             
                #   The name of the cluster to associate the configuration to.
         
     | 
| 
       306 
272 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
         @@ -636,14 +602,6 @@ module Aws::EKS 
     | 
|
| 
       636 
602 
     | 
    
         | 
| 
       637 
603 
     | 
    
         
             
                # The configuration sent to a cluster for configuration.
         
     | 
| 
       638 
604 
     | 
    
         
             
                #
         
     | 
| 
       639 
     | 
    
         
            -
                # @note When making an API call, you may pass ConnectorConfigRequest
         
     | 
| 
       640 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       641 
     | 
    
         
            -
                #
         
     | 
| 
       642 
     | 
    
         
            -
                #       {
         
     | 
| 
       643 
     | 
    
         
            -
                #         role_arn: "String", # required
         
     | 
| 
       644 
     | 
    
         
            -
                #         provider: "EKS_ANYWHERE", # required, accepts EKS_ANYWHERE, ANTHOS, GKE, AKS, OPENSHIFT, TANZU, RANCHER, EC2, OTHER
         
     | 
| 
       645 
     | 
    
         
            -
                #       }
         
     | 
| 
       646 
     | 
    
         
            -
                #
         
     | 
| 
       647 
605 
     | 
    
         
             
                # @!attribute [rw] role_arn
         
     | 
| 
       648 
606 
     | 
    
         
             
                #   The Amazon Resource Name (ARN) of the role that is authorized to
         
     | 
| 
       649 
607 
     | 
    
         
             
                #   request the connector configuration.
         
     | 
| 
         @@ -707,13 +665,6 @@ module Aws::EKS 
     | 
|
| 
       707 
665 
     | 
    
         
             
                #
         
     | 
| 
       708 
666 
     | 
    
         
             
                # [1]: https://docs.aws.amazon.com/eks/latest/userguide/eks-outposts-capacity-considerations.html
         
     | 
| 
       709 
667 
     | 
    
         
             
                #
         
     | 
| 
       710 
     | 
    
         
            -
                # @note When making an API call, you may pass ControlPlanePlacementRequest
         
     | 
| 
       711 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       712 
     | 
    
         
            -
                #
         
     | 
| 
       713 
     | 
    
         
            -
                #       {
         
     | 
| 
       714 
     | 
    
         
            -
                #         group_name: "String",
         
     | 
| 
       715 
     | 
    
         
            -
                #       }
         
     | 
| 
       716 
     | 
    
         
            -
                #
         
     | 
| 
       717 
668 
     | 
    
         
             
                # @!attribute [rw] group_name
         
     | 
| 
       718 
669 
     | 
    
         
             
                #   The name of the placement group for the Kubernetes control plane
         
     | 
| 
       719 
670 
     | 
    
         
             
                #   instances. This setting can't be changed after cluster creation.
         
     | 
| 
         @@ -749,28 +700,13 @@ module Aws::EKS 
     | 
|
| 
       749 
700 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       750 
701 
     | 
    
         
             
                end
         
     | 
| 
       751 
702 
     | 
    
         | 
| 
       752 
     | 
    
         
            -
                # @note When making an API call, you may pass CreateAddonRequest
         
     | 
| 
       753 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       754 
     | 
    
         
            -
                #
         
     | 
| 
       755 
     | 
    
         
            -
                #       {
         
     | 
| 
       756 
     | 
    
         
            -
                #         cluster_name: "ClusterName", # required
         
     | 
| 
       757 
     | 
    
         
            -
                #         addon_name: "String", # required
         
     | 
| 
       758 
     | 
    
         
            -
                #         addon_version: "String",
         
     | 
| 
       759 
     | 
    
         
            -
                #         service_account_role_arn: "RoleArn",
         
     | 
| 
       760 
     | 
    
         
            -
                #         resolve_conflicts: "OVERWRITE", # accepts OVERWRITE, NONE, PRESERVE
         
     | 
| 
       761 
     | 
    
         
            -
                #         client_request_token: "String",
         
     | 
| 
       762 
     | 
    
         
            -
                #         tags: {
         
     | 
| 
       763 
     | 
    
         
            -
                #           "TagKey" => "TagValue",
         
     | 
| 
       764 
     | 
    
         
            -
                #         },
         
     | 
| 
       765 
     | 
    
         
            -
                #       }
         
     | 
| 
       766 
     | 
    
         
            -
                #
         
     | 
| 
       767 
703 
     | 
    
         
             
                # @!attribute [rw] cluster_name
         
     | 
| 
       768 
704 
     | 
    
         
             
                #   The name of the cluster to create the add-on for.
         
     | 
| 
       769 
705 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       770 
706 
     | 
    
         
             
                #
         
     | 
| 
       771 
707 
     | 
    
         
             
                # @!attribute [rw] addon_name
         
     | 
| 
       772 
     | 
    
         
            -
                #   The name of the add-on. The name must match one of the names
         
     | 
| 
       773 
     | 
    
         
            -
                #    
     | 
| 
      
 708 
     | 
    
         
            +
                #   The name of the add-on. The name must match one of the names that [
         
     | 
| 
      
 709 
     | 
    
         
            +
                #   `DescribeAddonVersions` ][1] returns.
         
     | 
| 
       774 
710 
     | 
    
         
             
                #
         
     | 
| 
       775 
711 
     | 
    
         
             
                #
         
     | 
| 
       776 
712 
     | 
    
         
             
                #
         
     | 
| 
         @@ -847,6 +783,16 @@ module Aws::EKS 
     | 
|
| 
       847 
783 
     | 
    
         
             
                #   You define both.
         
     | 
| 
       848 
784 
     | 
    
         
             
                #   @return [Hash<String,String>]
         
     | 
| 
       849 
785 
     | 
    
         
             
                #
         
     | 
| 
      
 786 
     | 
    
         
            +
                # @!attribute [rw] configuration_values
         
     | 
| 
      
 787 
     | 
    
         
            +
                #   The set of configuration values for the add-on that's created. The
         
     | 
| 
      
 788 
     | 
    
         
            +
                #   values that you provide are validated against the schema in [
         
     | 
| 
      
 789 
     | 
    
         
            +
                #   `DescribeAddonConfiguration` ][1].
         
     | 
| 
      
 790 
     | 
    
         
            +
                #
         
     | 
| 
      
 791 
     | 
    
         
            +
                #
         
     | 
| 
      
 792 
     | 
    
         
            +
                #
         
     | 
| 
      
 793 
     | 
    
         
            +
                #   [1]: https://docs.aws.amazon.com/eks/latest/APIReference/API_DescribeAddonConfiguration.html
         
     | 
| 
      
 794 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 795 
     | 
    
         
            +
                #
         
     | 
| 
       850 
796 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/CreateAddonRequest AWS API Documentation
         
     | 
| 
       851 
797 
     | 
    
         
             
                #
         
     | 
| 
       852 
798 
     | 
    
         
             
                class CreateAddonRequest < Struct.new(
         
     | 
| 
         @@ -856,7 +802,8 @@ module Aws::EKS 
     | 
|
| 
       856 
802 
     | 
    
         
             
                  :service_account_role_arn,
         
     | 
| 
       857 
803 
     | 
    
         
             
                  :resolve_conflicts,
         
     | 
| 
       858 
804 
     | 
    
         
             
                  :client_request_token,
         
     | 
| 
       859 
     | 
    
         
            -
                  :tags 
     | 
| 
      
 805 
     | 
    
         
            +
                  :tags,
         
     | 
| 
      
 806 
     | 
    
         
            +
                  :configuration_values)
         
     | 
| 
       860 
807 
     | 
    
         
             
                  SENSITIVE = []
         
     | 
| 
       861 
808 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       862 
809 
     | 
    
         
             
                end
         
     | 
| 
         @@ -878,53 +825,6 @@ module Aws::EKS 
     | 
|
| 
       878 
825 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       879 
826 
     | 
    
         
             
                end
         
     | 
| 
       880 
827 
     | 
    
         | 
| 
       881 
     | 
    
         
            -
                # @note When making an API call, you may pass CreateClusterRequest
         
     | 
| 
       882 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       883 
     | 
    
         
            -
                #
         
     | 
| 
       884 
     | 
    
         
            -
                #       {
         
     | 
| 
       885 
     | 
    
         
            -
                #         name: "ClusterName", # required
         
     | 
| 
       886 
     | 
    
         
            -
                #         version: "String",
         
     | 
| 
       887 
     | 
    
         
            -
                #         role_arn: "String", # required
         
     | 
| 
       888 
     | 
    
         
            -
                #         resources_vpc_config: { # required
         
     | 
| 
       889 
     | 
    
         
            -
                #           subnet_ids: ["String"],
         
     | 
| 
       890 
     | 
    
         
            -
                #           security_group_ids: ["String"],
         
     | 
| 
       891 
     | 
    
         
            -
                #           endpoint_public_access: false,
         
     | 
| 
       892 
     | 
    
         
            -
                #           endpoint_private_access: false,
         
     | 
| 
       893 
     | 
    
         
            -
                #           public_access_cidrs: ["String"],
         
     | 
| 
       894 
     | 
    
         
            -
                #         },
         
     | 
| 
       895 
     | 
    
         
            -
                #         kubernetes_network_config: {
         
     | 
| 
       896 
     | 
    
         
            -
                #           service_ipv_4_cidr: "String",
         
     | 
| 
       897 
     | 
    
         
            -
                #           ip_family: "ipv4", # accepts ipv4, ipv6
         
     | 
| 
       898 
     | 
    
         
            -
                #         },
         
     | 
| 
       899 
     | 
    
         
            -
                #         logging: {
         
     | 
| 
       900 
     | 
    
         
            -
                #           cluster_logging: [
         
     | 
| 
       901 
     | 
    
         
            -
                #             {
         
     | 
| 
       902 
     | 
    
         
            -
                #               types: ["api"], # accepts api, audit, authenticator, controllerManager, scheduler
         
     | 
| 
       903 
     | 
    
         
            -
                #               enabled: false,
         
     | 
| 
       904 
     | 
    
         
            -
                #             },
         
     | 
| 
       905 
     | 
    
         
            -
                #           ],
         
     | 
| 
       906 
     | 
    
         
            -
                #         },
         
     | 
| 
       907 
     | 
    
         
            -
                #         client_request_token: "String",
         
     | 
| 
       908 
     | 
    
         
            -
                #         tags: {
         
     | 
| 
       909 
     | 
    
         
            -
                #           "TagKey" => "TagValue",
         
     | 
| 
       910 
     | 
    
         
            -
                #         },
         
     | 
| 
       911 
     | 
    
         
            -
                #         encryption_config: [
         
     | 
| 
       912 
     | 
    
         
            -
                #           {
         
     | 
| 
       913 
     | 
    
         
            -
                #             resources: ["String"],
         
     | 
| 
       914 
     | 
    
         
            -
                #             provider: {
         
     | 
| 
       915 
     | 
    
         
            -
                #               key_arn: "String",
         
     | 
| 
       916 
     | 
    
         
            -
                #             },
         
     | 
| 
       917 
     | 
    
         
            -
                #           },
         
     | 
| 
       918 
     | 
    
         
            -
                #         ],
         
     | 
| 
       919 
     | 
    
         
            -
                #         outpost_config: {
         
     | 
| 
       920 
     | 
    
         
            -
                #           outpost_arns: ["String"], # required
         
     | 
| 
       921 
     | 
    
         
            -
                #           control_plane_instance_type: "String", # required
         
     | 
| 
       922 
     | 
    
         
            -
                #           control_plane_placement: {
         
     | 
| 
       923 
     | 
    
         
            -
                #             group_name: "String",
         
     | 
| 
       924 
     | 
    
         
            -
                #           },
         
     | 
| 
       925 
     | 
    
         
            -
                #         },
         
     | 
| 
       926 
     | 
    
         
            -
                #       }
         
     | 
| 
       927 
     | 
    
         
            -
                #
         
     | 
| 
       928 
828 
     | 
    
         
             
                # @!attribute [rw] name
         
     | 
| 
       929 
829 
     | 
    
         
             
                #   The unique name to give to your cluster.
         
     | 
| 
       930 
830 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
         @@ -1050,28 +950,6 @@ module Aws::EKS 
     | 
|
| 
       1050 
950 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       1051 
951 
     | 
    
         
             
                end
         
     | 
| 
       1052 
952 
     | 
    
         | 
| 
       1053 
     | 
    
         
            -
                # @note When making an API call, you may pass CreateFargateProfileRequest
         
     | 
| 
       1054 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       1055 
     | 
    
         
            -
                #
         
     | 
| 
       1056 
     | 
    
         
            -
                #       {
         
     | 
| 
       1057 
     | 
    
         
            -
                #         fargate_profile_name: "String", # required
         
     | 
| 
       1058 
     | 
    
         
            -
                #         cluster_name: "String", # required
         
     | 
| 
       1059 
     | 
    
         
            -
                #         pod_execution_role_arn: "String", # required
         
     | 
| 
       1060 
     | 
    
         
            -
                #         subnets: ["String"],
         
     | 
| 
       1061 
     | 
    
         
            -
                #         selectors: [
         
     | 
| 
       1062 
     | 
    
         
            -
                #           {
         
     | 
| 
       1063 
     | 
    
         
            -
                #             namespace: "String",
         
     | 
| 
       1064 
     | 
    
         
            -
                #             labels: {
         
     | 
| 
       1065 
     | 
    
         
            -
                #               "String" => "String",
         
     | 
| 
       1066 
     | 
    
         
            -
                #             },
         
     | 
| 
       1067 
     | 
    
         
            -
                #           },
         
     | 
| 
       1068 
     | 
    
         
            -
                #         ],
         
     | 
| 
       1069 
     | 
    
         
            -
                #         client_request_token: "String",
         
     | 
| 
       1070 
     | 
    
         
            -
                #         tags: {
         
     | 
| 
       1071 
     | 
    
         
            -
                #           "TagKey" => "TagValue",
         
     | 
| 
       1072 
     | 
    
         
            -
                #         },
         
     | 
| 
       1073 
     | 
    
         
            -
                #       }
         
     | 
| 
       1074 
     | 
    
         
            -
                #
         
     | 
| 
       1075 
953 
     | 
    
         
             
                # @!attribute [rw] fargate_profile_name
         
     | 
| 
       1076 
954 
     | 
    
         
             
                #   The name of the Fargate profile.
         
     | 
| 
       1077 
955 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
         @@ -1149,54 +1027,6 @@ module Aws::EKS 
     | 
|
| 
       1149 
1027 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       1150 
1028 
     | 
    
         
             
                end
         
     | 
| 
       1151 
1029 
     | 
    
         | 
| 
       1152 
     | 
    
         
            -
                # @note When making an API call, you may pass CreateNodegroupRequest
         
     | 
| 
       1153 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       1154 
     | 
    
         
            -
                #
         
     | 
| 
       1155 
     | 
    
         
            -
                #       {
         
     | 
| 
       1156 
     | 
    
         
            -
                #         cluster_name: "String", # required
         
     | 
| 
       1157 
     | 
    
         
            -
                #         nodegroup_name: "String", # required
         
     | 
| 
       1158 
     | 
    
         
            -
                #         scaling_config: {
         
     | 
| 
       1159 
     | 
    
         
            -
                #           min_size: 1,
         
     | 
| 
       1160 
     | 
    
         
            -
                #           max_size: 1,
         
     | 
| 
       1161 
     | 
    
         
            -
                #           desired_size: 1,
         
     | 
| 
       1162 
     | 
    
         
            -
                #         },
         
     | 
| 
       1163 
     | 
    
         
            -
                #         disk_size: 1,
         
     | 
| 
       1164 
     | 
    
         
            -
                #         subnets: ["String"], # required
         
     | 
| 
       1165 
     | 
    
         
            -
                #         instance_types: ["String"],
         
     | 
| 
       1166 
     | 
    
         
            -
                #         ami_type: "AL2_x86_64", # accepts 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
         
     | 
| 
       1167 
     | 
    
         
            -
                #         remote_access: {
         
     | 
| 
       1168 
     | 
    
         
            -
                #           ec2_ssh_key: "String",
         
     | 
| 
       1169 
     | 
    
         
            -
                #           source_security_groups: ["String"],
         
     | 
| 
       1170 
     | 
    
         
            -
                #         },
         
     | 
| 
       1171 
     | 
    
         
            -
                #         node_role: "String", # required
         
     | 
| 
       1172 
     | 
    
         
            -
                #         labels: {
         
     | 
| 
       1173 
     | 
    
         
            -
                #           "labelKey" => "labelValue",
         
     | 
| 
       1174 
     | 
    
         
            -
                #         },
         
     | 
| 
       1175 
     | 
    
         
            -
                #         taints: [
         
     | 
| 
       1176 
     | 
    
         
            -
                #           {
         
     | 
| 
       1177 
     | 
    
         
            -
                #             key: "taintKey",
         
     | 
| 
       1178 
     | 
    
         
            -
                #             value: "taintValue",
         
     | 
| 
       1179 
     | 
    
         
            -
                #             effect: "NO_SCHEDULE", # accepts NO_SCHEDULE, NO_EXECUTE, PREFER_NO_SCHEDULE
         
     | 
| 
       1180 
     | 
    
         
            -
                #           },
         
     | 
| 
       1181 
     | 
    
         
            -
                #         ],
         
     | 
| 
       1182 
     | 
    
         
            -
                #         tags: {
         
     | 
| 
       1183 
     | 
    
         
            -
                #           "TagKey" => "TagValue",
         
     | 
| 
       1184 
     | 
    
         
            -
                #         },
         
     | 
| 
       1185 
     | 
    
         
            -
                #         client_request_token: "String",
         
     | 
| 
       1186 
     | 
    
         
            -
                #         launch_template: {
         
     | 
| 
       1187 
     | 
    
         
            -
                #           name: "String",
         
     | 
| 
       1188 
     | 
    
         
            -
                #           version: "String",
         
     | 
| 
       1189 
     | 
    
         
            -
                #           id: "String",
         
     | 
| 
       1190 
     | 
    
         
            -
                #         },
         
     | 
| 
       1191 
     | 
    
         
            -
                #         update_config: {
         
     | 
| 
       1192 
     | 
    
         
            -
                #           max_unavailable: 1,
         
     | 
| 
       1193 
     | 
    
         
            -
                #           max_unavailable_percentage: 1,
         
     | 
| 
       1194 
     | 
    
         
            -
                #         },
         
     | 
| 
       1195 
     | 
    
         
            -
                #         capacity_type: "ON_DEMAND", # accepts ON_DEMAND, SPOT
         
     | 
| 
       1196 
     | 
    
         
            -
                #         version: "String",
         
     | 
| 
       1197 
     | 
    
         
            -
                #         release_version: "String",
         
     | 
| 
       1198 
     | 
    
         
            -
                #       }
         
     | 
| 
       1199 
     | 
    
         
            -
                #
         
     | 
| 
       1200 
1030 
     | 
    
         
             
                # @!attribute [rw] cluster_name
         
     | 
| 
       1201 
1031 
     | 
    
         
             
                #   The name of the cluster to create the node group in.
         
     | 
| 
       1202 
1032 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
         @@ -1212,11 +1042,12 @@ module Aws::EKS 
     | 
|
| 
       1212 
1042 
     | 
    
         
             
                #
         
     | 
| 
       1213 
1043 
     | 
    
         
             
                # @!attribute [rw] disk_size
         
     | 
| 
       1214 
1044 
     | 
    
         
             
                #   The root device disk size (in GiB) for your node group instances.
         
     | 
| 
       1215 
     | 
    
         
            -
                #   The default disk size is 20 GiB 
     | 
| 
       1216 
     | 
    
         
            -
                #    
     | 
| 
       1217 
     | 
    
         
            -
                #    
     | 
| 
       1218 
     | 
    
         
            -
                #    
     | 
| 
       1219 
     | 
    
         
            -
                #    
     | 
| 
      
 1045 
     | 
    
         
            +
                #   The default disk size is 20 GiB for Linux and Bottlerocket. The
         
     | 
| 
      
 1046 
     | 
    
         
            +
                #   default disk size is 50 GiB for Windows. If you specify
         
     | 
| 
      
 1047 
     | 
    
         
            +
                #   `launchTemplate`, then don't specify `diskSize`, or the node group
         
     | 
| 
      
 1048 
     | 
    
         
            +
                #   deployment will fail. For more information about using launch
         
     | 
| 
      
 1049 
     | 
    
         
            +
                #   templates with Amazon EKS, see [Launch template support][1] in the
         
     | 
| 
      
 1050 
     | 
    
         
            +
                #   *Amazon EKS User Guide*.
         
     | 
| 
       1220 
1051 
     | 
    
         
             
                #
         
     | 
| 
       1221 
1052 
     | 
    
         
             
                #
         
     | 
| 
       1222 
1053 
     | 
    
         
             
                #
         
     | 
| 
         @@ -1239,13 +1070,13 @@ module Aws::EKS 
     | 
|
| 
       1239 
1070 
     | 
    
         
             
                #
         
     | 
| 
       1240 
1071 
     | 
    
         
             
                # @!attribute [rw] instance_types
         
     | 
| 
       1241 
1072 
     | 
    
         
             
                #   Specify the instance types for a node group. If you specify a GPU
         
     | 
| 
       1242 
     | 
    
         
            -
                #   instance type,  
     | 
| 
       1243 
     | 
    
         
            -
                #   `amiType` parameter. If you specify `launchTemplate`, then 
     | 
| 
       1244 
     | 
    
         
            -
                #   specify zero or one instance type in your launch template 
     | 
| 
       1245 
     | 
    
         
            -
                #   can specify 0-20 instance types for `instanceTypes`. If 
     | 
| 
       1246 
     | 
    
         
            -
                #   specify an instance type in your launch template *and* 
     | 
| 
       1247 
     | 
    
         
            -
                #   `instanceTypes`, the node group deployment will fail. If 
     | 
| 
       1248 
     | 
    
         
            -
                #   specify an instance type in a launch template or for
         
     | 
| 
      
 1073 
     | 
    
         
            +
                #   instance type, make sure to also specify an applicable GPU AMI type
         
     | 
| 
      
 1074 
     | 
    
         
            +
                #   with the `amiType` parameter. If you specify `launchTemplate`, then
         
     | 
| 
      
 1075 
     | 
    
         
            +
                #   you can specify zero or one instance type in your launch template
         
     | 
| 
      
 1076 
     | 
    
         
            +
                #   *or* you can specify 0-20 instance types for `instanceTypes`. If
         
     | 
| 
      
 1077 
     | 
    
         
            +
                #   however, you specify an instance type in your launch template *and*
         
     | 
| 
      
 1078 
     | 
    
         
            +
                #   specify any `instanceTypes`, the node group deployment will fail. If
         
     | 
| 
      
 1079 
     | 
    
         
            +
                #   you don't specify an instance type in a launch template or for
         
     | 
| 
       1249 
1080 
     | 
    
         
             
                #   `instanceTypes`, then `t3.medium` is used, by default. If you
         
     | 
| 
       1250 
1081 
     | 
    
         
             
                #   specify `Spot` for `capacityType`, then we recommend specifying
         
     | 
| 
       1251 
1082 
     | 
    
         
             
                #   multiple values for `instanceTypes`. For more information, see
         
     | 
| 
         @@ -1259,15 +1090,14 @@ module Aws::EKS 
     | 
|
| 
       1259 
1090 
     | 
    
         
             
                #   @return [Array<String>]
         
     | 
| 
       1260 
1091 
     | 
    
         
             
                #
         
     | 
| 
       1261 
1092 
     | 
    
         
             
                # @!attribute [rw] ami_type
         
     | 
| 
       1262 
     | 
    
         
            -
                #   The AMI type for your node group.  
     | 
| 
       1263 
     | 
    
         
            -
                #    
     | 
| 
       1264 
     | 
    
         
            -
                #   ` 
     | 
| 
       1265 
     | 
    
         
            -
                #    
     | 
| 
       1266 
     | 
    
         
            -
                #    
     | 
| 
       1267 
     | 
    
         
            -
                #    
     | 
| 
       1268 
     | 
    
         
            -
                #    
     | 
| 
       1269 
     | 
    
         
            -
                #    
     | 
| 
       1270 
     | 
    
         
            -
                #   Guide*.
         
     | 
| 
      
 1093 
     | 
    
         
            +
                #   The AMI type for your node group. If you specify `launchTemplate`,
         
     | 
| 
      
 1094 
     | 
    
         
            +
                #   and your launch template uses a custom AMI, then don't specify
         
     | 
| 
      
 1095 
     | 
    
         
            +
                #   `amiType`, or the node group deployment will fail. If your launch
         
     | 
| 
      
 1096 
     | 
    
         
            +
                #   template uses a Windows custom AMI, then add
         
     | 
| 
      
 1097 
     | 
    
         
            +
                #   `eks:kube-proxy-windows` to your Windows nodes `rolearn` in the
         
     | 
| 
      
 1098 
     | 
    
         
            +
                #   `aws-auth` `ConfigMap`. For more information about using launch
         
     | 
| 
      
 1099 
     | 
    
         
            +
                #   templates with Amazon EKS, see [Launch template support][1] in the
         
     | 
| 
      
 1100 
     | 
    
         
            +
                #   *Amazon EKS User Guide*.
         
     | 
| 
       1271 
1101 
     | 
    
         
             
                #
         
     | 
| 
       1272 
1102 
     | 
    
         
             
                #
         
     | 
| 
       1273 
1103 
     | 
    
         
             
                #
         
     | 
| 
         @@ -1275,11 +1105,12 @@ module Aws::EKS 
     | 
|
| 
       1275 
1105 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       1276 
1106 
     | 
    
         
             
                #
         
     | 
| 
       1277 
1107 
     | 
    
         
             
                # @!attribute [rw] remote_access
         
     | 
| 
       1278 
     | 
    
         
            -
                #   The remote access  
     | 
| 
       1279 
     | 
    
         
            -
                #    
     | 
| 
       1280 
     | 
    
         
            -
                #    
     | 
| 
       1281 
     | 
    
         
            -
                #    
     | 
| 
       1282 
     | 
    
         
            -
                #    
     | 
| 
      
 1108 
     | 
    
         
            +
                #   The remote access configuration to use with your node group. For
         
     | 
| 
      
 1109 
     | 
    
         
            +
                #   Linux, the protocol is SSH. For Windows, the protocol is RDP. If you
         
     | 
| 
      
 1110 
     | 
    
         
            +
                #   specify `launchTemplate`, then don't specify `remoteAccess`, or the
         
     | 
| 
      
 1111 
     | 
    
         
            +
                #   node group deployment will fail. For more information about using
         
     | 
| 
      
 1112 
     | 
    
         
            +
                #   launch templates with Amazon EKS, see [Launch template support][1]
         
     | 
| 
      
 1113 
     | 
    
         
            +
                #   in the *Amazon EKS User Guide*.
         
     | 
| 
       1283 
1114 
     | 
    
         
             
                #
         
     | 
| 
       1284 
1115 
     | 
    
         
             
                #
         
     | 
| 
       1285 
1116 
     | 
    
         
             
                #
         
     | 
| 
         @@ -1370,19 +1201,24 @@ module Aws::EKS 
     | 
|
| 
       1370 
1201 
     | 
    
         
             
                # @!attribute [rw] release_version
         
     | 
| 
       1371 
1202 
     | 
    
         
             
                #   The AMI version of the Amazon EKS optimized AMI to use with your
         
     | 
| 
       1372 
1203 
     | 
    
         
             
                #   node group. By default, the latest available AMI version for the
         
     | 
| 
       1373 
     | 
    
         
            -
                #   node group's current Kubernetes version is used. For  
     | 
| 
       1374 
     | 
    
         
            -
                #    
     | 
| 
       1375 
     | 
    
         
            -
                #   versions][1] in the *Amazon EKS User Guide*.  
     | 
| 
       1376 
     | 
    
         
            -
                #    
     | 
| 
       1377 
     | 
    
         
            -
                #    
     | 
| 
       1378 
     | 
    
         
            -
                #    
     | 
| 
       1379 
     | 
    
         
            -
                # 
     | 
| 
       1380 
     | 
    
         
            -
                #    
     | 
| 
      
 1204 
     | 
    
         
            +
                #   node group's current Kubernetes version is used. For information
         
     | 
| 
      
 1205 
     | 
    
         
            +
                #   about Linux versions, see [Amazon EKS optimized Amazon Linux AMI
         
     | 
| 
      
 1206 
     | 
    
         
            +
                #   versions][1] in the *Amazon EKS User Guide*. Amazon EKS managed node
         
     | 
| 
      
 1207 
     | 
    
         
            +
                #   groups support the November 2022 and later releases of the Windows
         
     | 
| 
      
 1208 
     | 
    
         
            +
                #   AMIs. For information about Windows versions, see [Amazon EKS
         
     | 
| 
      
 1209 
     | 
    
         
            +
                #   optimized Windows AMI versions][2] in the *Amazon EKS User Guide*.
         
     | 
| 
      
 1210 
     | 
    
         
            +
                #
         
     | 
| 
      
 1211 
     | 
    
         
            +
                #   If you specify `launchTemplate`, and your launch template uses a
         
     | 
| 
      
 1212 
     | 
    
         
            +
                #   custom AMI, then don't specify `releaseVersion`, or the node group
         
     | 
| 
      
 1213 
     | 
    
         
            +
                #   deployment will fail. For more information about using launch
         
     | 
| 
      
 1214 
     | 
    
         
            +
                #   templates with Amazon EKS, see [Launch template support][3] in the
         
     | 
| 
      
 1215 
     | 
    
         
            +
                #   *Amazon EKS User Guide*.
         
     | 
| 
       1381 
1216 
     | 
    
         
             
                #
         
     | 
| 
       1382 
1217 
     | 
    
         
             
                #
         
     | 
| 
       1383 
1218 
     | 
    
         
             
                #
         
     | 
| 
       1384 
1219 
     | 
    
         
             
                #   [1]: https://docs.aws.amazon.com/eks/latest/userguide/eks-linux-ami-versions.html
         
     | 
| 
       1385 
     | 
    
         
            -
                #   [2]: https://docs.aws.amazon.com/eks/latest/userguide/ 
     | 
| 
      
 1220 
     | 
    
         
            +
                #   [2]: https://docs.aws.amazon.com/eks/latest/userguide/eks-ami-versions-windows.html
         
     | 
| 
      
 1221 
     | 
    
         
            +
                #   [3]: https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html
         
     | 
| 
       1386 
1222 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       1387 
1223 
     | 
    
         
             
                #
         
     | 
| 
       1388 
1224 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/CreateNodegroupRequest AWS API Documentation
         
     | 
| 
         @@ -1422,15 +1258,6 @@ module Aws::EKS 
     | 
|
| 
       1422 
1258 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       1423 
1259 
     | 
    
         
             
                end
         
     | 
| 
       1424 
1260 
     | 
    
         | 
| 
       1425 
     | 
    
         
            -
                # @note When making an API call, you may pass DeleteAddonRequest
         
     | 
| 
       1426 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       1427 
     | 
    
         
            -
                #
         
     | 
| 
       1428 
     | 
    
         
            -
                #       {
         
     | 
| 
       1429 
     | 
    
         
            -
                #         cluster_name: "ClusterName", # required
         
     | 
| 
       1430 
     | 
    
         
            -
                #         addon_name: "String", # required
         
     | 
| 
       1431 
     | 
    
         
            -
                #         preserve: false,
         
     | 
| 
       1432 
     | 
    
         
            -
                #       }
         
     | 
| 
       1433 
     | 
    
         
            -
                #
         
     | 
| 
       1434 
1261 
     | 
    
         
             
                # @!attribute [rw] cluster_name
         
     | 
| 
       1435 
1262 
     | 
    
         
             
                #   The name of the cluster to delete the add-on from.
         
     | 
| 
       1436 
1263 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
         @@ -1477,13 +1304,6 @@ module Aws::EKS 
     | 
|
| 
       1477 
1304 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       1478 
1305 
     | 
    
         
             
                end
         
     | 
| 
       1479 
1306 
     | 
    
         | 
| 
       1480 
     | 
    
         
            -
                # @note When making an API call, you may pass DeleteClusterRequest
         
     | 
| 
       1481 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       1482 
     | 
    
         
            -
                #
         
     | 
| 
       1483 
     | 
    
         
            -
                #       {
         
     | 
| 
       1484 
     | 
    
         
            -
                #         name: "String", # required
         
     | 
| 
       1485 
     | 
    
         
            -
                #       }
         
     | 
| 
       1486 
     | 
    
         
            -
                #
         
     | 
| 
       1487 
1307 
     | 
    
         
             
                # @!attribute [rw] name
         
     | 
| 
       1488 
1308 
     | 
    
         
             
                #   The name of the cluster to delete.
         
     | 
| 
       1489 
1309 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
         @@ -1508,14 +1328,6 @@ module Aws::EKS 
     | 
|
| 
       1508 
1328 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       1509 
1329 
     | 
    
         
             
                end
         
     | 
| 
       1510 
1330 
     | 
    
         | 
| 
       1511 
     | 
    
         
            -
                # @note When making an API call, you may pass DeleteFargateProfileRequest
         
     | 
| 
       1512 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       1513 
     | 
    
         
            -
                #
         
     | 
| 
       1514 
     | 
    
         
            -
                #       {
         
     | 
| 
       1515 
     | 
    
         
            -
                #         cluster_name: "String", # required
         
     | 
| 
       1516 
     | 
    
         
            -
                #         fargate_profile_name: "String", # required
         
     | 
| 
       1517 
     | 
    
         
            -
                #       }
         
     | 
| 
       1518 
     | 
    
         
            -
                #
         
     | 
| 
       1519 
1331 
     | 
    
         
             
                # @!attribute [rw] cluster_name
         
     | 
| 
       1520 
1332 
     | 
    
         
             
                #   The name of the Amazon EKS cluster associated with the Fargate
         
     | 
| 
       1521 
1333 
     | 
    
         
             
                #   profile to delete.
         
     | 
| 
         @@ -1546,14 +1358,6 @@ module Aws::EKS 
     | 
|
| 
       1546 
1358 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       1547 
1359 
     | 
    
         
             
                end
         
     | 
| 
       1548 
1360 
     | 
    
         | 
| 
       1549 
     | 
    
         
            -
                # @note When making an API call, you may pass DeleteNodegroupRequest
         
     | 
| 
       1550 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       1551 
     | 
    
         
            -
                #
         
     | 
| 
       1552 
     | 
    
         
            -
                #       {
         
     | 
| 
       1553 
     | 
    
         
            -
                #         cluster_name: "String", # required
         
     | 
| 
       1554 
     | 
    
         
            -
                #         nodegroup_name: "String", # required
         
     | 
| 
       1555 
     | 
    
         
            -
                #       }
         
     | 
| 
       1556 
     | 
    
         
            -
                #
         
     | 
| 
       1557 
1361 
     | 
    
         
             
                # @!attribute [rw] cluster_name
         
     | 
| 
       1558 
1362 
     | 
    
         
             
                #   The name of the Amazon EKS cluster that is associated with your node
         
     | 
| 
       1559 
1363 
     | 
    
         
             
                #   group.
         
     | 
| 
         @@ -1584,13 +1388,6 @@ module Aws::EKS 
     | 
|
| 
       1584 
1388 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       1585 
1389 
     | 
    
         
             
                end
         
     | 
| 
       1586 
1390 
     | 
    
         | 
| 
       1587 
     | 
    
         
            -
                # @note When making an API call, you may pass DeregisterClusterRequest
         
     | 
| 
       1588 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       1589 
     | 
    
         
            -
                #
         
     | 
| 
       1590 
     | 
    
         
            -
                #       {
         
     | 
| 
       1591 
     | 
    
         
            -
                #         name: "String", # required
         
     | 
| 
       1592 
     | 
    
         
            -
                #       }
         
     | 
| 
       1593 
     | 
    
         
            -
                #
         
     | 
| 
       1594 
1391 
     | 
    
         
             
                # @!attribute [rw] name
         
     | 
| 
       1595 
1392 
     | 
    
         
             
                #   The name of the connected cluster to deregister.
         
     | 
| 
       1596 
1393 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
         @@ -1615,14 +1412,61 @@ module Aws::EKS 
     | 
|
| 
       1615 
1412 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       1616 
1413 
     | 
    
         
             
                end
         
     | 
| 
       1617 
1414 
     | 
    
         | 
| 
       1618 
     | 
    
         
            -
                #  
     | 
| 
       1619 
     | 
    
         
            -
                #    
     | 
| 
      
 1415 
     | 
    
         
            +
                # @!attribute [rw] addon_name
         
     | 
| 
      
 1416 
     | 
    
         
            +
                #   The name of the add-on. The name must match one of the names that [
         
     | 
| 
      
 1417 
     | 
    
         
            +
                #   `DescribeAddonVersions` ][1] returns.
         
     | 
| 
      
 1418 
     | 
    
         
            +
                #
         
     | 
| 
      
 1419 
     | 
    
         
            +
                #
         
     | 
| 
      
 1420 
     | 
    
         
            +
                #
         
     | 
| 
      
 1421 
     | 
    
         
            +
                #   [1]: https://docs.aws.amazon.com/eks/latest/APIReference/API_DescribeAddonVersions.html
         
     | 
| 
      
 1422 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 1423 
     | 
    
         
            +
                #
         
     | 
| 
      
 1424 
     | 
    
         
            +
                # @!attribute [rw] addon_version
         
     | 
| 
      
 1425 
     | 
    
         
            +
                #   The version of the add-on. The version must match one of the
         
     | 
| 
      
 1426 
     | 
    
         
            +
                #   versions returned by [ `DescribeAddonVersions` ][1].
         
     | 
| 
      
 1427 
     | 
    
         
            +
                #
         
     | 
| 
      
 1428 
     | 
    
         
            +
                #
         
     | 
| 
      
 1429 
     | 
    
         
            +
                #
         
     | 
| 
      
 1430 
     | 
    
         
            +
                #   [1]: https://docs.aws.amazon.com/eks/latest/APIReference/API_DescribeAddonVersions.html
         
     | 
| 
      
 1431 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 1432 
     | 
    
         
            +
                #
         
     | 
| 
      
 1433 
     | 
    
         
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DescribeAddonConfigurationRequest AWS API Documentation
         
     | 
| 
      
 1434 
     | 
    
         
            +
                #
         
     | 
| 
      
 1435 
     | 
    
         
            +
                class DescribeAddonConfigurationRequest < Struct.new(
         
     | 
| 
      
 1436 
     | 
    
         
            +
                  :addon_name,
         
     | 
| 
      
 1437 
     | 
    
         
            +
                  :addon_version)
         
     | 
| 
      
 1438 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
      
 1439 
     | 
    
         
            +
                  include Aws::Structure
         
     | 
| 
      
 1440 
     | 
    
         
            +
                end
         
     | 
| 
      
 1441 
     | 
    
         
            +
             
     | 
| 
      
 1442 
     | 
    
         
            +
                # @!attribute [rw] addon_name
         
     | 
| 
      
 1443 
     | 
    
         
            +
                #   The name of the add-on.
         
     | 
| 
      
 1444 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 1445 
     | 
    
         
            +
                #
         
     | 
| 
      
 1446 
     | 
    
         
            +
                # @!attribute [rw] addon_version
         
     | 
| 
      
 1447 
     | 
    
         
            +
                #   The version of the add-on. The version must match one of the
         
     | 
| 
      
 1448 
     | 
    
         
            +
                #   versions returned by [ `DescribeAddonVersions` ][1].
         
     | 
| 
       1620 
1449 
     | 
    
         
             
                #
         
     | 
| 
       1621 
     | 
    
         
            -
                #       {
         
     | 
| 
       1622 
     | 
    
         
            -
                #         cluster_name: "ClusterName", # required
         
     | 
| 
       1623 
     | 
    
         
            -
                #         addon_name: "String", # required
         
     | 
| 
       1624 
     | 
    
         
            -
                #       }
         
     | 
| 
       1625 
1450 
     | 
    
         
             
                #
         
     | 
| 
      
 1451 
     | 
    
         
            +
                #
         
     | 
| 
      
 1452 
     | 
    
         
            +
                #   [1]: https://docs.aws.amazon.com/eks/latest/APIReference/API_DescribeAddonVersions.html
         
     | 
| 
      
 1453 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 1454 
     | 
    
         
            +
                #
         
     | 
| 
      
 1455 
     | 
    
         
            +
                # @!attribute [rw] configuration_schema
         
     | 
| 
      
 1456 
     | 
    
         
            +
                #   A JSON schema that's used to validate the configuration values that
         
     | 
| 
      
 1457 
     | 
    
         
            +
                #   you provide when an addon is created or updated.
         
     | 
| 
      
 1458 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 1459 
     | 
    
         
            +
                #
         
     | 
| 
      
 1460 
     | 
    
         
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DescribeAddonConfigurationResponse AWS API Documentation
         
     | 
| 
      
 1461 
     | 
    
         
            +
                #
         
     | 
| 
      
 1462 
     | 
    
         
            +
                class DescribeAddonConfigurationResponse < Struct.new(
         
     | 
| 
      
 1463 
     | 
    
         
            +
                  :addon_name,
         
     | 
| 
      
 1464 
     | 
    
         
            +
                  :addon_version,
         
     | 
| 
      
 1465 
     | 
    
         
            +
                  :configuration_schema)
         
     | 
| 
      
 1466 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
      
 1467 
     | 
    
         
            +
                  include Aws::Structure
         
     | 
| 
      
 1468 
     | 
    
         
            +
                end
         
     | 
| 
      
 1469 
     | 
    
         
            +
             
     | 
| 
       1626 
1470 
     | 
    
         
             
                # @!attribute [rw] cluster_name
         
     | 
| 
       1627 
1471 
     | 
    
         
             
                #   The name of the cluster.
         
     | 
| 
       1628 
1472 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
         @@ -1662,19 +1506,6 @@ module Aws::EKS 
     | 
|
| 
       1662 
1506 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       1663 
1507 
     | 
    
         
             
                end
         
     | 
| 
       1664 
1508 
     | 
    
         | 
| 
       1665 
     | 
    
         
            -
                # @note When making an API call, you may pass DescribeAddonVersionsRequest
         
     | 
| 
       1666 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       1667 
     | 
    
         
            -
                #
         
     | 
| 
       1668 
     | 
    
         
            -
                #       {
         
     | 
| 
       1669 
     | 
    
         
            -
                #         kubernetes_version: "String",
         
     | 
| 
       1670 
     | 
    
         
            -
                #         max_results: 1,
         
     | 
| 
       1671 
     | 
    
         
            -
                #         next_token: "String",
         
     | 
| 
       1672 
     | 
    
         
            -
                #         addon_name: "String",
         
     | 
| 
       1673 
     | 
    
         
            -
                #         types: ["String"],
         
     | 
| 
       1674 
     | 
    
         
            -
                #         publishers: ["String"],
         
     | 
| 
       1675 
     | 
    
         
            -
                #         owners: ["String"],
         
     | 
| 
       1676 
     | 
    
         
            -
                #       }
         
     | 
| 
       1677 
     | 
    
         
            -
                #
         
     | 
| 
       1678 
1509 
     | 
    
         
             
                # @!attribute [rw] kubernetes_version
         
     | 
| 
       1679 
1510 
     | 
    
         
             
                #   The Kubernetes versions that you can use the add-on with.
         
     | 
| 
       1680 
1511 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
         @@ -1763,13 +1594,6 @@ module Aws::EKS 
     | 
|
| 
       1763 
1594 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       1764 
1595 
     | 
    
         
             
                end
         
     | 
| 
       1765 
1596 
     | 
    
         | 
| 
       1766 
     | 
    
         
            -
                # @note When making an API call, you may pass DescribeClusterRequest
         
     | 
| 
       1767 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       1768 
     | 
    
         
            -
                #
         
     | 
| 
       1769 
     | 
    
         
            -
                #       {
         
     | 
| 
       1770 
     | 
    
         
            -
                #         name: "String", # required
         
     | 
| 
       1771 
     | 
    
         
            -
                #       }
         
     | 
| 
       1772 
     | 
    
         
            -
                #
         
     | 
| 
       1773 
1597 
     | 
    
         
             
                # @!attribute [rw] name
         
     | 
| 
       1774 
1598 
     | 
    
         
             
                #   The name of the cluster to describe.
         
     | 
| 
       1775 
1599 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
         @@ -1794,14 +1618,6 @@ module Aws::EKS 
     | 
|
| 
       1794 
1618 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       1795 
1619 
     | 
    
         
             
                end
         
     | 
| 
       1796 
1620 
     | 
    
         | 
| 
       1797 
     | 
    
         
            -
                # @note When making an API call, you may pass DescribeFargateProfileRequest
         
     | 
| 
       1798 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       1799 
     | 
    
         
            -
                #
         
     | 
| 
       1800 
     | 
    
         
            -
                #       {
         
     | 
| 
       1801 
     | 
    
         
            -
                #         cluster_name: "String", # required
         
     | 
| 
       1802 
     | 
    
         
            -
                #         fargate_profile_name: "String", # required
         
     | 
| 
       1803 
     | 
    
         
            -
                #       }
         
     | 
| 
       1804 
     | 
    
         
            -
                #
         
     | 
| 
       1805 
1621 
     | 
    
         
             
                # @!attribute [rw] cluster_name
         
     | 
| 
       1806 
1622 
     | 
    
         
             
                #   The name of the Amazon EKS cluster associated with the Fargate
         
     | 
| 
       1807 
1623 
     | 
    
         
             
                #   profile.
         
     | 
| 
         @@ -1832,17 +1648,6 @@ module Aws::EKS 
     | 
|
| 
       1832 
1648 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       1833 
1649 
     | 
    
         
             
                end
         
     | 
| 
       1834 
1650 
     | 
    
         | 
| 
       1835 
     | 
    
         
            -
                # @note When making an API call, you may pass DescribeIdentityProviderConfigRequest
         
     | 
| 
       1836 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       1837 
     | 
    
         
            -
                #
         
     | 
| 
       1838 
     | 
    
         
            -
                #       {
         
     | 
| 
       1839 
     | 
    
         
            -
                #         cluster_name: "String", # required
         
     | 
| 
       1840 
     | 
    
         
            -
                #         identity_provider_config: { # required
         
     | 
| 
       1841 
     | 
    
         
            -
                #           type: "String", # required
         
     | 
| 
       1842 
     | 
    
         
            -
                #           name: "String", # required
         
     | 
| 
       1843 
     | 
    
         
            -
                #         },
         
     | 
| 
       1844 
     | 
    
         
            -
                #       }
         
     | 
| 
       1845 
     | 
    
         
            -
                #
         
     | 
| 
       1846 
1651 
     | 
    
         
             
                # @!attribute [rw] cluster_name
         
     | 
| 
       1847 
1652 
     | 
    
         
             
                #   The cluster name that the identity provider configuration is
         
     | 
| 
       1848 
1653 
     | 
    
         
             
                #   associated to.
         
     | 
| 
         @@ -1874,14 +1679,6 @@ module Aws::EKS 
     | 
|
| 
       1874 
1679 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       1875 
1680 
     | 
    
         
             
                end
         
     | 
| 
       1876 
1681 
     | 
    
         | 
| 
       1877 
     | 
    
         
            -
                # @note When making an API call, you may pass DescribeNodegroupRequest
         
     | 
| 
       1878 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       1879 
     | 
    
         
            -
                #
         
     | 
| 
       1880 
     | 
    
         
            -
                #       {
         
     | 
| 
       1881 
     | 
    
         
            -
                #         cluster_name: "String", # required
         
     | 
| 
       1882 
     | 
    
         
            -
                #         nodegroup_name: "String", # required
         
     | 
| 
       1883 
     | 
    
         
            -
                #       }
         
     | 
| 
       1884 
     | 
    
         
            -
                #
         
     | 
| 
       1885 
1682 
     | 
    
         
             
                # @!attribute [rw] cluster_name
         
     | 
| 
       1886 
1683 
     | 
    
         
             
                #   The name of the Amazon EKS cluster associated with the node group.
         
     | 
| 
       1887 
1684 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
         @@ -1911,16 +1708,6 @@ module Aws::EKS 
     | 
|
| 
       1911 
1708 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       1912 
1709 
     | 
    
         
             
                end
         
     | 
| 
       1913 
1710 
     | 
    
         | 
| 
       1914 
     | 
    
         
            -
                # @note When making an API call, you may pass DescribeUpdateRequest
         
     | 
| 
       1915 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       1916 
     | 
    
         
            -
                #
         
     | 
| 
       1917 
     | 
    
         
            -
                #       {
         
     | 
| 
       1918 
     | 
    
         
            -
                #         name: "String", # required
         
     | 
| 
       1919 
     | 
    
         
            -
                #         update_id: "String", # required
         
     | 
| 
       1920 
     | 
    
         
            -
                #         nodegroup_name: "String",
         
     | 
| 
       1921 
     | 
    
         
            -
                #         addon_name: "String",
         
     | 
| 
       1922 
     | 
    
         
            -
                #       }
         
     | 
| 
       1923 
     | 
    
         
            -
                #
         
     | 
| 
       1924 
1711 
     | 
    
         
             
                # @!attribute [rw] name
         
     | 
| 
       1925 
1712 
     | 
    
         
             
                #   The name of the Amazon EKS cluster associated with the update.
         
     | 
| 
       1926 
1713 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
         @@ -1967,18 +1754,6 @@ module Aws::EKS 
     | 
|
| 
       1967 
1754 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       1968 
1755 
     | 
    
         
             
                end
         
     | 
| 
       1969 
1756 
     | 
    
         | 
| 
       1970 
     | 
    
         
            -
                # @note When making an API call, you may pass DisassociateIdentityProviderConfigRequest
         
     | 
| 
       1971 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       1972 
     | 
    
         
            -
                #
         
     | 
| 
       1973 
     | 
    
         
            -
                #       {
         
     | 
| 
       1974 
     | 
    
         
            -
                #         cluster_name: "String", # required
         
     | 
| 
       1975 
     | 
    
         
            -
                #         identity_provider_config: { # required
         
     | 
| 
       1976 
     | 
    
         
            -
                #           type: "String", # required
         
     | 
| 
       1977 
     | 
    
         
            -
                #           name: "String", # required
         
     | 
| 
       1978 
     | 
    
         
            -
                #         },
         
     | 
| 
       1979 
     | 
    
         
            -
                #         client_request_token: "String",
         
     | 
| 
       1980 
     | 
    
         
            -
                #       }
         
     | 
| 
       1981 
     | 
    
         
            -
                #
         
     | 
| 
       1982 
1757 
     | 
    
         
             
                # @!attribute [rw] cluster_name
         
     | 
| 
       1983 
1758 
     | 
    
         
             
                #   The name of the cluster to disassociate an identity provider from.
         
     | 
| 
       1984 
1759 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
         @@ -2019,16 +1794,6 @@ module Aws::EKS 
     | 
|
| 
       2019 
1794 
     | 
    
         | 
| 
       2020 
1795 
     | 
    
         
             
                # The encryption configuration for the cluster.
         
     | 
| 
       2021 
1796 
     | 
    
         
             
                #
         
     | 
| 
       2022 
     | 
    
         
            -
                # @note When making an API call, you may pass EncryptionConfig
         
     | 
| 
       2023 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       2024 
     | 
    
         
            -
                #
         
     | 
| 
       2025 
     | 
    
         
            -
                #       {
         
     | 
| 
       2026 
     | 
    
         
            -
                #         resources: ["String"],
         
     | 
| 
       2027 
     | 
    
         
            -
                #         provider: {
         
     | 
| 
       2028 
     | 
    
         
            -
                #           key_arn: "String",
         
     | 
| 
       2029 
     | 
    
         
            -
                #         },
         
     | 
| 
       2030 
     | 
    
         
            -
                #       }
         
     | 
| 
       2031 
     | 
    
         
            -
                #
         
     | 
| 
       2032 
1797 
     | 
    
         
             
                # @!attribute [rw] resources
         
     | 
| 
       2033 
1798 
     | 
    
         
             
                #   Specifies the resources to be encrypted. The only supported value is
         
     | 
| 
       2034 
1799 
     | 
    
         
             
                #   "secrets".
         
     | 
| 
         @@ -2164,16 +1929,6 @@ module Aws::EKS 
     | 
|
| 
       2164 
1929 
     | 
    
         | 
| 
       2165 
1930 
     | 
    
         
             
                # An object representing an Fargate profile selector.
         
     | 
| 
       2166 
1931 
     | 
    
         
             
                #
         
     | 
| 
       2167 
     | 
    
         
            -
                # @note When making an API call, you may pass FargateProfileSelector
         
     | 
| 
       2168 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       2169 
     | 
    
         
            -
                #
         
     | 
| 
       2170 
     | 
    
         
            -
                #       {
         
     | 
| 
       2171 
     | 
    
         
            -
                #         namespace: "String",
         
     | 
| 
       2172 
     | 
    
         
            -
                #         labels: {
         
     | 
| 
       2173 
     | 
    
         
            -
                #           "String" => "String",
         
     | 
| 
       2174 
     | 
    
         
            -
                #         },
         
     | 
| 
       2175 
     | 
    
         
            -
                #       }
         
     | 
| 
       2176 
     | 
    
         
            -
                #
         
     | 
| 
       2177 
1932 
     | 
    
         
             
                # @!attribute [rw] namespace
         
     | 
| 
       2178 
1933 
     | 
    
         
             
                #   The Kubernetes namespace that the selector should match.
         
     | 
| 
       2179 
1934 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
         @@ -2214,14 +1969,6 @@ module Aws::EKS 
     | 
|
| 
       2214 
1969 
     | 
    
         | 
| 
       2215 
1970 
     | 
    
         
             
                # An object representing an identity provider configuration.
         
     | 
| 
       2216 
1971 
     | 
    
         
             
                #
         
     | 
| 
       2217 
     | 
    
         
            -
                # @note When making an API call, you may pass IdentityProviderConfig
         
     | 
| 
       2218 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       2219 
     | 
    
         
            -
                #
         
     | 
| 
       2220 
     | 
    
         
            -
                #       {
         
     | 
| 
       2221 
     | 
    
         
            -
                #         type: "String", # required
         
     | 
| 
       2222 
     | 
    
         
            -
                #         name: "String", # required
         
     | 
| 
       2223 
     | 
    
         
            -
                #       }
         
     | 
| 
       2224 
     | 
    
         
            -
                #
         
     | 
| 
       2225 
1972 
     | 
    
         
             
                # @!attribute [rw] type
         
     | 
| 
       2226 
1973 
     | 
    
         
             
                #   The type of the identity provider configuration. The only type
         
     | 
| 
       2227 
1974 
     | 
    
         
             
                #   available is `oidc`.
         
     | 
| 
         @@ -2412,14 +2159,6 @@ module Aws::EKS 
     | 
|
| 
       2412 
2159 
     | 
    
         | 
| 
       2413 
2160 
     | 
    
         
             
                # The Kubernetes network configuration for the cluster.
         
     | 
| 
       2414 
2161 
     | 
    
         
             
                #
         
     | 
| 
       2415 
     | 
    
         
            -
                # @note When making an API call, you may pass KubernetesNetworkConfigRequest
         
     | 
| 
       2416 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       2417 
     | 
    
         
            -
                #
         
     | 
| 
       2418 
     | 
    
         
            -
                #       {
         
     | 
| 
       2419 
     | 
    
         
            -
                #         service_ipv_4_cidr: "String",
         
     | 
| 
       2420 
     | 
    
         
            -
                #         ip_family: "ipv4", # accepts ipv4, ipv6
         
     | 
| 
       2421 
     | 
    
         
            -
                #       }
         
     | 
| 
       2422 
     | 
    
         
            -
                #
         
     | 
| 
       2423 
2162 
     | 
    
         
             
                # @!attribute [rw] service_ipv_4_cidr
         
     | 
| 
       2424 
2163 
     | 
    
         
             
                #   Don't specify a value if you select `ipv6` for **ipFamily**. The
         
     | 
| 
       2425 
2164 
     | 
    
         
             
                #   CIDR block to assign Kubernetes service IP addresses from. If you
         
     | 
| 
         @@ -2482,7 +2221,7 @@ module Aws::EKS 
     | 
|
| 
       2482 
2221 
     | 
    
         
             
                #   assigned from. Kubernetes assigns addresses from an IPv4 CIDR block
         
     | 
| 
       2483 
2222 
     | 
    
         
             
                #   assigned to a subnet that the node is in. If you didn't specify a
         
     | 
| 
       2484 
2223 
     | 
    
         
             
                #   CIDR block when you created the cluster, then Kubernetes assigns
         
     | 
| 
       2485 
     | 
    
         
            -
                #   addresses from either the 10.100.0.0/16 or 172.20.0.0/16 CIDR
         
     | 
| 
      
 2224 
     | 
    
         
            +
                #   addresses from either the `10.100.0.0/16` or `172.20.0.0/16` CIDR
         
     | 
| 
       2486 
2225 
     | 
    
         
             
                #   blocks. If this was specified, then it was specified when the
         
     | 
| 
       2487 
2226 
     | 
    
         
             
                #   cluster was created and it can't be changed.
         
     | 
| 
       2488 
2227 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
         @@ -2537,15 +2276,6 @@ module Aws::EKS 
     | 
|
| 
       2537 
2276 
     | 
    
         
             
                # [6]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateLaunchTemplate.html
         
     | 
| 
       2538 
2277 
     | 
    
         
             
                # [7]: https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html
         
     | 
| 
       2539 
2278 
     | 
    
         
             
                #
         
     | 
| 
       2540 
     | 
    
         
            -
                # @note When making an API call, you may pass LaunchTemplateSpecification
         
     | 
| 
       2541 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       2542 
     | 
    
         
            -
                #
         
     | 
| 
       2543 
     | 
    
         
            -
                #       {
         
     | 
| 
       2544 
     | 
    
         
            -
                #         name: "String",
         
     | 
| 
       2545 
     | 
    
         
            -
                #         version: "String",
         
     | 
| 
       2546 
     | 
    
         
            -
                #         id: "String",
         
     | 
| 
       2547 
     | 
    
         
            -
                #       }
         
     | 
| 
       2548 
     | 
    
         
            -
                #
         
     | 
| 
       2549 
2279 
     | 
    
         
             
                # @!attribute [rw] name
         
     | 
| 
       2550 
2280 
     | 
    
         
             
                #   The name of the launch template.
         
     | 
| 
       2551 
2281 
     | 
    
         
             
                #
         
     | 
| 
         @@ -2575,15 +2305,6 @@ module Aws::EKS 
     | 
|
| 
       2575 
2305 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       2576 
2306 
     | 
    
         
             
                end
         
     | 
| 
       2577 
2307 
     | 
    
         | 
| 
       2578 
     | 
    
         
            -
                # @note When making an API call, you may pass ListAddonsRequest
         
     | 
| 
       2579 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       2580 
     | 
    
         
            -
                #
         
     | 
| 
       2581 
     | 
    
         
            -
                #       {
         
     | 
| 
       2582 
     | 
    
         
            -
                #         cluster_name: "ClusterName", # required
         
     | 
| 
       2583 
     | 
    
         
            -
                #         max_results: 1,
         
     | 
| 
       2584 
     | 
    
         
            -
                #         next_token: "String",
         
     | 
| 
       2585 
     | 
    
         
            -
                #       }
         
     | 
| 
       2586 
     | 
    
         
            -
                #
         
     | 
| 
       2587 
2308 
     | 
    
         
             
                # @!attribute [rw] cluster_name
         
     | 
| 
       2588 
2309 
     | 
    
         
             
                #   The name of the cluster.
         
     | 
| 
       2589 
2310 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
         @@ -2649,15 +2370,6 @@ module Aws::EKS 
     | 
|
| 
       2649 
2370 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       2650 
2371 
     | 
    
         
             
                end
         
     | 
| 
       2651 
2372 
     | 
    
         | 
| 
       2652 
     | 
    
         
            -
                # @note When making an API call, you may pass ListClustersRequest
         
     | 
| 
       2653 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       2654 
     | 
    
         
            -
                #
         
     | 
| 
       2655 
     | 
    
         
            -
                #       {
         
     | 
| 
       2656 
     | 
    
         
            -
                #         max_results: 1,
         
     | 
| 
       2657 
     | 
    
         
            -
                #         next_token: "String",
         
     | 
| 
       2658 
     | 
    
         
            -
                #         include: ["String"],
         
     | 
| 
       2659 
     | 
    
         
            -
                #       }
         
     | 
| 
       2660 
     | 
    
         
            -
                #
         
     | 
| 
       2661 
2373 
     | 
    
         
             
                # @!attribute [rw] max_results
         
     | 
| 
       2662 
2374 
     | 
    
         
             
                #   The maximum number of cluster results returned by `ListClusters` in
         
     | 
| 
       2663 
2375 
     | 
    
         
             
                #   paginated output. When you use this parameter, `ListClusters`
         
     | 
| 
         @@ -2720,15 +2432,6 @@ module Aws::EKS 
     | 
|
| 
       2720 
2432 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       2721 
2433 
     | 
    
         
             
                end
         
     | 
| 
       2722 
2434 
     | 
    
         | 
| 
       2723 
     | 
    
         
            -
                # @note When making an API call, you may pass ListFargateProfilesRequest
         
     | 
| 
       2724 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       2725 
     | 
    
         
            -
                #
         
     | 
| 
       2726 
     | 
    
         
            -
                #       {
         
     | 
| 
       2727 
     | 
    
         
            -
                #         cluster_name: "String", # required
         
     | 
| 
       2728 
     | 
    
         
            -
                #         max_results: 1,
         
     | 
| 
       2729 
     | 
    
         
            -
                #         next_token: "String",
         
     | 
| 
       2730 
     | 
    
         
            -
                #       }
         
     | 
| 
       2731 
     | 
    
         
            -
                #
         
     | 
| 
       2732 
2435 
     | 
    
         
             
                # @!attribute [rw] cluster_name
         
     | 
| 
       2733 
2436 
     | 
    
         
             
                #   The name of the Amazon EKS cluster that you would like to list
         
     | 
| 
       2734 
2437 
     | 
    
         
             
                #   Fargate profiles in.
         
     | 
| 
         @@ -2786,15 +2489,6 @@ module Aws::EKS 
     | 
|
| 
       2786 
2489 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       2787 
2490 
     | 
    
         
             
                end
         
     | 
| 
       2788 
2491 
     | 
    
         | 
| 
       2789 
     | 
    
         
            -
                # @note When making an API call, you may pass ListIdentityProviderConfigsRequest
         
     | 
| 
       2790 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       2791 
     | 
    
         
            -
                #
         
     | 
| 
       2792 
     | 
    
         
            -
                #       {
         
     | 
| 
       2793 
     | 
    
         
            -
                #         cluster_name: "String", # required
         
     | 
| 
       2794 
     | 
    
         
            -
                #         max_results: 1,
         
     | 
| 
       2795 
     | 
    
         
            -
                #         next_token: "String",
         
     | 
| 
       2796 
     | 
    
         
            -
                #       }
         
     | 
| 
       2797 
     | 
    
         
            -
                #
         
     | 
| 
       2798 
2492 
     | 
    
         
             
                # @!attribute [rw] cluster_name
         
     | 
| 
       2799 
2493 
     | 
    
         
             
                #   The cluster name that you want to list identity provider
         
     | 
| 
       2800 
2494 
     | 
    
         
             
                #   configurations for.
         
     | 
| 
         @@ -2851,15 +2545,6 @@ module Aws::EKS 
     | 
|
| 
       2851 
2545 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       2852 
2546 
     | 
    
         
             
                end
         
     | 
| 
       2853 
2547 
     | 
    
         | 
| 
       2854 
     | 
    
         
            -
                # @note When making an API call, you may pass ListNodegroupsRequest
         
     | 
| 
       2855 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       2856 
     | 
    
         
            -
                #
         
     | 
| 
       2857 
     | 
    
         
            -
                #       {
         
     | 
| 
       2858 
     | 
    
         
            -
                #         cluster_name: "String", # required
         
     | 
| 
       2859 
     | 
    
         
            -
                #         max_results: 1,
         
     | 
| 
       2860 
     | 
    
         
            -
                #         next_token: "String",
         
     | 
| 
       2861 
     | 
    
         
            -
                #       }
         
     | 
| 
       2862 
     | 
    
         
            -
                #
         
     | 
| 
       2863 
2548 
     | 
    
         
             
                # @!attribute [rw] cluster_name
         
     | 
| 
       2864 
2549 
     | 
    
         
             
                #   The name of the Amazon EKS cluster that you would like to list node
         
     | 
| 
       2865 
2550 
     | 
    
         
             
                #   groups in.
         
     | 
| 
         @@ -2916,13 +2601,6 @@ module Aws::EKS 
     | 
|
| 
       2916 
2601 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       2917 
2602 
     | 
    
         
             
                end
         
     | 
| 
       2918 
2603 
     | 
    
         | 
| 
       2919 
     | 
    
         
            -
                # @note When making an API call, you may pass ListTagsForResourceRequest
         
     | 
| 
       2920 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       2921 
     | 
    
         
            -
                #
         
     | 
| 
       2922 
     | 
    
         
            -
                #       {
         
     | 
| 
       2923 
     | 
    
         
            -
                #         resource_arn: "String", # required
         
     | 
| 
       2924 
     | 
    
         
            -
                #       }
         
     | 
| 
       2925 
     | 
    
         
            -
                #
         
     | 
| 
       2926 
2604 
     | 
    
         
             
                # @!attribute [rw] resource_arn
         
     | 
| 
       2927 
2605 
     | 
    
         
             
                #   The Amazon Resource Name (ARN) that identifies the resource for
         
     | 
| 
       2928 
2606 
     | 
    
         
             
                #   which to list the tags. Currently, the supported resources are
         
     | 
| 
         @@ -2949,17 +2627,6 @@ module Aws::EKS 
     | 
|
| 
       2949 
2627 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       2950 
2628 
     | 
    
         
             
                end
         
     | 
| 
       2951 
2629 
     | 
    
         | 
| 
       2952 
     | 
    
         
            -
                # @note When making an API call, you may pass ListUpdatesRequest
         
     | 
| 
       2953 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       2954 
     | 
    
         
            -
                #
         
     | 
| 
       2955 
     | 
    
         
            -
                #       {
         
     | 
| 
       2956 
     | 
    
         
            -
                #         name: "String", # required
         
     | 
| 
       2957 
     | 
    
         
            -
                #         nodegroup_name: "String",
         
     | 
| 
       2958 
     | 
    
         
            -
                #         addon_name: "String",
         
     | 
| 
       2959 
     | 
    
         
            -
                #         next_token: "String",
         
     | 
| 
       2960 
     | 
    
         
            -
                #         max_results: 1,
         
     | 
| 
       2961 
     | 
    
         
            -
                #       }
         
     | 
| 
       2962 
     | 
    
         
            -
                #
         
     | 
| 
       2963 
2630 
     | 
    
         
             
                # @!attribute [rw] name
         
     | 
| 
       2964 
2631 
     | 
    
         
             
                #   The name of the Amazon EKS cluster to list updates for.
         
     | 
| 
       2965 
2632 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
         @@ -3025,14 +2692,6 @@ module Aws::EKS 
     | 
|
| 
       3025 
2692 
     | 
    
         
             
                # An object representing the enabled or disabled Kubernetes control
         
     | 
| 
       3026 
2693 
     | 
    
         
             
                # plane logs for your cluster.
         
     | 
| 
       3027 
2694 
     | 
    
         
             
                #
         
     | 
| 
       3028 
     | 
    
         
            -
                # @note When making an API call, you may pass LogSetup
         
     | 
| 
       3029 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       3030 
     | 
    
         
            -
                #
         
     | 
| 
       3031 
     | 
    
         
            -
                #       {
         
     | 
| 
       3032 
     | 
    
         
            -
                #         types: ["api"], # accepts api, audit, authenticator, controllerManager, scheduler
         
     | 
| 
       3033 
     | 
    
         
            -
                #         enabled: false,
         
     | 
| 
       3034 
     | 
    
         
            -
                #       }
         
     | 
| 
       3035 
     | 
    
         
            -
                #
         
     | 
| 
       3036 
2695 
     | 
    
         
             
                # @!attribute [rw] types
         
     | 
| 
       3037 
2696 
     | 
    
         
             
                #   The available cluster control plane log types.
         
     | 
| 
       3038 
2697 
     | 
    
         
             
                #   @return [Array<String>]
         
     | 
| 
         @@ -3056,18 +2715,6 @@ module Aws::EKS 
     | 
|
| 
       3056 
2715 
     | 
    
         
             
                # An object representing the logging configuration for resources in your
         
     | 
| 
       3057 
2716 
     | 
    
         
             
                # cluster.
         
     | 
| 
       3058 
2717 
     | 
    
         
             
                #
         
     | 
| 
       3059 
     | 
    
         
            -
                # @note When making an API call, you may pass Logging
         
     | 
| 
       3060 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       3061 
     | 
    
         
            -
                #
         
     | 
| 
       3062 
     | 
    
         
            -
                #       {
         
     | 
| 
       3063 
     | 
    
         
            -
                #         cluster_logging: [
         
     | 
| 
       3064 
     | 
    
         
            -
                #           {
         
     | 
| 
       3065 
     | 
    
         
            -
                #             types: ["api"], # accepts api, audit, authenticator, controllerManager, scheduler
         
     | 
| 
       3066 
     | 
    
         
            -
                #             enabled: false,
         
     | 
| 
       3067 
     | 
    
         
            -
                #           },
         
     | 
| 
       3068 
     | 
    
         
            -
                #         ],
         
     | 
| 
       3069 
     | 
    
         
            -
                #       }
         
     | 
| 
       3070 
     | 
    
         
            -
                #
         
     | 
| 
       3071 
2718 
     | 
    
         
             
                # @!attribute [rw] cluster_logging
         
     | 
| 
       3072 
2719 
     | 
    
         
             
                #   The cluster control plane logging configuration for your cluster.
         
     | 
| 
       3073 
2720 
     | 
    
         
             
                #   @return [Array<Types::LogSetup>]
         
     | 
| 
         @@ -3308,15 +2955,6 @@ module Aws::EKS 
     | 
|
| 
       3308 
2955 
     | 
    
         
             
                # node group, you must specify all or none of the properties. When
         
     | 
| 
       3309 
2956 
     | 
    
         
             
                # updating a node group, you can specify any or none of the properties.
         
     | 
| 
       3310 
2957 
     | 
    
         
             
                #
         
     | 
| 
       3311 
     | 
    
         
            -
                # @note When making an API call, you may pass NodegroupScalingConfig
         
     | 
| 
       3312 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       3313 
     | 
    
         
            -
                #
         
     | 
| 
       3314 
     | 
    
         
            -
                #       {
         
     | 
| 
       3315 
     | 
    
         
            -
                #         min_size: 1,
         
     | 
| 
       3316 
     | 
    
         
            -
                #         max_size: 1,
         
     | 
| 
       3317 
     | 
    
         
            -
                #         desired_size: 1,
         
     | 
| 
       3318 
     | 
    
         
            -
                #       }
         
     | 
| 
       3319 
     | 
    
         
            -
                #
         
     | 
| 
       3320 
2958 
     | 
    
         
             
                # @!attribute [rw] min_size
         
     | 
| 
       3321 
2959 
     | 
    
         
             
                #   The minimum number of nodes that the managed node group can scale in
         
     | 
| 
       3322 
2960 
     | 
    
         
             
                #   to.
         
     | 
| 
         @@ -3370,14 +3008,6 @@ module Aws::EKS 
     | 
|
| 
       3370 
3008 
     | 
    
         | 
| 
       3371 
3009 
     | 
    
         
             
                # The node group update configuration.
         
     | 
| 
       3372 
3010 
     | 
    
         
             
                #
         
     | 
| 
       3373 
     | 
    
         
            -
                # @note When making an API call, you may pass NodegroupUpdateConfig
         
     | 
| 
       3374 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       3375 
     | 
    
         
            -
                #
         
     | 
| 
       3376 
     | 
    
         
            -
                #       {
         
     | 
| 
       3377 
     | 
    
         
            -
                #         max_unavailable: 1,
         
     | 
| 
       3378 
     | 
    
         
            -
                #         max_unavailable_percentage: 1,
         
     | 
| 
       3379 
     | 
    
         
            -
                #       }
         
     | 
| 
       3380 
     | 
    
         
            -
                #
         
     | 
| 
       3381 
3011 
     | 
    
         
             
                # @!attribute [rw] max_unavailable
         
     | 
| 
       3382 
3012 
     | 
    
         
             
                #   The maximum number of nodes unavailable at once during a version
         
     | 
| 
       3383 
3013 
     | 
    
         
             
                #   update. Nodes will be updated in parallel. This value or
         
     | 
| 
         @@ -3524,22 +3154,6 @@ module Aws::EKS 
     | 
|
| 
       3524 
3154 
     | 
    
         
             
                #
         
     | 
| 
       3525 
3155 
     | 
    
         
             
                # [1]: https://docs.aws.amazon.com/eks/latest/userguide/authenticate-oidc-identity-provider.html
         
     | 
| 
       3526 
3156 
     | 
    
         
             
                #
         
     | 
| 
       3527 
     | 
    
         
            -
                # @note When making an API call, you may pass OidcIdentityProviderConfigRequest
         
     | 
| 
       3528 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       3529 
     | 
    
         
            -
                #
         
     | 
| 
       3530 
     | 
    
         
            -
                #       {
         
     | 
| 
       3531 
     | 
    
         
            -
                #         identity_provider_config_name: "String", # required
         
     | 
| 
       3532 
     | 
    
         
            -
                #         issuer_url: "String", # required
         
     | 
| 
       3533 
     | 
    
         
            -
                #         client_id: "String", # required
         
     | 
| 
       3534 
     | 
    
         
            -
                #         username_claim: "String",
         
     | 
| 
       3535 
     | 
    
         
            -
                #         username_prefix: "String",
         
     | 
| 
       3536 
     | 
    
         
            -
                #         groups_claim: "String",
         
     | 
| 
       3537 
     | 
    
         
            -
                #         groups_prefix: "String",
         
     | 
| 
       3538 
     | 
    
         
            -
                #         required_claims: {
         
     | 
| 
       3539 
     | 
    
         
            -
                #           "requiredClaimsKey" => "requiredClaimsValue",
         
     | 
| 
       3540 
     | 
    
         
            -
                #         },
         
     | 
| 
       3541 
     | 
    
         
            -
                #       }
         
     | 
| 
       3542 
     | 
    
         
            -
                #
         
     | 
| 
       3543 
3157 
     | 
    
         
             
                # @!attribute [rw] identity_provider_config_name
         
     | 
| 
       3544 
3158 
     | 
    
         
             
                #   The name of the OIDC provider configuration.
         
     | 
| 
       3545 
3159 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
         @@ -3625,17 +3239,6 @@ module Aws::EKS 
     | 
|
| 
       3625 
3239 
     | 
    
         
             
                #
         
     | 
| 
       3626 
3240 
     | 
    
         
             
                # [1]: https://docs.aws.amazon.com/eks/latest/userguide/eks-outposts-local-cluster-create.html
         
     | 
| 
       3627 
3241 
     | 
    
         
             
                #
         
     | 
| 
       3628 
     | 
    
         
            -
                # @note When making an API call, you may pass OutpostConfigRequest
         
     | 
| 
       3629 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       3630 
     | 
    
         
            -
                #
         
     | 
| 
       3631 
     | 
    
         
            -
                #       {
         
     | 
| 
       3632 
     | 
    
         
            -
                #         outpost_arns: ["String"], # required
         
     | 
| 
       3633 
     | 
    
         
            -
                #         control_plane_instance_type: "String", # required
         
     | 
| 
       3634 
     | 
    
         
            -
                #         control_plane_placement: {
         
     | 
| 
       3635 
     | 
    
         
            -
                #           group_name: "String",
         
     | 
| 
       3636 
     | 
    
         
            -
                #         },
         
     | 
| 
       3637 
     | 
    
         
            -
                #       }
         
     | 
| 
       3638 
     | 
    
         
            -
                #
         
     | 
| 
       3639 
3242 
     | 
    
         
             
                # @!attribute [rw] outpost_arns
         
     | 
| 
       3640 
3243 
     | 
    
         
             
                #   The ARN of the Outpost that you want to use for your local Amazon
         
     | 
| 
       3641 
3244 
     | 
    
         
             
                #   EKS cluster on Outposts. Only a single Outpost ARN is supported.
         
     | 
| 
         @@ -3718,13 +3321,6 @@ module Aws::EKS 
     | 
|
| 
       3718 
3321 
     | 
    
         
             
                # Identifies the Key Management Service (KMS) key used to encrypt the
         
     | 
| 
       3719 
3322 
     | 
    
         
             
                # secrets.
         
     | 
| 
       3720 
3323 
     | 
    
         
             
                #
         
     | 
| 
       3721 
     | 
    
         
            -
                # @note When making an API call, you may pass Provider
         
     | 
| 
       3722 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       3723 
     | 
    
         
            -
                #
         
     | 
| 
       3724 
     | 
    
         
            -
                #       {
         
     | 
| 
       3725 
     | 
    
         
            -
                #         key_arn: "String",
         
     | 
| 
       3726 
     | 
    
         
            -
                #       }
         
     | 
| 
       3727 
     | 
    
         
            -
                #
         
     | 
| 
       3728 
3324 
     | 
    
         
             
                # @!attribute [rw] key_arn
         
     | 
| 
       3729 
3325 
     | 
    
         
             
                #   Amazon Resource Name (ARN) or alias of the KMS key. The KMS key must
         
     | 
| 
       3730 
3326 
     | 
    
         
             
                #   be symmetric, created in the same region as the cluster, and if the
         
     | 
| 
         @@ -3746,21 +3342,6 @@ module Aws::EKS 
     | 
|
| 
       3746 
3342 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       3747 
3343 
     | 
    
         
             
                end
         
     | 
| 
       3748 
3344 
     | 
    
         | 
| 
       3749 
     | 
    
         
            -
                # @note When making an API call, you may pass RegisterClusterRequest
         
     | 
| 
       3750 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       3751 
     | 
    
         
            -
                #
         
     | 
| 
       3752 
     | 
    
         
            -
                #       {
         
     | 
| 
       3753 
     | 
    
         
            -
                #         name: "ClusterName", # required
         
     | 
| 
       3754 
     | 
    
         
            -
                #         connector_config: { # required
         
     | 
| 
       3755 
     | 
    
         
            -
                #           role_arn: "String", # required
         
     | 
| 
       3756 
     | 
    
         
            -
                #           provider: "EKS_ANYWHERE", # required, accepts EKS_ANYWHERE, ANTHOS, GKE, AKS, OPENSHIFT, TANZU, RANCHER, EC2, OTHER
         
     | 
| 
       3757 
     | 
    
         
            -
                #         },
         
     | 
| 
       3758 
     | 
    
         
            -
                #         client_request_token: "String",
         
     | 
| 
       3759 
     | 
    
         
            -
                #         tags: {
         
     | 
| 
       3760 
     | 
    
         
            -
                #           "TagKey" => "TagValue",
         
     | 
| 
       3761 
     | 
    
         
            -
                #         },
         
     | 
| 
       3762 
     | 
    
         
            -
                #       }
         
     | 
| 
       3763 
     | 
    
         
            -
                #
         
     | 
| 
       3764 
3345 
     | 
    
         
             
                # @!attribute [rw] name
         
     | 
| 
       3765 
3346 
     | 
    
         
             
                #   Define a unique name for this cluster for your Region.
         
     | 
| 
       3766 
3347 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
         @@ -3811,32 +3392,29 @@ module Aws::EKS 
     | 
|
| 
       3811 
3392 
     | 
    
         
             
                # An object representing the remote access configuration for the managed
         
     | 
| 
       3812 
3393 
     | 
    
         
             
                # node group.
         
     | 
| 
       3813 
3394 
     | 
    
         
             
                #
         
     | 
| 
       3814 
     | 
    
         
            -
                # @note When making an API call, you may pass RemoteAccessConfig
         
     | 
| 
       3815 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       3816 
     | 
    
         
            -
                #
         
     | 
| 
       3817 
     | 
    
         
            -
                #       {
         
     | 
| 
       3818 
     | 
    
         
            -
                #         ec2_ssh_key: "String",
         
     | 
| 
       3819 
     | 
    
         
            -
                #         source_security_groups: ["String"],
         
     | 
| 
       3820 
     | 
    
         
            -
                #       }
         
     | 
| 
       3821 
     | 
    
         
            -
                #
         
     | 
| 
       3822 
3395 
     | 
    
         
             
                # @!attribute [rw] ec2_ssh_key
         
     | 
| 
       3823 
     | 
    
         
            -
                #   The Amazon EC2 SSH key that provides access for SSH 
     | 
| 
       3824 
     | 
    
         
            -
                #   with the nodes in the managed node group. For more 
     | 
| 
       3825 
     | 
    
         
            -
                #   [Amazon EC2 key pairs and Linux instances][1] in 
     | 
| 
       3826 
     | 
    
         
            -
                #   Compute Cloud User Guide for Linux Instances*.
         
     | 
| 
      
 3396 
     | 
    
         
            +
                #   The Amazon EC2 SSH key name that provides access for SSH
         
     | 
| 
      
 3397 
     | 
    
         
            +
                #   communication with the nodes in the managed node group. For more
         
     | 
| 
      
 3398 
     | 
    
         
            +
                #   information, see [Amazon EC2 key pairs and Linux instances][1] in
         
     | 
| 
      
 3399 
     | 
    
         
            +
                #   the *Amazon Elastic Compute Cloud User Guide for Linux Instances*.
         
     | 
| 
      
 3400 
     | 
    
         
            +
                #   For Windows, an Amazon EC2 SSH key is used to obtain the RDP
         
     | 
| 
      
 3401 
     | 
    
         
            +
                #   password. For more information, see [Amazon EC2 key pairs and
         
     | 
| 
      
 3402 
     | 
    
         
            +
                #   Windows instances][2] in the *Amazon Elastic Compute Cloud User
         
     | 
| 
      
 3403 
     | 
    
         
            +
                #   Guide for Windows Instances*.
         
     | 
| 
       3827 
3404 
     | 
    
         
             
                #
         
     | 
| 
       3828 
3405 
     | 
    
         
             
                #
         
     | 
| 
       3829 
3406 
     | 
    
         
             
                #
         
     | 
| 
       3830 
3407 
     | 
    
         
             
                #   [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-key-pairs.html
         
     | 
| 
      
 3408 
     | 
    
         
            +
                #   [2]: https://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/ec2-key-pairs.html
         
     | 
| 
       3831 
3409 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       3832 
3410 
     | 
    
         
             
                #
         
     | 
| 
       3833 
3411 
     | 
    
         
             
                # @!attribute [rw] source_security_groups
         
     | 
| 
       3834 
     | 
    
         
            -
                #   The security  
     | 
| 
       3835 
     | 
    
         
            -
                #   nodes. If you specify an Amazon EC2 
     | 
| 
       3836 
     | 
    
         
            -
                #   source security group when you create a 
     | 
| 
       3837 
     | 
    
         
            -
                #   port  
     | 
| 
       3838 
     | 
    
         
            -
                #   information, see [Security Groups 
     | 
| 
       3839 
     | 
    
         
            -
                #   Virtual Private Cloud User Guide*.
         
     | 
| 
      
 3412 
     | 
    
         
            +
                #   The security group IDs that are allowed SSH access (port 22) to the
         
     | 
| 
      
 3413 
     | 
    
         
            +
                #   nodes. For Windows, the port is 3389. If you specify an Amazon EC2
         
     | 
| 
      
 3414 
     | 
    
         
            +
                #   SSH key but don't specify a source security group when you create a
         
     | 
| 
      
 3415 
     | 
    
         
            +
                #   managed node group, then the port on the nodes is opened to the
         
     | 
| 
      
 3416 
     | 
    
         
            +
                #   internet (`0.0.0.0/0`). For more information, see [Security Groups
         
     | 
| 
      
 3417 
     | 
    
         
            +
                #   for Your VPC][1] in the *Amazon Virtual Private Cloud User Guide*.
         
     | 
| 
       3840 
3418 
     | 
    
         
             
                #
         
     | 
| 
       3841 
3419 
     | 
    
         
             
                #
         
     | 
| 
       3842 
3420 
     | 
    
         
             
                #
         
     | 
| 
         @@ -3991,16 +3569,6 @@ module Aws::EKS 
     | 
|
| 
       3991 
3569 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       3992 
3570 
     | 
    
         
             
                end
         
     | 
| 
       3993 
3571 
     | 
    
         | 
| 
       3994 
     | 
    
         
            -
                # @note When making an API call, you may pass TagResourceRequest
         
     | 
| 
       3995 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       3996 
     | 
    
         
            -
                #
         
     | 
| 
       3997 
     | 
    
         
            -
                #       {
         
     | 
| 
       3998 
     | 
    
         
            -
                #         resource_arn: "String", # required
         
     | 
| 
       3999 
     | 
    
         
            -
                #         tags: { # required
         
     | 
| 
       4000 
     | 
    
         
            -
                #           "TagKey" => "TagValue",
         
     | 
| 
       4001 
     | 
    
         
            -
                #         },
         
     | 
| 
       4002 
     | 
    
         
            -
                #       }
         
     | 
| 
       4003 
     | 
    
         
            -
                #
         
     | 
| 
       4004 
3572 
     | 
    
         
             
                # @!attribute [rw] resource_arn
         
     | 
| 
       4005 
3573 
     | 
    
         
             
                #   The Amazon Resource Name (ARN) of the resource to which to add tags.
         
     | 
| 
       4006 
3574 
     | 
    
         
             
                #   Currently, the supported resources are Amazon EKS clusters and
         
     | 
| 
         @@ -4032,15 +3600,6 @@ module Aws::EKS 
     | 
|
| 
       4032 
3600 
     | 
    
         
             
                #
         
     | 
| 
       4033 
3601 
     | 
    
         
             
                # [1]: https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html
         
     | 
| 
       4034 
3602 
     | 
    
         
             
                #
         
     | 
| 
       4035 
     | 
    
         
            -
                # @note When making an API call, you may pass Taint
         
     | 
| 
       4036 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       4037 
     | 
    
         
            -
                #
         
     | 
| 
       4038 
     | 
    
         
            -
                #       {
         
     | 
| 
       4039 
     | 
    
         
            -
                #         key: "taintKey",
         
     | 
| 
       4040 
     | 
    
         
            -
                #         value: "taintValue",
         
     | 
| 
       4041 
     | 
    
         
            -
                #         effect: "NO_SCHEDULE", # accepts NO_SCHEDULE, NO_EXECUTE, PREFER_NO_SCHEDULE
         
     | 
| 
       4042 
     | 
    
         
            -
                #       }
         
     | 
| 
       4043 
     | 
    
         
            -
                #
         
     | 
| 
       4044 
3603 
     | 
    
         
             
                # @!attribute [rw] key
         
     | 
| 
       4045 
3604 
     | 
    
         
             
                #   The key of the taint.
         
     | 
| 
       4046 
3605 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
         @@ -4095,14 +3654,6 @@ module Aws::EKS 
     | 
|
| 
       4095 
3654 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       4096 
3655 
     | 
    
         
             
                end
         
     | 
| 
       4097 
3656 
     | 
    
         | 
| 
       4098 
     | 
    
         
            -
                # @note When making an API call, you may pass UntagResourceRequest
         
     | 
| 
       4099 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       4100 
     | 
    
         
            -
                #
         
     | 
| 
       4101 
     | 
    
         
            -
                #       {
         
     | 
| 
       4102 
     | 
    
         
            -
                #         resource_arn: "String", # required
         
     | 
| 
       4103 
     | 
    
         
            -
                #         tag_keys: ["TagKey"], # required
         
     | 
| 
       4104 
     | 
    
         
            -
                #       }
         
     | 
| 
       4105 
     | 
    
         
            -
                #
         
     | 
| 
       4106 
3657 
     | 
    
         
             
                # @!attribute [rw] resource_arn
         
     | 
| 
       4107 
3658 
     | 
    
         
             
                #   The Amazon Resource Name (ARN) of the resource from which to delete
         
     | 
| 
       4108 
3659 
     | 
    
         
             
                #   tags. Currently, the supported resources are Amazon EKS clusters and
         
     | 
| 
         @@ -4166,18 +3717,6 @@ module Aws::EKS 
     | 
|
| 
       4166 
3717 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       4167 
3718 
     | 
    
         
             
                end
         
     | 
| 
       4168 
3719 
     | 
    
         | 
| 
       4169 
     | 
    
         
            -
                # @note When making an API call, you may pass UpdateAddonRequest
         
     | 
| 
       4170 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       4171 
     | 
    
         
            -
                #
         
     | 
| 
       4172 
     | 
    
         
            -
                #       {
         
     | 
| 
       4173 
     | 
    
         
            -
                #         cluster_name: "ClusterName", # required
         
     | 
| 
       4174 
     | 
    
         
            -
                #         addon_name: "String", # required
         
     | 
| 
       4175 
     | 
    
         
            -
                #         addon_version: "String",
         
     | 
| 
       4176 
     | 
    
         
            -
                #         service_account_role_arn: "RoleArn",
         
     | 
| 
       4177 
     | 
    
         
            -
                #         resolve_conflicts: "OVERWRITE", # accepts OVERWRITE, NONE, PRESERVE
         
     | 
| 
       4178 
     | 
    
         
            -
                #         client_request_token: "String",
         
     | 
| 
       4179 
     | 
    
         
            -
                #       }
         
     | 
| 
       4180 
     | 
    
         
            -
                #
         
     | 
| 
       4181 
3720 
     | 
    
         
             
                # @!attribute [rw] cluster_name
         
     | 
| 
       4182 
3721 
     | 
    
         
             
                #   The name of the cluster.
         
     | 
| 
       4183 
3722 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
         @@ -4246,6 +3785,16 @@ module Aws::EKS 
     | 
|
| 
       4246 
3785 
     | 
    
         
             
                #   not need to pass this option.
         
     | 
| 
       4247 
3786 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       4248 
3787 
     | 
    
         
             
                #
         
     | 
| 
      
 3788 
     | 
    
         
            +
                # @!attribute [rw] configuration_values
         
     | 
| 
      
 3789 
     | 
    
         
            +
                #   The set of configuration values for the add-on that's created. The
         
     | 
| 
      
 3790 
     | 
    
         
            +
                #   values that you provide are validated against the schema in
         
     | 
| 
      
 3791 
     | 
    
         
            +
                #   [DescribeAddonConfiguration][1].
         
     | 
| 
      
 3792 
     | 
    
         
            +
                #
         
     | 
| 
      
 3793 
     | 
    
         
            +
                #
         
     | 
| 
      
 3794 
     | 
    
         
            +
                #
         
     | 
| 
      
 3795 
     | 
    
         
            +
                #   [1]: https://docs.aws.amazon.com/eks/latest/APIReference/API_DescribeAddonConfiguration.html
         
     | 
| 
      
 3796 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 3797 
     | 
    
         
            +
                #
         
     | 
| 
       4249 
3798 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/UpdateAddonRequest AWS API Documentation
         
     | 
| 
       4250 
3799 
     | 
    
         
             
                #
         
     | 
| 
       4251 
3800 
     | 
    
         
             
                class UpdateAddonRequest < Struct.new(
         
     | 
| 
         @@ -4254,7 +3803,8 @@ module Aws::EKS 
     | 
|
| 
       4254 
3803 
     | 
    
         
             
                  :addon_version,
         
     | 
| 
       4255 
3804 
     | 
    
         
             
                  :service_account_role_arn,
         
     | 
| 
       4256 
3805 
     | 
    
         
             
                  :resolve_conflicts,
         
     | 
| 
       4257 
     | 
    
         
            -
                  :client_request_token 
     | 
| 
      
 3806 
     | 
    
         
            +
                  :client_request_token,
         
     | 
| 
      
 3807 
     | 
    
         
            +
                  :configuration_values)
         
     | 
| 
       4258 
3808 
     | 
    
         
             
                  SENSITIVE = []
         
     | 
| 
       4259 
3809 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       4260 
3810 
     | 
    
         
             
                end
         
     | 
| 
         @@ -4271,29 +3821,6 @@ module Aws::EKS 
     | 
|
| 
       4271 
3821 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       4272 
3822 
     | 
    
         
             
                end
         
     | 
| 
       4273 
3823 
     | 
    
         | 
| 
       4274 
     | 
    
         
            -
                # @note When making an API call, you may pass UpdateClusterConfigRequest
         
     | 
| 
       4275 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       4276 
     | 
    
         
            -
                #
         
     | 
| 
       4277 
     | 
    
         
            -
                #       {
         
     | 
| 
       4278 
     | 
    
         
            -
                #         name: "String", # required
         
     | 
| 
       4279 
     | 
    
         
            -
                #         resources_vpc_config: {
         
     | 
| 
       4280 
     | 
    
         
            -
                #           subnet_ids: ["String"],
         
     | 
| 
       4281 
     | 
    
         
            -
                #           security_group_ids: ["String"],
         
     | 
| 
       4282 
     | 
    
         
            -
                #           endpoint_public_access: false,
         
     | 
| 
       4283 
     | 
    
         
            -
                #           endpoint_private_access: false,
         
     | 
| 
       4284 
     | 
    
         
            -
                #           public_access_cidrs: ["String"],
         
     | 
| 
       4285 
     | 
    
         
            -
                #         },
         
     | 
| 
       4286 
     | 
    
         
            -
                #         logging: {
         
     | 
| 
       4287 
     | 
    
         
            -
                #           cluster_logging: [
         
     | 
| 
       4288 
     | 
    
         
            -
                #             {
         
     | 
| 
       4289 
     | 
    
         
            -
                #               types: ["api"], # accepts api, audit, authenticator, controllerManager, scheduler
         
     | 
| 
       4290 
     | 
    
         
            -
                #               enabled: false,
         
     | 
| 
       4291 
     | 
    
         
            -
                #             },
         
     | 
| 
       4292 
     | 
    
         
            -
                #           ],
         
     | 
| 
       4293 
     | 
    
         
            -
                #         },
         
     | 
| 
       4294 
     | 
    
         
            -
                #         client_request_token: "String",
         
     | 
| 
       4295 
     | 
    
         
            -
                #       }
         
     | 
| 
       4296 
     | 
    
         
            -
                #
         
     | 
| 
       4297 
3824 
     | 
    
         
             
                # @!attribute [rw] name
         
     | 
| 
       4298 
3825 
     | 
    
         
             
                #   The name of the Amazon EKS cluster to update.
         
     | 
| 
       4299 
3826 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
         @@ -4353,15 +3880,6 @@ module Aws::EKS 
     | 
|
| 
       4353 
3880 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       4354 
3881 
     | 
    
         
             
                end
         
     | 
| 
       4355 
3882 
     | 
    
         | 
| 
       4356 
     | 
    
         
            -
                # @note When making an API call, you may pass UpdateClusterVersionRequest
         
     | 
| 
       4357 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       4358 
     | 
    
         
            -
                #
         
     | 
| 
       4359 
     | 
    
         
            -
                #       {
         
     | 
| 
       4360 
     | 
    
         
            -
                #         name: "String", # required
         
     | 
| 
       4361 
     | 
    
         
            -
                #         version: "String", # required
         
     | 
| 
       4362 
     | 
    
         
            -
                #         client_request_token: "String",
         
     | 
| 
       4363 
     | 
    
         
            -
                #       }
         
     | 
| 
       4364 
     | 
    
         
            -
                #
         
     | 
| 
       4365 
3883 
     | 
    
         
             
                # @!attribute [rw] name
         
     | 
| 
       4366 
3884 
     | 
    
         
             
                #   The name of the Amazon EKS cluster to update.
         
     | 
| 
       4367 
3885 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
         @@ -4403,16 +3921,6 @@ module Aws::EKS 
     | 
|
| 
       4403 
3921 
     | 
    
         
             
                # An object representing a Kubernetes label change for a managed node
         
     | 
| 
       4404 
3922 
     | 
    
         
             
                # group.
         
     | 
| 
       4405 
3923 
     | 
    
         
             
                #
         
     | 
| 
       4406 
     | 
    
         
            -
                # @note When making an API call, you may pass UpdateLabelsPayload
         
     | 
| 
       4407 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       4408 
     | 
    
         
            -
                #
         
     | 
| 
       4409 
     | 
    
         
            -
                #       {
         
     | 
| 
       4410 
     | 
    
         
            -
                #         add_or_update_labels: {
         
     | 
| 
       4411 
     | 
    
         
            -
                #           "labelKey" => "labelValue",
         
     | 
| 
       4412 
     | 
    
         
            -
                #         },
         
     | 
| 
       4413 
     | 
    
         
            -
                #         remove_labels: ["String"],
         
     | 
| 
       4414 
     | 
    
         
            -
                #       }
         
     | 
| 
       4415 
     | 
    
         
            -
                #
         
     | 
| 
       4416 
3924 
     | 
    
         
             
                # @!attribute [rw] add_or_update_labels
         
     | 
| 
       4417 
3925 
     | 
    
         
             
                #   Kubernetes labels to be added or updated.
         
     | 
| 
       4418 
3926 
     | 
    
         
             
                #   @return [Hash<String,String>]
         
     | 
| 
         @@ -4430,46 +3938,6 @@ module Aws::EKS 
     | 
|
| 
       4430 
3938 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       4431 
3939 
     | 
    
         
             
                end
         
     | 
| 
       4432 
3940 
     | 
    
         | 
| 
       4433 
     | 
    
         
            -
                # @note When making an API call, you may pass UpdateNodegroupConfigRequest
         
     | 
| 
       4434 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       4435 
     | 
    
         
            -
                #
         
     | 
| 
       4436 
     | 
    
         
            -
                #       {
         
     | 
| 
       4437 
     | 
    
         
            -
                #         cluster_name: "String", # required
         
     | 
| 
       4438 
     | 
    
         
            -
                #         nodegroup_name: "String", # required
         
     | 
| 
       4439 
     | 
    
         
            -
                #         labels: {
         
     | 
| 
       4440 
     | 
    
         
            -
                #           add_or_update_labels: {
         
     | 
| 
       4441 
     | 
    
         
            -
                #             "labelKey" => "labelValue",
         
     | 
| 
       4442 
     | 
    
         
            -
                #           },
         
     | 
| 
       4443 
     | 
    
         
            -
                #           remove_labels: ["String"],
         
     | 
| 
       4444 
     | 
    
         
            -
                #         },
         
     | 
| 
       4445 
     | 
    
         
            -
                #         taints: {
         
     | 
| 
       4446 
     | 
    
         
            -
                #           add_or_update_taints: [
         
     | 
| 
       4447 
     | 
    
         
            -
                #             {
         
     | 
| 
       4448 
     | 
    
         
            -
                #               key: "taintKey",
         
     | 
| 
       4449 
     | 
    
         
            -
                #               value: "taintValue",
         
     | 
| 
       4450 
     | 
    
         
            -
                #               effect: "NO_SCHEDULE", # accepts NO_SCHEDULE, NO_EXECUTE, PREFER_NO_SCHEDULE
         
     | 
| 
       4451 
     | 
    
         
            -
                #             },
         
     | 
| 
       4452 
     | 
    
         
            -
                #           ],
         
     | 
| 
       4453 
     | 
    
         
            -
                #           remove_taints: [
         
     | 
| 
       4454 
     | 
    
         
            -
                #             {
         
     | 
| 
       4455 
     | 
    
         
            -
                #               key: "taintKey",
         
     | 
| 
       4456 
     | 
    
         
            -
                #               value: "taintValue",
         
     | 
| 
       4457 
     | 
    
         
            -
                #               effect: "NO_SCHEDULE", # accepts NO_SCHEDULE, NO_EXECUTE, PREFER_NO_SCHEDULE
         
     | 
| 
       4458 
     | 
    
         
            -
                #             },
         
     | 
| 
       4459 
     | 
    
         
            -
                #           ],
         
     | 
| 
       4460 
     | 
    
         
            -
                #         },
         
     | 
| 
       4461 
     | 
    
         
            -
                #         scaling_config: {
         
     | 
| 
       4462 
     | 
    
         
            -
                #           min_size: 1,
         
     | 
| 
       4463 
     | 
    
         
            -
                #           max_size: 1,
         
     | 
| 
       4464 
     | 
    
         
            -
                #           desired_size: 1,
         
     | 
| 
       4465 
     | 
    
         
            -
                #         },
         
     | 
| 
       4466 
     | 
    
         
            -
                #         update_config: {
         
     | 
| 
       4467 
     | 
    
         
            -
                #           max_unavailable: 1,
         
     | 
| 
       4468 
     | 
    
         
            -
                #           max_unavailable_percentage: 1,
         
     | 
| 
       4469 
     | 
    
         
            -
                #         },
         
     | 
| 
       4470 
     | 
    
         
            -
                #         client_request_token: "String",
         
     | 
| 
       4471 
     | 
    
         
            -
                #       }
         
     | 
| 
       4472 
     | 
    
         
            -
                #
         
     | 
| 
       4473 
3941 
     | 
    
         
             
                # @!attribute [rw] cluster_name
         
     | 
| 
       4474 
3942 
     | 
    
         
             
                #   The name of the Amazon EKS cluster that the managed node group
         
     | 
| 
       4475 
3943 
     | 
    
         
             
                #   resides in.
         
     | 
| 
         @@ -4537,23 +4005,6 @@ module Aws::EKS 
     | 
|
| 
       4537 
4005 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       4538 
4006 
     | 
    
         
             
                end
         
     | 
| 
       4539 
4007 
     | 
    
         | 
| 
       4540 
     | 
    
         
            -
                # @note When making an API call, you may pass UpdateNodegroupVersionRequest
         
     | 
| 
       4541 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       4542 
     | 
    
         
            -
                #
         
     | 
| 
       4543 
     | 
    
         
            -
                #       {
         
     | 
| 
       4544 
     | 
    
         
            -
                #         cluster_name: "String", # required
         
     | 
| 
       4545 
     | 
    
         
            -
                #         nodegroup_name: "String", # required
         
     | 
| 
       4546 
     | 
    
         
            -
                #         version: "String",
         
     | 
| 
       4547 
     | 
    
         
            -
                #         release_version: "String",
         
     | 
| 
       4548 
     | 
    
         
            -
                #         launch_template: {
         
     | 
| 
       4549 
     | 
    
         
            -
                #           name: "String",
         
     | 
| 
       4550 
     | 
    
         
            -
                #           version: "String",
         
     | 
| 
       4551 
     | 
    
         
            -
                #           id: "String",
         
     | 
| 
       4552 
     | 
    
         
            -
                #         },
         
     | 
| 
       4553 
     | 
    
         
            -
                #         force: false,
         
     | 
| 
       4554 
     | 
    
         
            -
                #         client_request_token: "String",
         
     | 
| 
       4555 
     | 
    
         
            -
                #       }
         
     | 
| 
       4556 
     | 
    
         
            -
                #
         
     | 
| 
       4557 
4008 
     | 
    
         
             
                # @!attribute [rw] cluster_name
         
     | 
| 
       4558 
4009 
     | 
    
         
             
                #   The name of the Amazon EKS cluster that is associated with the
         
     | 
| 
       4559 
4010 
     | 
    
         
             
                #   managed node group to update.
         
     | 
| 
         @@ -4582,18 +4033,24 @@ module Aws::EKS 
     | 
|
| 
       4582 
4033 
     | 
    
         
             
                # @!attribute [rw] release_version
         
     | 
| 
       4583 
4034 
     | 
    
         
             
                #   The AMI version of the Amazon EKS optimized AMI to use for the
         
     | 
| 
       4584 
4035 
     | 
    
         
             
                #   update. By default, the latest available AMI version for the node
         
     | 
| 
       4585 
     | 
    
         
            -
                #   group's Kubernetes version is used. For  
     | 
| 
       4586 
     | 
    
         
            -
                #   [Amazon EKS optimized Amazon Linux  
     | 
| 
       4587 
     | 
    
         
            -
                #   *Amazon EKS User Guide*.  
     | 
| 
       4588 
     | 
    
         
            -
                #    
     | 
| 
       4589 
     | 
    
         
            -
                #    
     | 
| 
       4590 
     | 
    
         
            -
                #    
     | 
| 
       4591 
     | 
    
         
            -
                # 
     | 
| 
      
 4036 
     | 
    
         
            +
                #   group's Kubernetes version is used. For information about Linux
         
     | 
| 
      
 4037 
     | 
    
         
            +
                #   versions, see [Amazon EKS optimized Amazon Linux AMI versions][1] in
         
     | 
| 
      
 4038 
     | 
    
         
            +
                #   the *Amazon EKS User Guide*. Amazon EKS managed node groups support
         
     | 
| 
      
 4039 
     | 
    
         
            +
                #   the November 2022 and later releases of the Windows AMIs. For
         
     | 
| 
      
 4040 
     | 
    
         
            +
                #   information about Windows versions, see [Amazon EKS optimized
         
     | 
| 
      
 4041 
     | 
    
         
            +
                #   Windows AMI versions][2] in the *Amazon EKS User Guide*.
         
     | 
| 
      
 4042 
     | 
    
         
            +
                #
         
     | 
| 
      
 4043 
     | 
    
         
            +
                #   If you specify `launchTemplate`, and your launch template uses a
         
     | 
| 
      
 4044 
     | 
    
         
            +
                #   custom AMI, then don't specify `releaseVersion`, or the node group
         
     | 
| 
      
 4045 
     | 
    
         
            +
                #   update will fail. For more information about using launch templates
         
     | 
| 
      
 4046 
     | 
    
         
            +
                #   with Amazon EKS, see [Launch template support][3] in the *Amazon EKS
         
     | 
| 
      
 4047 
     | 
    
         
            +
                #   User Guide*.
         
     | 
| 
       4592 
4048 
     | 
    
         
             
                #
         
     | 
| 
       4593 
4049 
     | 
    
         
             
                #
         
     | 
| 
       4594 
4050 
     | 
    
         
             
                #
         
     | 
| 
       4595 
4051 
     | 
    
         
             
                #   [1]: https://docs.aws.amazon.com/eks/latest/userguide/eks-linux-ami-versions.html
         
     | 
| 
       4596 
     | 
    
         
            -
                #   [2]: https://docs.aws.amazon.com/eks/latest/userguide/ 
     | 
| 
      
 4052 
     | 
    
         
            +
                #   [2]: https://docs.aws.amazon.com/eks/latest/userguide/eks-ami-versions-windows.html
         
     | 
| 
      
 4053 
     | 
    
         
            +
                #   [3]: https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html
         
     | 
| 
       4597 
4054 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       4598 
4055 
     | 
    
         
             
                #
         
     | 
| 
       4599 
4056 
     | 
    
         
             
                # @!attribute [rw] launch_template
         
     | 
| 
         @@ -4671,26 +4128,6 @@ module Aws::EKS 
     | 
|
| 
       4671 
4128 
     | 
    
         
             
                #
         
     | 
| 
       4672 
4129 
     | 
    
         
             
                # [1]: https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html
         
     | 
| 
       4673 
4130 
     | 
    
         
             
                #
         
     | 
| 
       4674 
     | 
    
         
            -
                # @note When making an API call, you may pass UpdateTaintsPayload
         
     | 
| 
       4675 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       4676 
     | 
    
         
            -
                #
         
     | 
| 
       4677 
     | 
    
         
            -
                #       {
         
     | 
| 
       4678 
     | 
    
         
            -
                #         add_or_update_taints: [
         
     | 
| 
       4679 
     | 
    
         
            -
                #           {
         
     | 
| 
       4680 
     | 
    
         
            -
                #             key: "taintKey",
         
     | 
| 
       4681 
     | 
    
         
            -
                #             value: "taintValue",
         
     | 
| 
       4682 
     | 
    
         
            -
                #             effect: "NO_SCHEDULE", # accepts NO_SCHEDULE, NO_EXECUTE, PREFER_NO_SCHEDULE
         
     | 
| 
       4683 
     | 
    
         
            -
                #           },
         
     | 
| 
       4684 
     | 
    
         
            -
                #         ],
         
     | 
| 
       4685 
     | 
    
         
            -
                #         remove_taints: [
         
     | 
| 
       4686 
     | 
    
         
            -
                #           {
         
     | 
| 
       4687 
     | 
    
         
            -
                #             key: "taintKey",
         
     | 
| 
       4688 
     | 
    
         
            -
                #             value: "taintValue",
         
     | 
| 
       4689 
     | 
    
         
            -
                #             effect: "NO_SCHEDULE", # accepts NO_SCHEDULE, NO_EXECUTE, PREFER_NO_SCHEDULE
         
     | 
| 
       4690 
     | 
    
         
            -
                #           },
         
     | 
| 
       4691 
     | 
    
         
            -
                #         ],
         
     | 
| 
       4692 
     | 
    
         
            -
                #       }
         
     | 
| 
       4693 
     | 
    
         
            -
                #
         
     | 
| 
       4694 
4131 
     | 
    
         
             
                # @!attribute [rw] add_or_update_taints
         
     | 
| 
       4695 
4132 
     | 
    
         
             
                #   Kubernetes taints to be added or updated.
         
     | 
| 
       4696 
4133 
     | 
    
         
             
                #   @return [Array<Types::Taint>]
         
     | 
| 
         @@ -4711,17 +4148,6 @@ module Aws::EKS 
     | 
|
| 
       4711 
4148 
     | 
    
         
             
                # An object representing the VPC configuration to use for an Amazon EKS
         
     | 
| 
       4712 
4149 
     | 
    
         
             
                # cluster.
         
     | 
| 
       4713 
4150 
     | 
    
         
             
                #
         
     | 
| 
       4714 
     | 
    
         
            -
                # @note When making an API call, you may pass VpcConfigRequest
         
     | 
| 
       4715 
     | 
    
         
            -
                #   data as a hash:
         
     | 
| 
       4716 
     | 
    
         
            -
                #
         
     | 
| 
       4717 
     | 
    
         
            -
                #       {
         
     | 
| 
       4718 
     | 
    
         
            -
                #         subnet_ids: ["String"],
         
     | 
| 
       4719 
     | 
    
         
            -
                #         security_group_ids: ["String"],
         
     | 
| 
       4720 
     | 
    
         
            -
                #         endpoint_public_access: false,
         
     | 
| 
       4721 
     | 
    
         
            -
                #         endpoint_private_access: false,
         
     | 
| 
       4722 
     | 
    
         
            -
                #         public_access_cidrs: ["String"],
         
     | 
| 
       4723 
     | 
    
         
            -
                #       }
         
     | 
| 
       4724 
     | 
    
         
            -
                #
         
     | 
| 
       4725 
4151 
     | 
    
         
             
                # @!attribute [rw] subnet_ids
         
     | 
| 
       4726 
4152 
     | 
    
         
             
                #   Specify subnets for your Amazon EKS nodes. Amazon EKS creates
         
     | 
| 
       4727 
4153 
     | 
    
         
             
                #   cross-account elastic network interfaces in these subnets to allow
         
     |