aws-sdk 2.1012.0 → 2.1016.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.
Files changed (52) hide show
  1. package/CHANGELOG.md +27 -1
  2. package/README.md +1 -1
  3. package/apis/auditmanager-2017-07-25.min.json +168 -12
  4. package/apis/auditmanager-2017-07-25.paginators.json +5 -0
  5. package/apis/autoscaling-2011-01-01.min.json +240 -94
  6. package/apis/chime-2018-05-01.min.json +4 -2
  7. package/apis/chime-sdk-identity-2021-04-20.min.json +362 -13
  8. package/apis/chime-sdk-identity-2021-04-20.paginators.json +5 -0
  9. package/apis/chime-sdk-messaging-2021-05-15.min.json +180 -29
  10. package/apis/ec2-2016-11-15.min.json +1331 -800
  11. package/apis/ec2-2016-11-15.paginators.json +12 -0
  12. package/apis/emr-containers-2020-10-01.min.json +18 -6
  13. package/apis/quicksight-2018-04-01.min.json +27 -21
  14. package/apis/rds-2014-10-31.min.json +412 -317
  15. package/apis/route53resolver-2018-04-01.min.json +85 -13
  16. package/apis/route53resolver-2018-04-01.paginators.json +6 -0
  17. package/apis/sagemaker-2017-07-24.min.json +924 -792
  18. package/apis/textract-2018-06-27.min.json +107 -43
  19. package/clients/auditmanager.d.ts +486 -305
  20. package/clients/autoscaling.d.ts +217 -15
  21. package/clients/chime.d.ts +8 -0
  22. package/clients/chimesdkidentity.d.ts +314 -2
  23. package/clients/chimesdkmessaging.d.ts +146 -15
  24. package/clients/connect.d.ts +11 -11
  25. package/clients/ec2.d.ts +548 -4
  26. package/clients/eks.d.ts +1 -1
  27. package/clients/emrcontainers.d.ts +18 -3
  28. package/clients/finspace.js +0 -1
  29. package/clients/finspacedata.js +0 -1
  30. package/clients/lexmodelsv2.js +0 -1
  31. package/clients/lookoutmetrics.js +0 -1
  32. package/clients/quicksight.d.ts +12 -2
  33. package/clients/rds.d.ts +361 -200
  34. package/clients/route53resolver.d.ts +94 -0
  35. package/clients/sagemaker.d.ts +152 -8
  36. package/clients/textract.d.ts +98 -6
  37. package/dist/aws-sdk-core-react-native.js +57 -22
  38. package/dist/aws-sdk-react-native.js +299 -340
  39. package/dist/aws-sdk.js +2134 -1234
  40. package/dist/aws-sdk.min.js +87 -87
  41. package/lib/core.js +1 -1
  42. package/lib/protocol/rest_json.js +6 -12
  43. package/lib/region_config.js +44 -1
  44. package/lib/region_config_data.json +81 -0
  45. package/lib/request.js +4 -6
  46. package/lib/service.js +1 -1
  47. package/package.json +2 -2
  48. package/scripts/region-checker/allowlist.js +4 -0
  49. package/lib/services/finspace.js +0 -23
  50. package/lib/services/finspacedata.js +0 -23
  51. package/lib/services/lexmodelsv2.js +0 -23
  52. package/lib/services/lookoutmetrics.js +0 -22
package/clients/eks.d.ts CHANGED
@@ -350,7 +350,7 @@ declare class EKS extends Service {
350
350
  waitFor(state: "fargateProfileDeleted", callback?: (err: AWSError, data: EKS.Types.DescribeFargateProfileResponse) => void): Request<EKS.Types.DescribeFargateProfileResponse, AWSError>;
351
351
  }
352
352
  declare namespace EKS {
353
- export type AMITypes = "AL2_x86_64"|"AL2_x86_64_GPU"|"AL2_ARM_64"|"CUSTOM"|string;
353
+ export type AMITypes = "AL2_x86_64"|"AL2_x86_64_GPU"|"AL2_ARM_64"|"CUSTOM"|"BOTTLEROCKET_ARM_64"|"BOTTLEROCKET_x86_64"|string;
354
354
  export interface Addon {
355
355
  /**
356
356
  * The name of the add-on.
@@ -134,6 +134,7 @@ declare class EMRcontainers extends Service {
134
134
  }
135
135
  declare namespace EMRcontainers {
136
136
  export type ACMCertArn = string;
137
+ export type Base64Encoded = string;
137
138
  export interface CancelJobRunRequest {
138
139
  /**
139
140
  * The ID of the job run to cancel.
@@ -154,6 +155,16 @@ declare namespace EMRcontainers {
154
155
  */
155
156
  virtualClusterId?: ResourceIdString;
156
157
  }
158
+ export interface Certificate {
159
+ /**
160
+ * The ARN of the certificate generated for managed endpoint.
161
+ */
162
+ certificateArn?: ACMCertArn;
163
+ /**
164
+ * The base64 encoded PEM certificate data generated for managed endpoint.
165
+ */
166
+ certificateData?: Base64Encoded;
167
+ }
157
168
  export type ClientToken = string;
158
169
  export interface CloudWatchMonitoringConfiguration {
159
170
  /**
@@ -234,9 +245,9 @@ declare namespace EMRcontainers {
234
245
  */
235
246
  executionRoleArn: IAMRoleArn;
236
247
  /**
237
- * The certificate ARN of the managed endpoint.
248
+ * The certificate ARN provided by users for the managed endpoint. This fiedd is under deprecation and will be removed in future releases.
238
249
  */
239
- certificateArn: ACMCertArn;
250
+ certificateArn?: ACMCertArn;
240
251
  /**
241
252
  * The configuration settings that will be used to override existing configurations.
242
253
  */
@@ -417,9 +428,13 @@ declare namespace EMRcontainers {
417
428
  */
418
429
  executionRoleArn?: IAMRoleArn;
419
430
  /**
420
- * The certificate ARN of the endpoint.
431
+ * The certificate ARN of the endpoint. This field is under deprecation and will be removed in future.
421
432
  */
422
433
  certificateArn?: ACMCertArn;
434
+ /**
435
+ * The certificate generated by emr control plane on customer behalf to secure the managed endpoint.
436
+ */
437
+ certificateAuthority?: Certificate;
423
438
  /**
424
439
  * The configuration settings that are used to override existing configurations for endpoints.
425
440
  */
@@ -5,7 +5,6 @@ var apiLoader = AWS.apiLoader;
5
5
 
6
6
  apiLoader.services['finspace'] = {};
7
7
  AWS.Finspace = Service.defineService('finspace', ['2021-03-12']);
8
- require('../lib/services/finspace');
9
8
  Object.defineProperty(apiLoader.services['finspace'], '2021-03-12', {
10
9
  get: function get() {
11
10
  var model = require('../apis/finspace-2021-03-12.min.json');
@@ -5,7 +5,6 @@ var apiLoader = AWS.apiLoader;
5
5
 
6
6
  apiLoader.services['finspacedata'] = {};
7
7
  AWS.Finspacedata = Service.defineService('finspacedata', ['2020-07-13']);
8
- require('../lib/services/finspacedata');
9
8
  Object.defineProperty(apiLoader.services['finspacedata'], '2020-07-13', {
10
9
  get: function get() {
11
10
  var model = require('../apis/finspace-data-2020-07-13.min.json');
@@ -5,7 +5,6 @@ var apiLoader = AWS.apiLoader;
5
5
 
6
6
  apiLoader.services['lexmodelsv2'] = {};
7
7
  AWS.LexModelsV2 = Service.defineService('lexmodelsv2', ['2020-08-07']);
8
- require('../lib/services/lexmodelsv2');
9
8
  Object.defineProperty(apiLoader.services['lexmodelsv2'], '2020-08-07', {
10
9
  get: function get() {
11
10
  var model = require('../apis/models.lex.v2-2020-08-07.min.json');
@@ -5,7 +5,6 @@ var apiLoader = AWS.apiLoader;
5
5
 
6
6
  apiLoader.services['lookoutmetrics'] = {};
7
7
  AWS.LookoutMetrics = Service.defineService('lookoutmetrics', ['2017-07-25']);
8
- require('../lib/services/lookoutmetrics');
9
8
  Object.defineProperty(apiLoader.services['lookoutmetrics'], '2017-07-25', {
10
9
  get: function get() {
11
10
  var model = require('../apis/lookoutmetrics-2017-07-25.min.json');
@@ -4066,13 +4066,13 @@ declare namespace QuickSight {
4066
4066
  */
4067
4067
  UserArn: Arn;
4068
4068
  /**
4069
- * The experience you are embedding. For registered users, you can embed Amazon QuickSight dashboards or the entire Amazon QuickSight console.
4069
+ * The experience you are embedding. For registered users, you can embed Amazon QuickSight dashboards, the entire Amazon QuickSight console, or the Amazon QuickSight Q search bar.
4070
4070
  */
4071
4071
  ExperienceConfiguration: RegisteredUserEmbeddingExperienceConfiguration;
4072
4072
  }
4073
4073
  export interface GenerateEmbedUrlForRegisteredUserResponse {
4074
4074
  /**
4075
- * The embed URL for the Amazon QuickSight dashboard or console.
4075
+ * The embed URL for the Amazon QuickSight dashboard, console, or Q search bar.
4076
4076
  */
4077
4077
  EmbedUrl: EmbeddingUrl;
4078
4078
  /**
@@ -5509,6 +5509,16 @@ declare namespace QuickSight {
5509
5509
  * The configuration details for providing an Amazon QuickSight console embedding experience. This can be used along with custom permissions to restrict access to certain features. For more information, see Customizing Access to the Amazon QuickSight Console in the Amazon QuickSight User Guide. Use GenerateEmbedUrlForRegisteredUser where you want to provide an authoring portal that allows users to create data sources, datasets, analyses, and dashboards. The users who accesses an embedded Amazon QuickSight console needs to belong to the author or admin security cohort. If you want to restrict permissions to some of these features, add a custom permissions profile to the user with the UpdateUser API operation. Use RegisterUser API operation to add a new user with a custom permission profile attached. For more information, see the following sections in the Amazon QuickSight User Guide: Embedding the Full Functionality of the Amazon QuickSight Console for Authenticated Users Customizing Access to the Amazon QuickSight Console For more information about the high-level steps for embedding and for an interactive demo of the ways you can customize embedding, visit the Amazon QuickSight Developer Portal.
5510
5510
  */
5511
5511
  QuickSightConsole?: RegisteredUserQuickSightConsoleEmbeddingConfiguration;
5512
+ /**
5513
+ * The configuration details for embedding the Q search bar. For more information about embedding the Q search bar, see Embedding Overview.
5514
+ */
5515
+ QSearchBar?: RegisteredUserQSearchBarEmbeddingConfiguration;
5516
+ }
5517
+ export interface RegisteredUserQSearchBarEmbeddingConfiguration {
5518
+ /**
5519
+ * The ID of the Q topic that you want to make the starting topic in the Q search bar. You can find a topic ID by navigating to the Topics pane in the Amazon QuickSight application and opening a topic. The ID is in the URL for the topic that you open. If you don't specify an initial topic, a list of all shared topics is shown in the Q bar for your readers. When you select an initial topic, you can specify whether or not readers are allowed to select other topics from the available ones in the list.
5520
+ */
5521
+ InitialTopicId?: RestrictiveResourceId;
5512
5522
  }
5513
5523
  export interface RegisteredUserQuickSightConsoleEmbeddingConfiguration {
5514
5524
  /**