aws-sdk 2.1503.0 → 2.1505.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 (41) hide show
  1. package/CHANGELOG.md +15 -1
  2. package/README.md +1 -1
  3. package/apis/appsync-2017-07-25.min.json +141 -6
  4. package/apis/b2bi-2022-06-23.examples.json +714 -0
  5. package/apis/b2bi-2022-06-23.min.json +1095 -0
  6. package/apis/b2bi-2022-06-23.paginators.json +28 -0
  7. package/apis/backup-2018-11-15.min.json +855 -84
  8. package/apis/backup-2018-11-15.paginators.json +18 -0
  9. package/apis/controltower-2018-05-10.min.json +80 -12
  10. package/apis/elasticache-2015-02-02.min.json +481 -132
  11. package/apis/elasticache-2015-02-02.paginators.json +12 -0
  12. package/apis/elasticfilesystem-2015-02-01.min.json +66 -32
  13. package/apis/fis-2020-12-01.min.json +366 -15
  14. package/apis/fis-2020-12-01.paginators.json +10 -0
  15. package/apis/metadata.json +3 -0
  16. package/apis/securityhub-2018-10-26.examples.json +433 -8
  17. package/apis/securityhub-2018-10-26.min.json +790 -336
  18. package/apis/securityhub-2018-10-26.paginators.json +12 -0
  19. package/apis/transcribe-2017-10-26.min.json +257 -70
  20. package/apis/transcribe-2017-10-26.paginators.json +5 -0
  21. package/clients/all.d.ts +1 -0
  22. package/clients/all.js +2 -1
  23. package/clients/appsync.d.ts +169 -0
  24. package/clients/b2bi.d.ts +1388 -0
  25. package/clients/b2bi.js +18 -0
  26. package/clients/backup.d.ts +848 -45
  27. package/clients/controltower.d.ts +103 -47
  28. package/clients/efs.d.ts +42 -9
  29. package/clients/elasticache.d.ts +484 -12
  30. package/clients/fis.d.ts +383 -3
  31. package/clients/glue.d.ts +3 -3
  32. package/clients/rds.d.ts +80 -80
  33. package/clients/securityhub.d.ts +603 -13
  34. package/clients/transcribeservice.d.ts +301 -45
  35. package/dist/aws-sdk-core-react-native.js +2 -2
  36. package/dist/aws-sdk-react-native.js +54 -17
  37. package/dist/aws-sdk.js +565 -167
  38. package/dist/aws-sdk.min.js +60 -60
  39. package/lib/config_service_placeholders.d.ts +2 -0
  40. package/lib/core.js +1 -1
  41. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,7 +1,21 @@
1
1
  # Changelog for AWS SDK for JavaScript
2
- <!--LATEST=2.1503.0-->
2
+ <!--LATEST=2.1505.0-->
3
3
  <!--ENTRYINSERT-->
4
4
 
5
+ ## 2.1505.0
6
+ * feature: ElastiCache: Launching Amazon ElastiCache Serverless that enables you to create a cache in under a minute without any capacity management. ElastiCache Serverless monitors the cache's memory, CPU, and network usage and scales both vertically and horizontally to support your application's requirements.
7
+
8
+ ## 2.1504.0
9
+ * feature: AppSync: This update enables introspection of Aurora cluster databases using the RDS Data API
10
+ * feature: B2bi: This is the initial SDK release for AWS B2B Data Interchange.
11
+ * feature: Backup: AWS Backup now supports restore testing, a new feature that allows customers to automate restore testing and validating their backups. Additionally, this release adds support for EBS Snapshots Archive tier.
12
+ * feature: ControlTower: This release adds the following support: 1. The EnableControl API can configure controls that are configurable. 2. The GetEnabledControl API shows the configured parameters on an enabled control. 3. The new UpdateEnabledControl API can change parameters on an enabled control.
13
+ * feature: EFS: Adding support for EFS Replication to existing file system.
14
+ * feature: Fis: AWS FIS adds support for multi-account experiments & empty target resolution. This release also introduces the CreateTargetAccountConfiguration API that allows experiments across multiple AWS accounts, and the ListExperimentResolvedTargets API to list target details.
15
+ * feature: Glue: add observations support to DQ CodeGen config model + update document for connectiontypes supported by ConnectorData entities
16
+ * feature: SecurityHub: Adds and updates APIs to support central configuration. This feature allows the Security Hub delegated administrator to configure Security Hub for their entire AWS Org across multiple regions from a home Region. With this release, findings also include account name and application metadata.
17
+ * feature: TranscribeService: This release adds support for AWS HealthScribe APIs within Amazon Transcribe
18
+
5
19
  ## 2.1503.0
6
20
  * feature: AccessAnalyzer: IAM Access Analyzer now continuously monitors IAM roles and users in your AWS account or organization to generate findings for unused access. Additionally, IAM Access Analyzer now provides custom policy checks to validate that IAM policies adhere to your security standards ahead of deployments.
7
21
  * feature: Amp: This release adds support for the Amazon Managed Service for Prometheus collector, a fully managed, agentless Prometheus metrics scraping capability.
package/README.md CHANGED
@@ -69,7 +69,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
69
69
  To use the SDK in the browser, simply add the following script tag to your
70
70
  HTML pages:
71
71
 
72
- <script src="https://sdk.amazonaws.com/js/aws-sdk-2.1503.0.min.js"></script>
72
+ <script src="https://sdk.amazonaws.com/js/aws-sdk-2.1505.0.min.js"></script>
73
73
 
74
74
  You can also build a custom browser SDK with your specified set of AWS services.
75
75
  This can allow you to reduce the SDK's size, specify different API versions of
@@ -902,6 +902,86 @@
902
902
  }
903
903
  }
904
904
  },
905
+ "GetDataSourceIntrospection": {
906
+ "http": {
907
+ "method": "GET",
908
+ "requestUri": "/v1/datasources/introspections/{introspectionId}"
909
+ },
910
+ "input": {
911
+ "type": "structure",
912
+ "required": [
913
+ "introspectionId"
914
+ ],
915
+ "members": {
916
+ "introspectionId": {
917
+ "location": "uri",
918
+ "locationName": "introspectionId"
919
+ },
920
+ "includeModelsSDL": {
921
+ "location": "querystring",
922
+ "locationName": "includeModelsSDL",
923
+ "type": "boolean"
924
+ },
925
+ "nextToken": {
926
+ "location": "querystring",
927
+ "locationName": "nextToken"
928
+ },
929
+ "maxResults": {
930
+ "location": "querystring",
931
+ "locationName": "maxResults",
932
+ "type": "integer"
933
+ }
934
+ }
935
+ },
936
+ "output": {
937
+ "type": "structure",
938
+ "members": {
939
+ "introspectionId": {},
940
+ "introspectionStatus": {},
941
+ "introspectionStatusDetail": {},
942
+ "introspectionResult": {
943
+ "type": "structure",
944
+ "members": {
945
+ "models": {
946
+ "type": "list",
947
+ "member": {
948
+ "type": "structure",
949
+ "members": {
950
+ "name": {},
951
+ "fields": {
952
+ "type": "list",
953
+ "member": {
954
+ "type": "structure",
955
+ "members": {
956
+ "name": {},
957
+ "type": {
958
+ "shape": "S47"
959
+ },
960
+ "length": {
961
+ "type": "long"
962
+ }
963
+ }
964
+ }
965
+ },
966
+ "primaryKey": {
967
+ "shape": "S49"
968
+ },
969
+ "indexes": {
970
+ "type": "list",
971
+ "member": {
972
+ "shape": "S49"
973
+ }
974
+ },
975
+ "sdl": {}
976
+ }
977
+ }
978
+ },
979
+ "nextToken": {}
980
+ }
981
+ }
982
+ }
983
+ }
984
+ },
905
985
  "GetDomainName": {
906
986
  "http": {
907
987
  "method": "GET",
@@ -1374,7 +1454,7 @@
1374
1454
  "type": "structure",
1375
1455
  "members": {
1376
1456
  "resolvers": {
1377
- "shape": "S51"
1457
+ "shape": "S5e"
1378
1458
  },
1379
1459
  "nextToken": {}
1380
1460
  }
@@ -1415,7 +1495,7 @@
1415
1495
  "type": "structure",
1416
1496
  "members": {
1417
1497
  "resolvers": {
1418
- "shape": "S51"
1498
+ "shape": "S5e"
1419
1499
  },
1420
1500
  "nextToken": {}
1421
1501
  }
@@ -1530,7 +1610,7 @@
1530
1610
  "type": "structure",
1531
1611
  "members": {
1532
1612
  "types": {
1533
- "shape": "S5d"
1613
+ "shape": "S5q"
1534
1614
  },
1535
1615
  "nextToken": {}
1536
1616
  }
@@ -1576,12 +1656,43 @@
1576
1656
  "type": "structure",
1577
1657
  "members": {
1578
1658
  "types": {
1579
- "shape": "S5d"
1659
+ "shape": "S5q"
1580
1660
  },
1581
1661
  "nextToken": {}
1582
1662
  }
1583
1663
  }
1584
1664
  },
1665
+ "StartDataSourceIntrospection": {
1666
+ "http": {
1667
+ "requestUri": "/v1/datasources/introspections"
1668
+ },
1669
+ "input": {
1670
+ "type": "structure",
1671
+ "members": {
1672
+ "rdsDataApiConfig": {
1673
+ "type": "structure",
1674
+ "required": [
1675
+ "resourceArn",
1676
+ "secretArn",
1677
+ "databaseName"
1678
+ ],
1679
+ "members": {
1680
+ "resourceArn": {},
1681
+ "secretArn": {},
1682
+ "databaseName": {}
1683
+ }
1684
+ }
1685
+ }
1686
+ },
1687
+ "output": {
1688
+ "type": "structure",
1689
+ "members": {
1690
+ "introspectionId": {},
1691
+ "introspectionStatus": {},
1692
+ "introspectionStatusDetail": {}
1693
+ }
1694
+ }
1695
+ },
1585
1696
  "StartSchemaCreation": {
1586
1697
  "http": {
1587
1698
  "requestUri": "/v1/apis/{apiId}/schemacreation"
@@ -2521,13 +2632,37 @@
2521
2632
  "type": "list",
2522
2633
  "member": {}
2523
2634
  },
2524
- "S51": {
2635
+ "S47": {
2636
+ "type": "structure",
2637
+ "members": {
2638
+ "kind": {},
2639
+ "name": {},
2640
+ "type": {
2641
+ "shape": "S47"
2642
+ },
2643
+ "values": {
2644
+ "type": "list",
2645
+ "member": {}
2646
+ }
2647
+ }
2648
+ },
2649
+ "S49": {
2650
+ "type": "structure",
2651
+ "members": {
2652
+ "name": {},
2653
+ "fields": {
2654
+ "type": "list",
2655
+ "member": {}
2656
+ }
2657
+ }
2658
+ },
2659
+ "S5e": {
2525
2660
  "type": "list",
2526
2661
  "member": {
2527
2662
  "shape": "S2h"
2528
2663
  }
2529
2664
  },
2530
- "S5d": {
2665
+ "S5q": {
2531
2666
  "type": "list",
2532
2667
  "member": {
2533
2668
  "shape": "S2l"