cdk-lambda-subminute 2.0.293 → 2.0.294

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.
Files changed (31) hide show
  1. package/.jsii +3 -3
  2. package/lib/cdk-lambda-subminute.js +3 -3
  3. package/node_modules/aws-sdk/CHANGELOG.md +15 -1
  4. package/node_modules/aws-sdk/README.md +1 -1
  5. package/node_modules/aws-sdk/apis/cloudformation-2010-05-15.min.json +48 -47
  6. package/node_modules/aws-sdk/apis/cloudtrail-2013-11-01.min.json +11 -8
  7. package/node_modules/aws-sdk/apis/comprehend-2017-11-27.min.json +55 -0
  8. package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +4 -0
  9. package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +140 -82
  10. package/node_modules/aws-sdk/apis/eks-2017-11-01.min.json +242 -39
  11. package/node_modules/aws-sdk/apis/logs-2014-03-28.min.json +372 -26
  12. package/node_modules/aws-sdk/apis/logs-2014-03-28.paginators.json +18 -0
  13. package/node_modules/aws-sdk/apis/omics-2022-11-28.min.json +1 -3
  14. package/node_modules/aws-sdk/apis/sqs-2012-11-05.min.json +13 -13
  15. package/node_modules/aws-sdk/clients/cloudformation.d.ts +15 -10
  16. package/node_modules/aws-sdk/clients/cloudtrail.d.ts +50 -22
  17. package/node_modules/aws-sdk/clients/cloudwatchlogs.d.ts +422 -2
  18. package/node_modules/aws-sdk/clients/comprehend.d.ts +73 -19
  19. package/node_modules/aws-sdk/clients/connect.d.ts +5 -1
  20. package/node_modules/aws-sdk/clients/ec2.d.ts +65 -0
  21. package/node_modules/aws-sdk/clients/eks.d.ts +221 -9
  22. package/node_modules/aws-sdk/clients/lambda.d.ts +1 -1
  23. package/node_modules/aws-sdk/clients/omics.d.ts +5 -4
  24. package/node_modules/aws-sdk/clients/sqs.d.ts +1 -2
  25. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  26. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +11 -11
  27. package/node_modules/aws-sdk/dist/aws-sdk.js +664 -179
  28. package/node_modules/aws-sdk/dist/aws-sdk.min.js +91 -91
  29. package/node_modules/aws-sdk/lib/core.js +1 -1
  30. package/node_modules/aws-sdk/package.json +1 -1
  31. package/package.json +3 -4
@@ -44,6 +44,14 @@ declare class EKS extends Service {
44
44
  * Creates an Amazon EKS control plane. The Amazon EKS control plane consists of control plane instances that run the Kubernetes software, such as etcd and the API server. The control plane runs in an account managed by Amazon Web Services, and the Kubernetes API is exposed by the Amazon EKS API server endpoint. Each Amazon EKS cluster control plane is single tenant and unique. It runs on its own set of Amazon EC2 instances. The cluster control plane is provisioned across multiple Availability Zones and fronted by an Elastic Load Balancing Network Load Balancer. Amazon EKS also provisions elastic network interfaces in your VPC subnets to provide connectivity from the control plane instances to the nodes (for example, to support kubectl exec, logs, and proxy data flows). Amazon EKS nodes run in your Amazon Web Services account and connect to your cluster's control plane over the Kubernetes API server endpoint and a certificate file that is created for your cluster. In most cases, it takes several minutes to create a cluster. After you create an Amazon EKS cluster, you must configure your Kubernetes tooling to communicate with the API server and launch nodes into your cluster. For more information, see Managing Cluster Authentication and Launching Amazon EKS nodes in the Amazon EKS User Guide.
45
45
  */
46
46
  createCluster(callback?: (err: AWSError, data: EKS.Types.CreateClusterResponse) => void): Request<EKS.Types.CreateClusterResponse, AWSError>;
47
+ /**
48
+ * Creates an EKS Anywhere subscription. When a subscription is created, it is a contract agreement for the length of the term specified in the request. Licenses that are used to validate support are provisioned in Amazon Web Services License Manager and the caller account is granted access to EKS Anywhere Curated Packages.
49
+ */
50
+ createEksAnywhereSubscription(params: EKS.Types.CreateEksAnywhereSubscriptionRequest, callback?: (err: AWSError, data: EKS.Types.CreateEksAnywhereSubscriptionResponse) => void): Request<EKS.Types.CreateEksAnywhereSubscriptionResponse, AWSError>;
51
+ /**
52
+ * Creates an EKS Anywhere subscription. When a subscription is created, it is a contract agreement for the length of the term specified in the request. Licenses that are used to validate support are provisioned in Amazon Web Services License Manager and the caller account is granted access to EKS Anywhere Curated Packages.
53
+ */
54
+ createEksAnywhereSubscription(callback?: (err: AWSError, data: EKS.Types.CreateEksAnywhereSubscriptionResponse) => void): Request<EKS.Types.CreateEksAnywhereSubscriptionResponse, AWSError>;
47
55
  /**
48
56
  * Creates an Fargate profile for your Amazon EKS cluster. You must have at least one Fargate profile in a cluster to be able to run pods on Fargate. The Fargate profile allows an administrator to declare which pods run on Fargate and specify which pods run on which Fargate profile. This declaration is done through the profile’s selectors. Each profile can have up to five selectors that contain a namespace and labels. A namespace is required for every selector. The label field consists of multiple optional key-value pairs. Pods that match the selectors are scheduled on Fargate. If a to-be-scheduled pod matches any of the selectors in the Fargate profile, then that pod is run on Fargate. When you create a Fargate profile, you must specify a pod execution role to use with the pods that are scheduled with the profile. This role is added to the cluster's Kubernetes Role Based Access Control (RBAC) for authorization so that the kubelet that is running on the Fargate infrastructure can register with your Amazon EKS cluster so that it can appear in your cluster as a node. The pod execution role also provides IAM permissions to the Fargate infrastructure to allow read access to Amazon ECR image repositories. For more information, see Pod Execution Role in the Amazon EKS User Guide. Fargate profiles are immutable. However, you can create a new updated profile to replace an existing profile and then delete the original after the updated profile has finished creating. If any Fargate profiles in a cluster are in the DELETING status, you must wait for that Fargate profile to finish deleting before you can create any other profiles in that cluster. For more information, see Fargate Profile in the Amazon EKS User Guide.
49
57
  */
@@ -53,11 +61,11 @@ declare class EKS extends Service {
53
61
  */
54
62
  createFargateProfile(callback?: (err: AWSError, data: EKS.Types.CreateFargateProfileResponse) => void): Request<EKS.Types.CreateFargateProfileResponse, AWSError>;
55
63
  /**
56
- * Creates a managed node group for an Amazon EKS cluster. You can only create a node group for your cluster that is equal to the current Kubernetes version for the cluster. All node groups are created with the latest AMI release version for the respective minor Kubernetes version of the cluster, unless you deploy a custom AMI using a launch template. For more information about using launch templates, see Launch template support. An Amazon EKS managed node group is an Amazon EC2 Auto Scaling group and associated Amazon EC2 instances that are managed by Amazon Web Services for an Amazon EKS cluster. For more information, see Managed node groups in the Amazon EKS User Guide. Windows AMI types are only supported for commercial Regions that support Windows Amazon EKS.
64
+ * Creates a managed node group for an Amazon EKS cluster. You can only create a node group for your cluster that is equal to the current Kubernetes version for the cluster. An Amazon EKS managed node group is an Amazon EC2 Auto Scaling group and associated Amazon EC2 instances that are managed by Amazon Web Services for an Amazon EKS cluster. For more information, see Managed node groups in the Amazon EKS User Guide. Windows AMI types are only supported for commercial Regions that support Windows Amazon EKS.
57
65
  */
58
66
  createNodegroup(params: EKS.Types.CreateNodegroupRequest, callback?: (err: AWSError, data: EKS.Types.CreateNodegroupResponse) => void): Request<EKS.Types.CreateNodegroupResponse, AWSError>;
59
67
  /**
60
- * Creates a managed node group for an Amazon EKS cluster. You can only create a node group for your cluster that is equal to the current Kubernetes version for the cluster. All node groups are created with the latest AMI release version for the respective minor Kubernetes version of the cluster, unless you deploy a custom AMI using a launch template. For more information about using launch templates, see Launch template support. An Amazon EKS managed node group is an Amazon EC2 Auto Scaling group and associated Amazon EC2 instances that are managed by Amazon Web Services for an Amazon EKS cluster. For more information, see Managed node groups in the Amazon EKS User Guide. Windows AMI types are only supported for commercial Regions that support Windows Amazon EKS.
68
+ * Creates a managed node group for an Amazon EKS cluster. You can only create a node group for your cluster that is equal to the current Kubernetes version for the cluster. An Amazon EKS managed node group is an Amazon EC2 Auto Scaling group and associated Amazon EC2 instances that are managed by Amazon Web Services for an Amazon EKS cluster. For more information, see Managed node groups in the Amazon EKS User Guide. Windows AMI types are only supported for commercial Regions that support Windows Amazon EKS.
61
69
  */
62
70
  createNodegroup(callback?: (err: AWSError, data: EKS.Types.CreateNodegroupResponse) => void): Request<EKS.Types.CreateNodegroupResponse, AWSError>;
63
71
  /**
@@ -76,6 +84,14 @@ declare class EKS extends Service {
76
84
  * Deletes the Amazon EKS cluster control plane. If you have active services in your cluster that are associated with a load balancer, you must delete those services before deleting the cluster so that the load balancers are deleted properly. Otherwise, you can have orphaned resources in your VPC that prevent you from being able to delete the VPC. For more information, see Deleting a Cluster in the Amazon EKS User Guide. If you have managed node groups or Fargate profiles attached to the cluster, you must delete them first. For more information, see DeleteNodegroup and DeleteFargateProfile.
77
85
  */
78
86
  deleteCluster(callback?: (err: AWSError, data: EKS.Types.DeleteClusterResponse) => void): Request<EKS.Types.DeleteClusterResponse, AWSError>;
87
+ /**
88
+ * Deletes an expired / inactive subscription. Deleting inactive subscriptions removes them from the Amazon Web Services Management Console view and from list/describe API responses. Subscriptions can only be cancelled within 7 days of creation, and are cancelled by creating a ticket in the Amazon Web Services Support Center.
89
+ */
90
+ deleteEksAnywhereSubscription(params: EKS.Types.DeleteEksAnywhereSubscriptionRequest, callback?: (err: AWSError, data: EKS.Types.DeleteEksAnywhereSubscriptionResponse) => void): Request<EKS.Types.DeleteEksAnywhereSubscriptionResponse, AWSError>;
91
+ /**
92
+ * Deletes an expired / inactive subscription. Deleting inactive subscriptions removes them from the Amazon Web Services Management Console view and from list/describe API responses. Subscriptions can only be cancelled within 7 days of creation, and are cancelled by creating a ticket in the Amazon Web Services Support Center.
93
+ */
94
+ deleteEksAnywhereSubscription(callback?: (err: AWSError, data: EKS.Types.DeleteEksAnywhereSubscriptionResponse) => void): Request<EKS.Types.DeleteEksAnywhereSubscriptionResponse, AWSError>;
79
95
  /**
80
96
  * Deletes an Fargate profile. When you delete a Fargate profile, any pods running on Fargate that were created with the profile are deleted. If those pods match another Fargate profile, then they are scheduled on Fargate with that profile. If they no longer match any Fargate profiles, then they are not scheduled on Fargate and they may remain in a pending state. Only one Fargate profile in a cluster can be in the DELETING status at a time. You must wait for a Fargate profile to finish deleting before you can delete any other profiles in that cluster.
81
97
  */
@@ -132,6 +148,14 @@ declare class EKS extends Service {
132
148
  * Returns descriptive information about an Amazon EKS cluster. The API server endpoint and certificate authority data returned by this operation are required for kubelet and kubectl to communicate with your Kubernetes API server. For more information, see Create a kubeconfig for Amazon EKS. The API server endpoint and certificate authority data aren't available until the cluster reaches the ACTIVE state.
133
149
  */
134
150
  describeCluster(callback?: (err: AWSError, data: EKS.Types.DescribeClusterResponse) => void): Request<EKS.Types.DescribeClusterResponse, AWSError>;
151
+ /**
152
+ * Returns descriptive information about a subscription.
153
+ */
154
+ describeEksAnywhereSubscription(params: EKS.Types.DescribeEksAnywhereSubscriptionRequest, callback?: (err: AWSError, data: EKS.Types.DescribeEksAnywhereSubscriptionResponse) => void): Request<EKS.Types.DescribeEksAnywhereSubscriptionResponse, AWSError>;
155
+ /**
156
+ * Returns descriptive information about a subscription.
157
+ */
158
+ describeEksAnywhereSubscription(callback?: (err: AWSError, data: EKS.Types.DescribeEksAnywhereSubscriptionResponse) => void): Request<EKS.Types.DescribeEksAnywhereSubscriptionResponse, AWSError>;
135
159
  /**
136
160
  * Returns descriptive information about an Fargate profile.
137
161
  */
@@ -165,19 +189,19 @@ declare class EKS extends Service {
165
189
  */
166
190
  describeUpdate(callback?: (err: AWSError, data: EKS.Types.DescribeUpdateResponse) => void): Request<EKS.Types.DescribeUpdateResponse, AWSError>;
167
191
  /**
168
- * Disassociates an identity provider configuration from a cluster. If you disassociate an identity provider from your cluster, users included in the provider can no longer access the cluster. However, you can still access the cluster with Amazon Web Services IAM users.
192
+ * Disassociates an identity provider configuration from a cluster. If you disassociate an identity provider from your cluster, users included in the provider can no longer access the cluster. However, you can still access the cluster with IAM principals.
169
193
  */
170
194
  disassociateIdentityProviderConfig(params: EKS.Types.DisassociateIdentityProviderConfigRequest, callback?: (err: AWSError, data: EKS.Types.DisassociateIdentityProviderConfigResponse) => void): Request<EKS.Types.DisassociateIdentityProviderConfigResponse, AWSError>;
171
195
  /**
172
- * Disassociates an identity provider configuration from a cluster. If you disassociate an identity provider from your cluster, users included in the provider can no longer access the cluster. However, you can still access the cluster with Amazon Web Services IAM users.
196
+ * Disassociates an identity provider configuration from a cluster. If you disassociate an identity provider from your cluster, users included in the provider can no longer access the cluster. However, you can still access the cluster with IAM principals.
173
197
  */
174
198
  disassociateIdentityProviderConfig(callback?: (err: AWSError, data: EKS.Types.DisassociateIdentityProviderConfigResponse) => void): Request<EKS.Types.DisassociateIdentityProviderConfigResponse, AWSError>;
175
199
  /**
176
- * Lists the available add-ons.
200
+ * Lists the installed add-ons.
177
201
  */
178
202
  listAddons(params: EKS.Types.ListAddonsRequest, callback?: (err: AWSError, data: EKS.Types.ListAddonsResponse) => void): Request<EKS.Types.ListAddonsResponse, AWSError>;
179
203
  /**
180
- * Lists the available add-ons.
204
+ * Lists the installed add-ons.
181
205
  */
182
206
  listAddons(callback?: (err: AWSError, data: EKS.Types.ListAddonsResponse) => void): Request<EKS.Types.ListAddonsResponse, AWSError>;
183
207
  /**
@@ -188,6 +212,14 @@ declare class EKS extends Service {
188
212
  * Lists the Amazon EKS clusters in your Amazon Web Services account in the specified Region.
189
213
  */
190
214
  listClusters(callback?: (err: AWSError, data: EKS.Types.ListClustersResponse) => void): Request<EKS.Types.ListClustersResponse, AWSError>;
215
+ /**
216
+ * Displays the full description of the subscription.
217
+ */
218
+ listEksAnywhereSubscriptions(params: EKS.Types.ListEksAnywhereSubscriptionsRequest, callback?: (err: AWSError, data: EKS.Types.ListEksAnywhereSubscriptionsResponse) => void): Request<EKS.Types.ListEksAnywhereSubscriptionsResponse, AWSError>;
219
+ /**
220
+ * Displays the full description of the subscription.
221
+ */
222
+ listEksAnywhereSubscriptions(callback?: (err: AWSError, data: EKS.Types.ListEksAnywhereSubscriptionsResponse) => void): Request<EKS.Types.ListEksAnywhereSubscriptionsResponse, AWSError>;
191
223
  /**
192
224
  * Lists the Fargate profiles associated with the specified cluster in your Amazon Web Services account in the specified Region.
193
225
  */
@@ -276,6 +308,14 @@ declare class EKS extends Service {
276
308
  * Updates an Amazon EKS cluster to the specified Kubernetes version. Your cluster continues to function during the update. The response output includes an update ID that you can use to track the status of your cluster update with the DescribeUpdate API operation. Cluster updates are asynchronous, and they should finish within a few minutes. During an update, the cluster status moves to UPDATING (this status transition is eventually consistent). When the update is complete (either Failed or Successful), the cluster status moves to Active. If your cluster has managed node groups attached to it, all of your node groups’ Kubernetes versions must match the cluster’s Kubernetes version in order to update the cluster to a new Kubernetes version.
277
309
  */
278
310
  updateClusterVersion(callback?: (err: AWSError, data: EKS.Types.UpdateClusterVersionResponse) => void): Request<EKS.Types.UpdateClusterVersionResponse, AWSError>;
311
+ /**
312
+ * Update an EKS Anywhere Subscription. Only auto renewal and tags can be updated after subscription creation.
313
+ */
314
+ updateEksAnywhereSubscription(params: EKS.Types.UpdateEksAnywhereSubscriptionRequest, callback?: (err: AWSError, data: EKS.Types.UpdateEksAnywhereSubscriptionResponse) => void): Request<EKS.Types.UpdateEksAnywhereSubscriptionResponse, AWSError>;
315
+ /**
316
+ * Update an EKS Anywhere Subscription. Only auto renewal and tags can be updated after subscription creation.
317
+ */
318
+ updateEksAnywhereSubscription(callback?: (err: AWSError, data: EKS.Types.UpdateEksAnywhereSubscriptionResponse) => void): Request<EKS.Types.UpdateEksAnywhereSubscriptionResponse, AWSError>;
279
319
  /**
280
320
  * Updates an Amazon EKS managed node group configuration. Your node group continues to function during the update. The response output includes an update ID that you can use to track the status of your node group update with the DescribeUpdate API operation. Currently you can update the Kubernetes labels for a node group or the scaling configuration.
281
321
  */
@@ -730,7 +770,7 @@ declare namespace EKS {
730
770
  */
731
771
  serviceAccountRoleArn?: RoleArn;
732
772
  /**
733
- * How to resolve field value conflicts for an Amazon EKS add-on. Conflicts are handled based on the value you choose: None – If the self-managed version of the add-on is installed on your cluster, Amazon EKS doesn't change the value. Creation of the add-on might fail. Overwrite – If the self-managed version of the add-on is installed on your cluster and the Amazon EKS default value is different than the existing value, Amazon EKS changes the value to the Amazon EKS default value. Preserve – Not supported. You can set this value when updating an add-on though. For more information, see UpdateAddon. If you don't currently have the self-managed version of the add-on installed on your cluster, the Amazon EKS add-on is installed. Amazon EKS sets all values to default values, regardless of the option that you specify.
773
+ * How to resolve field value conflicts for an Amazon EKS add-on. Conflicts are handled based on the value you choose: None – If the self-managed version of the add-on is installed on your cluster, Amazon EKS doesn't change the value. Creation of the add-on might fail. Overwrite – If the self-managed version of the add-on is installed on your cluster and the Amazon EKS default value is different than the existing value, Amazon EKS changes the value to the Amazon EKS default value. Preserve – This is similar to the NONE option. If the self-managed version of the add-on is installed on your cluster Amazon EKS doesn't change the add-on resource properties. Creation of the add-on might fail if conflicts are detected. This option works differently during the update operation. For more information, see UpdateAddon. If you don't currently have the self-managed version of the add-on installed on your cluster, the Amazon EKS add-on is installed. Amazon EKS sets all values to default values, regardless of the option that you specify.
734
774
  */
735
775
  resolveConflicts?: ResolveConflicts;
736
776
  /**
@@ -797,6 +837,42 @@ declare namespace EKS {
797
837
  */
798
838
  cluster?: Cluster;
799
839
  }
840
+ export interface CreateEksAnywhereSubscriptionRequest {
841
+ /**
842
+ * The unique name for your subscription. It must be unique in your Amazon Web Services account in the Amazon Web Services Region you're creating the subscription in. The name can contain only alphanumeric characters (case-sensitive), hyphens, and underscores. It must start with an alphabetic character and can't be longer than 100 characters.
843
+ */
844
+ name: EksAnywhereSubscriptionName;
845
+ /**
846
+ * An object representing the term duration and term unit type of your subscription. This determines the term length of your subscription. Valid values are MONTHS for term unit and 12 or 36 for term duration, indicating a 12 month or 36 month subscription. This value cannot be changed after creating the subscription.
847
+ */
848
+ term: EksAnywhereSubscriptionTerm;
849
+ /**
850
+ * The number of licenses to purchase with the subscription. Valid values are between 1 and 1000. This value cannot be changed after creating the subscription.
851
+ */
852
+ licenseQuantity?: Integer;
853
+ /**
854
+ * The license type for all licenses in the subscription. Valid value is CLUSTER. With the CLUSTER license type, each license covers support for a single EKS Anywhere cluster.
855
+ */
856
+ licenseType?: EksAnywhereSubscriptionLicenseType;
857
+ /**
858
+ * A boolean indicating whether the subscription auto renews at the end of the term.
859
+ */
860
+ autoRenew?: Boolean;
861
+ /**
862
+ * Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
863
+ */
864
+ clientRequestToken?: String;
865
+ /**
866
+ * The metadata for a subscription to assist with categorization and organization. Each tag consists of a key and an optional value. Subscription tags do not propagate to any other resources associated with the subscription.
867
+ */
868
+ tags?: TagMap;
869
+ }
870
+ export interface CreateEksAnywhereSubscriptionResponse {
871
+ /**
872
+ * The full description of the subscription.
873
+ */
874
+ subscription?: EksAnywhereSubscription;
875
+ }
800
876
  export interface CreateFargateProfileRequest {
801
877
  /**
802
878
  * The name of the Fargate profile.
@@ -942,6 +1018,18 @@ declare namespace EKS {
942
1018
  */
943
1019
  cluster?: Cluster;
944
1020
  }
1021
+ export interface DeleteEksAnywhereSubscriptionRequest {
1022
+ /**
1023
+ * The ID of the subscription.
1024
+ */
1025
+ id: String;
1026
+ }
1027
+ export interface DeleteEksAnywhereSubscriptionResponse {
1028
+ /**
1029
+ * The full description of the subscription to be deleted.
1030
+ */
1031
+ subscription?: EksAnywhereSubscription;
1032
+ }
945
1033
  export interface DeleteFargateProfileRequest {
946
1034
  /**
947
1035
  * The name of the Amazon EKS cluster associated with the Fargate profile to delete.
@@ -1073,6 +1161,18 @@ declare namespace EKS {
1073
1161
  */
1074
1162
  cluster?: Cluster;
1075
1163
  }
1164
+ export interface DescribeEksAnywhereSubscriptionRequest {
1165
+ /**
1166
+ * The ID of the subscription.
1167
+ */
1168
+ id: String;
1169
+ }
1170
+ export interface DescribeEksAnywhereSubscriptionResponse {
1171
+ /**
1172
+ * The full description of the subscription.
1173
+ */
1174
+ subscription?: EksAnywhereSubscription;
1175
+ }
1076
1176
  export interface DescribeFargateProfileRequest {
1077
1177
  /**
1078
1178
  * The name of the Amazon EKS cluster associated with the Fargate profile.
@@ -1162,6 +1262,72 @@ declare namespace EKS {
1162
1262
  export interface DisassociateIdentityProviderConfigResponse {
1163
1263
  update?: Update;
1164
1264
  }
1265
+ export interface EksAnywhereSubscription {
1266
+ /**
1267
+ * UUID identifying a subscription.
1268
+ */
1269
+ id?: String;
1270
+ /**
1271
+ * The Amazon Resource Name (ARN) for the subscription.
1272
+ */
1273
+ arn?: String;
1274
+ /**
1275
+ * The Unix timestamp in seconds for when the subscription was created.
1276
+ */
1277
+ createdAt?: Timestamp;
1278
+ /**
1279
+ * The Unix timestamp in seconds for when the subscription is effective.
1280
+ */
1281
+ effectiveDate?: Timestamp;
1282
+ /**
1283
+ * The Unix timestamp in seconds for when the subscription will expire or auto renew, depending on the auto renew configuration of the subscription object.
1284
+ */
1285
+ expirationDate?: Timestamp;
1286
+ /**
1287
+ * The number of licenses included in a subscription. Valid values are between 1 and 1000.
1288
+ */
1289
+ licenseQuantity?: Integer;
1290
+ /**
1291
+ * The type of licenses included in the subscription. Valid value is CLUSTER. With the CLUSTER license type, each license covers support for a single EKS Anywhere cluster.
1292
+ */
1293
+ licenseType?: EksAnywhereSubscriptionLicenseType;
1294
+ /**
1295
+ * An EksAnywhereSubscriptionTerm object.
1296
+ */
1297
+ term?: EksAnywhereSubscriptionTerm;
1298
+ /**
1299
+ * The status of a subscription.
1300
+ */
1301
+ status?: String;
1302
+ /**
1303
+ * A boolean indicating whether or not a subscription will auto renew when it expires.
1304
+ */
1305
+ autoRenew?: Boolean;
1306
+ /**
1307
+ * License Manager License ARNs associated with the subscription.
1308
+ */
1309
+ licenseArns?: StringList;
1310
+ /**
1311
+ * The metadata for a subscription to assist with categorization and organization. Each tag consists of a key and an optional value. Subscription tags do not propagate to any other resources associated with the subscription.
1312
+ */
1313
+ tags?: TagMap;
1314
+ }
1315
+ export type EksAnywhereSubscriptionLicenseType = "Cluster"|string;
1316
+ export type EksAnywhereSubscriptionList = EksAnywhereSubscription[];
1317
+ export type EksAnywhereSubscriptionName = string;
1318
+ export type EksAnywhereSubscriptionStatus = "CREATING"|"ACTIVE"|"UPDATING"|"EXPIRING"|"EXPIRED"|"DELETING"|string;
1319
+ export type EksAnywhereSubscriptionStatusValues = EksAnywhereSubscriptionStatus[];
1320
+ export interface EksAnywhereSubscriptionTerm {
1321
+ /**
1322
+ * The duration of the subscription term. Valid values are 12 and 36, indicating a 12 month or 36 month subscription.
1323
+ */
1324
+ duration?: Integer;
1325
+ /**
1326
+ * The term unit of the subscription. Valid value is MONTHS.
1327
+ */
1328
+ unit?: EksAnywhereSubscriptionTermUnit;
1329
+ }
1330
+ export type EksAnywhereSubscriptionTermUnit = "MONTHS"|string;
1165
1331
  export interface EncryptionConfig {
1166
1332
  /**
1167
1333
  * Specifies the resources to be encrypted. The only supported value is "secrets".
@@ -1265,6 +1431,7 @@ declare namespace EKS {
1265
1431
  }
1266
1432
  export type IdentityProviderConfigs = IdentityProviderConfig[];
1267
1433
  export type IncludeClustersList = String[];
1434
+ export type Integer = number;
1268
1435
  export type IpFamily = "ipv4"|"ipv6"|string;
1269
1436
  export interface Issue {
1270
1437
  /**
@@ -1336,7 +1503,7 @@ declare namespace EKS {
1336
1503
  export type ListAddonsRequestMaxResults = number;
1337
1504
  export interface ListAddonsResponse {
1338
1505
  /**
1339
- * A list of available add-ons.
1506
+ * A list of installed add-ons.
1340
1507
  */
1341
1508
  addons?: StringList;
1342
1509
  /**
@@ -1369,6 +1536,31 @@ declare namespace EKS {
1369
1536
  */
1370
1537
  nextToken?: String;
1371
1538
  }
1539
+ export interface ListEksAnywhereSubscriptionsRequest {
1540
+ /**
1541
+ * The maximum number of cluster results returned by ListEksAnywhereSubscriptions in paginated output. When you use this parameter, ListEksAnywhereSubscriptions returns only maxResults results in a single page along with a nextToken response element. You can see the remaining results of the initial request by sending another ListEksAnywhereSubscriptions request with the returned nextToken value. This value can be between 1 and 100. If you don't use this parameter, ListEksAnywhereSubscriptions returns up to 10 results and a nextToken value if applicable.
1542
+ */
1543
+ maxResults?: ListEksAnywhereSubscriptionsRequestMaxResults;
1544
+ /**
1545
+ * The nextToken value to include in a future ListEksAnywhereSubscriptions request. When the results of a ListEksAnywhereSubscriptions request exceed maxResults, you can use this value to retrieve the next page of results. This value is null when there are no more results to return.
1546
+ */
1547
+ nextToken?: String;
1548
+ /**
1549
+ * An array of subscription statuses to filter on.
1550
+ */
1551
+ includeStatus?: EksAnywhereSubscriptionStatusValues;
1552
+ }
1553
+ export type ListEksAnywhereSubscriptionsRequestMaxResults = number;
1554
+ export interface ListEksAnywhereSubscriptionsResponse {
1555
+ /**
1556
+ * A list of all subscription objects in the region, filtered by includeStatus and paginated by nextToken and maxResults.
1557
+ */
1558
+ subscriptions?: EksAnywhereSubscriptionList;
1559
+ /**
1560
+ * The nextToken value to include in a future ListEksAnywhereSubscriptions request. When the results of a ListEksAnywhereSubscriptions request exceed maxResults, you can use this value to retrieve the next page of results. This value is null when there are no more results to return.
1561
+ */
1562
+ nextToken?: String;
1563
+ }
1372
1564
  export interface ListFargateProfilesRequest {
1373
1565
  /**
1374
1566
  * The name of the Amazon EKS cluster that you would like to list Fargate profiles in.
@@ -1775,7 +1967,7 @@ declare namespace EKS {
1775
1967
  export type PercentCapacity = number;
1776
1968
  export interface Provider {
1777
1969
  /**
1778
- * Amazon Resource Name (ARN) or alias of the KMS key. The KMS key must be symmetric, created in the same region as the cluster, and if the KMS key was created in a different account, the user must have access to the KMS key. For more information, see Allowing Users in Other Accounts to Use a KMS key in the Key Management Service Developer Guide.
1970
+ * Amazon Resource Name (ARN) or alias of the KMS key. The KMS key must be symmetric and created in the same Amazon Web Services Region as the cluster. If the KMS key was created in a different account, the IAM principal must have access to the KMS key. For more information, see Allowing users in other accounts to use a KMS key in the Key Management Service Developer Guide.
1779
1971
  */
1780
1972
  keyArn?: String;
1781
1973
  }
@@ -1955,6 +2147,26 @@ declare namespace EKS {
1955
2147
  */
1956
2148
  update?: Update;
1957
2149
  }
2150
+ export interface UpdateEksAnywhereSubscriptionRequest {
2151
+ /**
2152
+ *
2153
+ */
2154
+ id: String;
2155
+ /**
2156
+ * A boolean indicating whether or not to automatically renew the subscription.
2157
+ */
2158
+ autoRenew: Boolean;
2159
+ /**
2160
+ * Unique, case-sensitive identifier to ensure the idempotency of the request.
2161
+ */
2162
+ clientRequestToken?: String;
2163
+ }
2164
+ export interface UpdateEksAnywhereSubscriptionResponse {
2165
+ /**
2166
+ * The full description of the updated subscription.
2167
+ */
2168
+ subscription?: EksAnywhereSubscription;
2169
+ }
1958
2170
  export interface UpdateLabelsPayload {
1959
2171
  /**
1960
2172
  * Kubernetes labels to be added or updated.
@@ -2888,7 +2888,7 @@ declare namespace Lambda {
2888
2888
  export type ResourceArn = string;
2889
2889
  export type ResponseStreamingInvocationType = "RequestResponse"|"DryRun"|string;
2890
2890
  export type RoleArn = string;
2891
- export type Runtime = "nodejs"|"nodejs4.3"|"nodejs6.10"|"nodejs8.10"|"nodejs10.x"|"nodejs12.x"|"nodejs14.x"|"nodejs16.x"|"java8"|"java8.al2"|"java11"|"python2.7"|"python3.6"|"python3.7"|"python3.8"|"python3.9"|"dotnetcore1.0"|"dotnetcore2.0"|"dotnetcore2.1"|"dotnetcore3.1"|"dotnet6"|"nodejs4.3-edge"|"go1.x"|"ruby2.5"|"ruby2.7"|"provided"|"provided.al2"|"nodejs18.x"|"python3.10"|"java17"|"ruby3.2"|"python3.11"|"nodejs20.x"|string;
2891
+ export type Runtime = "nodejs"|"nodejs4.3"|"nodejs6.10"|"nodejs8.10"|"nodejs10.x"|"nodejs12.x"|"nodejs14.x"|"nodejs16.x"|"java8"|"java8.al2"|"java11"|"python2.7"|"python3.6"|"python3.7"|"python3.8"|"python3.9"|"dotnetcore1.0"|"dotnetcore2.0"|"dotnetcore2.1"|"dotnetcore3.1"|"dotnet6"|"nodejs4.3-edge"|"go1.x"|"ruby2.5"|"ruby2.7"|"provided"|"provided.al2"|"nodejs18.x"|"python3.10"|"java17"|"ruby3.2"|"python3.11"|"nodejs20.x"|"provided.al2023"|string;
2892
2892
  export type RuntimeVersionArn = string;
2893
2893
  export interface RuntimeVersionConfig {
2894
2894
  /**
@@ -1277,7 +1277,7 @@ declare namespace Omics {
1277
1277
  /**
1278
1278
  * The ARN of the reference.
1279
1279
  */
1280
- referenceArn: ReferenceArn;
1280
+ referenceArn?: ReferenceArn;
1281
1281
  /**
1282
1282
  * The name of the read set.
1283
1283
  */
@@ -1839,7 +1839,7 @@ declare namespace Omics {
1839
1839
  export type FileInformationContentLengthLong = number;
1840
1840
  export type FileInformationPartSizeLong = number;
1841
1841
  export type FileInformationTotalPartsInteger = number;
1842
- export type FileType = "FASTQ"|"BAM"|"CRAM"|string;
1842
+ export type FileType = "FASTQ"|"BAM"|"CRAM"|"UBAM"|string;
1843
1843
  export interface Filter {
1844
1844
  /**
1845
1845
  * The Amazon Resource Number (Arn) for an analytics store.
@@ -3862,7 +3862,7 @@ declare namespace Omics {
3862
3862
  /**
3863
3863
  * A genome reference ARN to filter on.
3864
3864
  */
3865
- referenceArn?: ReferenceArn;
3865
+ referenceArn?: ReferenceArnFilter;
3866
3866
  /**
3867
3867
  * The filter's start date.
3868
3868
  */
@@ -3998,6 +3998,7 @@ declare namespace Omics {
3998
3998
  export type ReadSetUploadPartListItemPartNumberInteger = number;
3999
3999
  export type ReadSetUploadPartListItemPartSizeLong = number;
4000
4000
  export type ReferenceArn = string;
4001
+ export type ReferenceArnFilter = string;
4001
4002
  export type ReferenceDescription = string;
4002
4003
  export type ReferenceFile = "SOURCE"|"INDEX"|string;
4003
4004
  export interface ReferenceFiles {
@@ -4573,7 +4574,7 @@ declare namespace Omics {
4573
4574
  /**
4574
4575
  * The source's reference ARN.
4575
4576
  */
4576
- referenceArn: ReferenceArn;
4577
+ referenceArn?: ReferenceArn;
4577
4578
  /**
4578
4579
  * The source's name.
4579
4580
  */
@@ -463,7 +463,7 @@ declare namespace SQS {
463
463
  /**
464
464
  * The status of the message movement task. Possible values are: RUNNING, COMPLETED, CANCELLING, CANCELLED, and FAILED.
465
465
  */
466
- Status?: TaskStatus;
466
+ Status?: String;
467
467
  /**
468
468
  * The ARN of the queue that contains the messages to be moved to another queue.
469
469
  */
@@ -846,7 +846,6 @@ declare namespace SQS {
846
846
  Tags: TagMap;
847
847
  }
848
848
  export type TagValue = string;
849
- export type TaskStatus = "RUNNING"|"FAILED"|"CANCELLING"|"CANCELLED"|"COMPLETED"|string;
850
849
  export type Token = string;
851
850
  export interface UntagQueueRequest {
852
851
  /**
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1491.0',
86
+ VERSION: '2.1493.0',
87
87
 
88
88
  /**
89
89
  * @api private