aws-sdk-eks 1.80.0 → 1.81.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.
@@ -94,6 +94,10 @@ module Aws::EKS
94
94
  # Marketplace.
95
95
  # @return [Types::MarketplaceInformation]
96
96
  #
97
+ # @!attribute [rw] configuration_values
98
+ # The provided configuration values.
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,21 +700,6 @@ 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]
@@ -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 being created.
788
+ # Whatever values provided here are validated against the schema from
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]
@@ -1422,15 +1252,6 @@ module Aws::EKS
1422
1252
  include Aws::Structure
1423
1253
  end
1424
1254
 
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
1255
  # @!attribute [rw] cluster_name
1435
1256
  # The name of the cluster to delete the add-on from.
1436
1257
  # @return [String]
@@ -1477,13 +1298,6 @@ module Aws::EKS
1477
1298
  include Aws::Structure
1478
1299
  end
1479
1300
 
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
1301
  # @!attribute [rw] name
1488
1302
  # The name of the cluster to delete.
1489
1303
  # @return [String]
@@ -1508,14 +1322,6 @@ module Aws::EKS
1508
1322
  include Aws::Structure
1509
1323
  end
1510
1324
 
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
1325
  # @!attribute [rw] cluster_name
1520
1326
  # The name of the Amazon EKS cluster associated with the Fargate
1521
1327
  # profile to delete.
@@ -1546,14 +1352,6 @@ module Aws::EKS
1546
1352
  include Aws::Structure
1547
1353
  end
1548
1354
 
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
1355
  # @!attribute [rw] cluster_name
1558
1356
  # The name of the Amazon EKS cluster that is associated with your node
1559
1357
  # group.
@@ -1584,13 +1382,6 @@ module Aws::EKS
1584
1382
  include Aws::Structure
1585
1383
  end
1586
1384
 
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
1385
  # @!attribute [rw] name
1595
1386
  # The name of the connected cluster to deregister.
1596
1387
  # @return [String]
@@ -1615,14 +1406,61 @@ module Aws::EKS
1615
1406
  include Aws::Structure
1616
1407
  end
1617
1408
 
1618
- # @note When making an API call, you may pass DescribeAddonRequest
1619
- # data as a hash:
1409
+ # @!attribute [rw] addon_name
1410
+ # The name of the add-on. The name must match one of the names
1411
+ # returned by [ `DescribeAddonVersions` ][1].
1412
+ #
1413
+ #
1414
+ #
1415
+ # [1]: https://docs.aws.amazon.com/eks/latest/APIReference/API_DescribeAddonVersions.html
1416
+ # @return [String]
1417
+ #
1418
+ # @!attribute [rw] addon_version
1419
+ # The version of the add-on. The version must match one of the
1420
+ # versions returned by [ `DescribeAddonVersions` ][1].
1421
+ #
1422
+ #
1423
+ #
1424
+ # [1]: https://docs.aws.amazon.com/eks/latest/APIReference/API_DescribeAddonVersions.html
1425
+ # @return [String]
1426
+ #
1427
+ # @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DescribeAddonConfigurationRequest AWS API Documentation
1428
+ #
1429
+ class DescribeAddonConfigurationRequest < Struct.new(
1430
+ :addon_name,
1431
+ :addon_version)
1432
+ SENSITIVE = []
1433
+ include Aws::Structure
1434
+ end
1435
+
1436
+ # @!attribute [rw] addon_name
1437
+ # The name of the add-on.
1438
+ # @return [String]
1439
+ #
1440
+ # @!attribute [rw] addon_version
1441
+ # The version of the add-on. The version must match one of the
1442
+ # versions returned by [ `DescribeAddonVersions` ][1].
1443
+ #
1444
+ #
1445
+ #
1446
+ # [1]: https://docs.aws.amazon.com/eks/latest/APIReference/API_DescribeAddonVersions.html
1447
+ # @return [String]
1620
1448
  #
1621
- # {
1622
- # cluster_name: "ClusterName", # required
1623
- # addon_name: "String", # required
1624
- # }
1449
+ # @!attribute [rw] configuration_schema
1450
+ # A JSON schema used to validate provided configuration values when
1451
+ # creating or updating an addon.
1452
+ # @return [String]
1453
+ #
1454
+ # @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DescribeAddonConfigurationResponse AWS API Documentation
1625
1455
  #
1456
+ class DescribeAddonConfigurationResponse < Struct.new(
1457
+ :addon_name,
1458
+ :addon_version,
1459
+ :configuration_schema)
1460
+ SENSITIVE = []
1461
+ include Aws::Structure
1462
+ end
1463
+
1626
1464
  # @!attribute [rw] cluster_name
1627
1465
  # The name of the cluster.
1628
1466
  # @return [String]
@@ -1662,19 +1500,6 @@ module Aws::EKS
1662
1500
  include Aws::Structure
1663
1501
  end
1664
1502
 
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
1503
  # @!attribute [rw] kubernetes_version
1679
1504
  # The Kubernetes versions that you can use the add-on with.
1680
1505
  # @return [String]
@@ -1763,13 +1588,6 @@ module Aws::EKS
1763
1588
  include Aws::Structure
1764
1589
  end
1765
1590
 
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
1591
  # @!attribute [rw] name
1774
1592
  # The name of the cluster to describe.
1775
1593
  # @return [String]
@@ -1794,14 +1612,6 @@ module Aws::EKS
1794
1612
  include Aws::Structure
1795
1613
  end
1796
1614
 
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
1615
  # @!attribute [rw] cluster_name
1806
1616
  # The name of the Amazon EKS cluster associated with the Fargate
1807
1617
  # profile.
@@ -1832,17 +1642,6 @@ module Aws::EKS
1832
1642
  include Aws::Structure
1833
1643
  end
1834
1644
 
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
1645
  # @!attribute [rw] cluster_name
1847
1646
  # The cluster name that the identity provider configuration is
1848
1647
  # associated to.
@@ -1874,14 +1673,6 @@ module Aws::EKS
1874
1673
  include Aws::Structure
1875
1674
  end
1876
1675
 
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
1676
  # @!attribute [rw] cluster_name
1886
1677
  # The name of the Amazon EKS cluster associated with the node group.
1887
1678
  # @return [String]
@@ -1911,16 +1702,6 @@ module Aws::EKS
1911
1702
  include Aws::Structure
1912
1703
  end
1913
1704
 
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
1705
  # @!attribute [rw] name
1925
1706
  # The name of the Amazon EKS cluster associated with the update.
1926
1707
  # @return [String]
@@ -1967,18 +1748,6 @@ module Aws::EKS
1967
1748
  include Aws::Structure
1968
1749
  end
1969
1750
 
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
1751
  # @!attribute [rw] cluster_name
1983
1752
  # The name of the cluster to disassociate an identity provider from.
1984
1753
  # @return [String]
@@ -2019,16 +1788,6 @@ module Aws::EKS
2019
1788
 
2020
1789
  # The encryption configuration for the cluster.
2021
1790
  #
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
1791
  # @!attribute [rw] resources
2033
1792
  # Specifies the resources to be encrypted. The only supported value is
2034
1793
  # "secrets".
@@ -2164,16 +1923,6 @@ module Aws::EKS
2164
1923
 
2165
1924
  # An object representing an Fargate profile selector.
2166
1925
  #
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
1926
  # @!attribute [rw] namespace
2178
1927
  # The Kubernetes namespace that the selector should match.
2179
1928
  # @return [String]
@@ -2214,14 +1963,6 @@ module Aws::EKS
2214
1963
 
2215
1964
  # An object representing an identity provider configuration.
2216
1965
  #
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
1966
  # @!attribute [rw] type
2226
1967
  # The type of the identity provider configuration. The only type
2227
1968
  # available is `oidc`.
@@ -2412,14 +2153,6 @@ module Aws::EKS
2412
2153
 
2413
2154
  # The Kubernetes network configuration for the cluster.
2414
2155
  #
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
2156
  # @!attribute [rw] service_ipv_4_cidr
2424
2157
  # Don't specify a value if you select `ipv6` for **ipFamily**. The
2425
2158
  # CIDR block to assign Kubernetes service IP addresses from. If you
@@ -2537,15 +2270,6 @@ module Aws::EKS
2537
2270
  # [6]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateLaunchTemplate.html
2538
2271
  # [7]: https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html
2539
2272
  #
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
2273
  # @!attribute [rw] name
2550
2274
  # The name of the launch template.
2551
2275
  #
@@ -2575,15 +2299,6 @@ module Aws::EKS
2575
2299
  include Aws::Structure
2576
2300
  end
2577
2301
 
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
2302
  # @!attribute [rw] cluster_name
2588
2303
  # The name of the cluster.
2589
2304
  # @return [String]
@@ -2649,15 +2364,6 @@ module Aws::EKS
2649
2364
  include Aws::Structure
2650
2365
  end
2651
2366
 
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
2367
  # @!attribute [rw] max_results
2662
2368
  # The maximum number of cluster results returned by `ListClusters` in
2663
2369
  # paginated output. When you use this parameter, `ListClusters`
@@ -2720,15 +2426,6 @@ module Aws::EKS
2720
2426
  include Aws::Structure
2721
2427
  end
2722
2428
 
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
2429
  # @!attribute [rw] cluster_name
2733
2430
  # The name of the Amazon EKS cluster that you would like to list
2734
2431
  # Fargate profiles in.
@@ -2786,15 +2483,6 @@ module Aws::EKS
2786
2483
  include Aws::Structure
2787
2484
  end
2788
2485
 
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
2486
  # @!attribute [rw] cluster_name
2799
2487
  # The cluster name that you want to list identity provider
2800
2488
  # configurations for.
@@ -2851,15 +2539,6 @@ module Aws::EKS
2851
2539
  include Aws::Structure
2852
2540
  end
2853
2541
 
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
2542
  # @!attribute [rw] cluster_name
2864
2543
  # The name of the Amazon EKS cluster that you would like to list node
2865
2544
  # groups in.
@@ -2916,13 +2595,6 @@ module Aws::EKS
2916
2595
  include Aws::Structure
2917
2596
  end
2918
2597
 
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
2598
  # @!attribute [rw] resource_arn
2927
2599
  # The Amazon Resource Name (ARN) that identifies the resource for
2928
2600
  # which to list the tags. Currently, the supported resources are
@@ -2949,17 +2621,6 @@ module Aws::EKS
2949
2621
  include Aws::Structure
2950
2622
  end
2951
2623
 
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
2624
  # @!attribute [rw] name
2964
2625
  # The name of the Amazon EKS cluster to list updates for.
2965
2626
  # @return [String]
@@ -3025,14 +2686,6 @@ module Aws::EKS
3025
2686
  # An object representing the enabled or disabled Kubernetes control
3026
2687
  # plane logs for your cluster.
3027
2688
  #
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
2689
  # @!attribute [rw] types
3037
2690
  # The available cluster control plane log types.
3038
2691
  # @return [Array<String>]
@@ -3056,18 +2709,6 @@ module Aws::EKS
3056
2709
  # An object representing the logging configuration for resources in your
3057
2710
  # cluster.
3058
2711
  #
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
2712
  # @!attribute [rw] cluster_logging
3072
2713
  # The cluster control plane logging configuration for your cluster.
3073
2714
  # @return [Array<Types::LogSetup>]
@@ -3308,15 +2949,6 @@ module Aws::EKS
3308
2949
  # node group, you must specify all or none of the properties. When
3309
2950
  # updating a node group, you can specify any or none of the properties.
3310
2951
  #
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
2952
  # @!attribute [rw] min_size
3321
2953
  # The minimum number of nodes that the managed node group can scale in
3322
2954
  # to.
@@ -3370,14 +3002,6 @@ module Aws::EKS
3370
3002
 
3371
3003
  # The node group update configuration.
3372
3004
  #
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
3005
  # @!attribute [rw] max_unavailable
3382
3006
  # The maximum number of nodes unavailable at once during a version
3383
3007
  # update. Nodes will be updated in parallel. This value or
@@ -3524,22 +3148,6 @@ module Aws::EKS
3524
3148
  #
3525
3149
  # [1]: https://docs.aws.amazon.com/eks/latest/userguide/authenticate-oidc-identity-provider.html
3526
3150
  #
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
3151
  # @!attribute [rw] identity_provider_config_name
3544
3152
  # The name of the OIDC provider configuration.
3545
3153
  # @return [String]
@@ -3625,17 +3233,6 @@ module Aws::EKS
3625
3233
  #
3626
3234
  # [1]: https://docs.aws.amazon.com/eks/latest/userguide/eks-outposts-local-cluster-create.html
3627
3235
  #
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
3236
  # @!attribute [rw] outpost_arns
3640
3237
  # The ARN of the Outpost that you want to use for your local Amazon
3641
3238
  # EKS cluster on Outposts. Only a single Outpost ARN is supported.
@@ -3718,13 +3315,6 @@ module Aws::EKS
3718
3315
  # Identifies the Key Management Service (KMS) key used to encrypt the
3719
3316
  # secrets.
3720
3317
  #
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
3318
  # @!attribute [rw] key_arn
3729
3319
  # Amazon Resource Name (ARN) or alias of the KMS key. The KMS key must
3730
3320
  # be symmetric, created in the same region as the cluster, and if the
@@ -3746,21 +3336,6 @@ module Aws::EKS
3746
3336
  include Aws::Structure
3747
3337
  end
3748
3338
 
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
3339
  # @!attribute [rw] name
3765
3340
  # Define a unique name for this cluster for your Region.
3766
3341
  # @return [String]
@@ -3811,19 +3386,11 @@ module Aws::EKS
3811
3386
  # An object representing the remote access configuration for the managed
3812
3387
  # node group.
3813
3388
  #
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
3389
  # @!attribute [rw] ec2_ssh_key
3823
- # The Amazon EC2 SSH key that provides access for SSH communication
3824
- # with the nodes in the managed node group. For more information, see
3825
- # [Amazon EC2 key pairs and Linux instances][1] in the *Amazon Elastic
3826
- # Compute Cloud User Guide for Linux Instances*.
3390
+ # The Amazon EC2 SSH key name that provides access for SSH
3391
+ # communication with the nodes in the managed node group. For more
3392
+ # information, see [Amazon EC2 key pairs and Linux instances][1] in
3393
+ # the *Amazon Elastic Compute Cloud User Guide for Linux Instances*.
3827
3394
  #
3828
3395
  #
3829
3396
  #
@@ -3831,7 +3398,7 @@ module Aws::EKS
3831
3398
  # @return [String]
3832
3399
  #
3833
3400
  # @!attribute [rw] source_security_groups
3834
- # The security groups that are allowed SSH access (port 22) to the
3401
+ # The security group ids that are allowed SSH access (port 22) to the
3835
3402
  # nodes. If you specify an Amazon EC2 SSH key but do not specify a
3836
3403
  # source security group when you create a managed node group, then
3837
3404
  # port 22 on the nodes is opened to the internet (0.0.0.0/0). For more
@@ -3991,16 +3558,6 @@ module Aws::EKS
3991
3558
  include Aws::Structure
3992
3559
  end
3993
3560
 
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
3561
  # @!attribute [rw] resource_arn
4005
3562
  # The Amazon Resource Name (ARN) of the resource to which to add tags.
4006
3563
  # Currently, the supported resources are Amazon EKS clusters and
@@ -4032,15 +3589,6 @@ module Aws::EKS
4032
3589
  #
4033
3590
  # [1]: https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html
4034
3591
  #
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
3592
  # @!attribute [rw] key
4045
3593
  # The key of the taint.
4046
3594
  # @return [String]
@@ -4095,14 +3643,6 @@ module Aws::EKS
4095
3643
  include Aws::Structure
4096
3644
  end
4097
3645
 
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
3646
  # @!attribute [rw] resource_arn
4107
3647
  # The Amazon Resource Name (ARN) of the resource from which to delete
4108
3648
  # tags. Currently, the supported resources are Amazon EKS clusters and
@@ -4166,18 +3706,6 @@ module Aws::EKS
4166
3706
  include Aws::Structure
4167
3707
  end
4168
3708
 
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
3709
  # @!attribute [rw] cluster_name
4182
3710
  # The name of the cluster.
4183
3711
  # @return [String]
@@ -4246,6 +3774,16 @@ module Aws::EKS
4246
3774
  # not need to pass this option.
4247
3775
  # @return [String]
4248
3776
  #
3777
+ # @!attribute [rw] configuration_values
3778
+ # The set of configuration values for the add-on being created.
3779
+ # Whatever values provided here are validated against the schema from
3780
+ # [DescribeAddonConfiguration][1]
3781
+ #
3782
+ #
3783
+ #
3784
+ # [1]: https://docs.aws.amazon.com/eks/latest/APIReference/API_DescribeAddonConfiguration.html
3785
+ # @return [String]
3786
+ #
4249
3787
  # @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/UpdateAddonRequest AWS API Documentation
4250
3788
  #
4251
3789
  class UpdateAddonRequest < Struct.new(
@@ -4254,7 +3792,8 @@ module Aws::EKS
4254
3792
  :addon_version,
4255
3793
  :service_account_role_arn,
4256
3794
  :resolve_conflicts,
4257
- :client_request_token)
3795
+ :client_request_token,
3796
+ :configuration_values)
4258
3797
  SENSITIVE = []
4259
3798
  include Aws::Structure
4260
3799
  end
@@ -4271,29 +3810,6 @@ module Aws::EKS
4271
3810
  include Aws::Structure
4272
3811
  end
4273
3812
 
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
3813
  # @!attribute [rw] name
4298
3814
  # The name of the Amazon EKS cluster to update.
4299
3815
  # @return [String]
@@ -4353,15 +3869,6 @@ module Aws::EKS
4353
3869
  include Aws::Structure
4354
3870
  end
4355
3871
 
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
3872
  # @!attribute [rw] name
4366
3873
  # The name of the Amazon EKS cluster to update.
4367
3874
  # @return [String]
@@ -4403,16 +3910,6 @@ module Aws::EKS
4403
3910
  # An object representing a Kubernetes label change for a managed node
4404
3911
  # group.
4405
3912
  #
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
3913
  # @!attribute [rw] add_or_update_labels
4417
3914
  # Kubernetes labels to be added or updated.
4418
3915
  # @return [Hash<String,String>]
@@ -4430,46 +3927,6 @@ module Aws::EKS
4430
3927
  include Aws::Structure
4431
3928
  end
4432
3929
 
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
3930
  # @!attribute [rw] cluster_name
4474
3931
  # The name of the Amazon EKS cluster that the managed node group
4475
3932
  # resides in.
@@ -4537,23 +3994,6 @@ module Aws::EKS
4537
3994
  include Aws::Structure
4538
3995
  end
4539
3996
 
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
3997
  # @!attribute [rw] cluster_name
4558
3998
  # The name of the Amazon EKS cluster that is associated with the
4559
3999
  # managed node group to update.
@@ -4671,26 +4111,6 @@ module Aws::EKS
4671
4111
  #
4672
4112
  # [1]: https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html
4673
4113
  #
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
4114
  # @!attribute [rw] add_or_update_taints
4695
4115
  # Kubernetes taints to be added or updated.
4696
4116
  # @return [Array<Types::Taint>]
@@ -4711,17 +4131,6 @@ module Aws::EKS
4711
4131
  # An object representing the VPC configuration to use for an Amazon EKS
4712
4132
  # cluster.
4713
4133
  #
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
4134
  # @!attribute [rw] subnet_ids
4726
4135
  # Specify subnets for your Amazon EKS nodes. Amazon EKS creates
4727
4136
  # cross-account elastic network interfaces in these subnets to allow