aws-sdk 2.987.0 → 2.991.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 (46) hide show
  1. package/CHANGELOG.md +25 -1
  2. package/README.md +1 -1
  3. package/apis/chime-2018-05-01.min.json +148 -139
  4. package/apis/comprehend-2017-11-27.min.json +114 -97
  5. package/apis/dms-2016-01-01.min.json +3 -0
  6. package/apis/ec2-2016-11-15.min.json +48 -48
  7. package/apis/es-2015-01-01.min.json +14 -4
  8. package/apis/iot-2015-05-28.min.json +136 -119
  9. package/apis/kafkaconnect-2021-09-14.examples.json +5 -0
  10. package/apis/kafkaconnect-2021-09-14.min.json +960 -0
  11. package/apis/kafkaconnect-2021-09-14.paginators.json +22 -0
  12. package/apis/macie2-2020-01-01.min.json +159 -108
  13. package/apis/metadata.json +3 -0
  14. package/apis/opensearch-2021-01-01.min.json +14 -4
  15. package/apis/pinpoint-2016-12-01.min.json +719 -329
  16. package/apis/robomaker-2018-06-29.min.json +138 -86
  17. package/apis/s3-2006-03-01.examples.json +145 -145
  18. package/apis/s3-2006-03-01.min.json +80 -78
  19. package/apis/sagemaker-2017-07-24.min.json +71 -22
  20. package/apis/transcribe-2017-10-26.min.json +30 -6
  21. package/apis/wafv2-2019-07-29.min.json +1 -0
  22. package/clients/all.d.ts +1 -0
  23. package/clients/all.js +2 -1
  24. package/clients/chime.d.ts +10 -5
  25. package/clients/comprehend.d.ts +35 -0
  26. package/clients/dms.d.ts +14 -10
  27. package/clients/ec2.d.ts +73 -73
  28. package/clients/es.d.ts +18 -3
  29. package/clients/iot.d.ts +28 -2
  30. package/clients/kafkaconnect.d.ts +1132 -0
  31. package/clients/kafkaconnect.js +18 -0
  32. package/clients/macie2.d.ts +75 -23
  33. package/clients/opensearch.d.ts +22 -1
  34. package/clients/pinpoint.d.ts +408 -4
  35. package/clients/robomaker.d.ts +85 -4
  36. package/clients/s3.d.ts +53 -44
  37. package/clients/sagemaker.d.ts +90 -17
  38. package/clients/transcribeservice.d.ts +27 -0
  39. package/clients/wafv2.d.ts +22 -18
  40. package/dist/aws-sdk-core-react-native.js +2 -2
  41. package/dist/aws-sdk-react-native.js +55 -18
  42. package/dist/aws-sdk.js +384 -345
  43. package/dist/aws-sdk.min.js +72 -72
  44. package/lib/config_service_placeholders.d.ts +2 -0
  45. package/lib/core.js +1 -1
  46. package/package.json +1 -1
package/clients/es.d.ts CHANGED
@@ -223,6 +223,10 @@ declare class ES extends Service {
223
223
  * Retrieves the latest status of the last upgrade or upgrade eligibility check that was performed on the domain.
224
224
  */
225
225
  getUpgradeStatus(callback?: (err: AWSError, data: ES.Types.GetUpgradeStatusResponse) => void): Request<ES.Types.GetUpgradeStatusResponse, AWSError>;
226
+ /**
227
+ * Returns the name of all Elasticsearch domains owned by the current user's account.
228
+ */
229
+ listDomainNames(params: ES.Types.ListDomainNamesRequest, callback?: (err: AWSError, data: ES.Types.ListDomainNamesResponse) => void): Request<ES.Types.ListDomainNamesResponse, AWSError>;
226
230
  /**
227
231
  * Returns the name of all Elasticsearch domains owned by the current user's account.
228
232
  */
@@ -586,7 +590,7 @@ declare namespace ES {
586
590
  }
587
591
  export interface ColdStorageOptions {
588
592
  /**
589
- * True to enable cold storage for an Elasticsearch domain.
593
+ * Enable cold storage option. Accepted values true or false
590
594
  */
591
595
  Enabled: Boolean;
592
596
  }
@@ -1047,6 +1051,10 @@ declare namespace ES {
1047
1051
  * Specifies the DomainName.
1048
1052
  */
1049
1053
  DomainName?: DomainName;
1054
+ /**
1055
+ * Specifies the EngineType of the domain.
1056
+ */
1057
+ EngineType?: EngineType;
1050
1058
  }
1051
1059
  export type DomainInfoList = DomainInfo[];
1052
1060
  export interface DomainInformation {
@@ -1178,7 +1186,7 @@ declare namespace ES {
1178
1186
  */
1179
1187
  WarmCount?: IntegerClass;
1180
1188
  /**
1181
- * Specifies the ColdStorageOptions configuration for an Elasticsearch domain.
1189
+ * Specifies the ColdStorageOptions config for Elasticsearch Domain
1182
1190
  */
1183
1191
  ColdStorageOptions?: ColdStorageOptions;
1184
1192
  }
@@ -1380,6 +1388,7 @@ declare namespace ES {
1380
1388
  Status: OptionStatus;
1381
1389
  }
1382
1390
  export type EndpointsMap = {[key: string]: ServiceUrl};
1391
+ export type EngineType = "OpenSearch"|"Elasticsearch"|string;
1383
1392
  export interface ErrorDetails {
1384
1393
  ErrorType?: ErrorType;
1385
1394
  ErrorMessage?: ErrorMessage;
@@ -1522,9 +1531,15 @@ declare namespace ES {
1522
1531
  AdditionalLimits?: AdditionalLimitList;
1523
1532
  }
1524
1533
  export type LimitsByRole = {[key: string]: Limits};
1534
+ export interface ListDomainNamesRequest {
1535
+ /**
1536
+ * Optional parameter to filter the output by domain engine type. Acceptable values are 'Elasticsearch' and 'OpenSearch'.
1537
+ */
1538
+ EngineType?: EngineType;
1539
+ }
1525
1540
  export interface ListDomainNamesResponse {
1526
1541
  /**
1527
- * List of Elasticsearch domain names.
1542
+ * List of domain names and respective engine types.
1528
1543
  */
1529
1544
  DomainNames?: DomainInfoList;
1530
1545
  }
package/clients/iot.d.ts CHANGED
@@ -1965,7 +1965,7 @@ declare namespace Iot {
1965
1965
  */
1966
1966
  cloudwatchLogs?: CloudwatchLogsAction;
1967
1967
  /**
1968
- * Write data to an Amazon Elasticsearch Service domain.
1968
+ * Write data to an Amazon Elasticsearch Service domain. This action is deprecated. Use the OpenSearch action instead.
1969
1969
  */
1970
1970
  elasticsearch?: ElasticsearchAction;
1971
1971
  /**
@@ -2000,6 +2000,10 @@ declare namespace Iot {
2000
2000
  * Send messages to an Amazon Managed Streaming for Apache Kafka (Amazon MSK) or self-managed Apache Kafka cluster.
2001
2001
  */
2002
2002
  kafka?: KafkaAction;
2003
+ /**
2004
+ * Write data to an Amazon OpenSearch Service domain.
2005
+ */
2006
+ openSearch?: OpenSearchAction;
2003
2007
  }
2004
2008
  export type ActionList = Action[];
2005
2009
  export type ActionType = "PUBLISH"|"SUBSCRIBE"|"RECEIVE"|"CONNECT"|string;
@@ -8426,6 +8430,28 @@ declare namespace Iot {
8426
8430
  creationDate?: DateType;
8427
8431
  }
8428
8432
  export type OTAUpdatesSummary = OTAUpdateSummary[];
8433
+ export interface OpenSearchAction {
8434
+ /**
8435
+ * The IAM role ARN that has access to OpenSearch.
8436
+ */
8437
+ roleArn: AwsArn;
8438
+ /**
8439
+ * The endpoint of your OpenSearch domain.
8440
+ */
8441
+ endpoint: ElasticsearchEndpoint;
8442
+ /**
8443
+ * The OpenSearch index where you want to store your data.
8444
+ */
8445
+ index: ElasticsearchIndex;
8446
+ /**
8447
+ * The type of document you are storing.
8448
+ */
8449
+ type: ElasticsearchType;
8450
+ /**
8451
+ * The unique identifier for the document you are storing.
8452
+ */
8453
+ id: ElasticsearchId;
8454
+ }
8429
8455
  export type OptionalVersion = number;
8430
8456
  export interface OutgoingCertificate {
8431
8457
  /**
@@ -9738,7 +9764,7 @@ declare namespace Iot {
9738
9764
  */
9739
9765
  timestamp?: ConnectivityTimestamp;
9740
9766
  /**
9741
- * The reason why the client is disconnected.
9767
+ * The reason why the client is disconnected. If the thing has been disconnected for approximately an hour, the disconnectReason value might be missing.
9742
9768
  */
9743
9769
  disconnectReason?: DisconnectReason;
9744
9770
  }