aws-sdk 2.1252.0 → 2.1254.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.
- package/CHANGELOG.md +17 -1
- package/README.md +1 -1
- package/apis/customer-profiles-2020-08-15.min.json +35 -6
- package/apis/iot-2015-05-28.min.json +365 -317
- package/apis/lakeformation-2017-03-31.min.json +24 -19
- package/apis/license-manager-2018-08-01.min.json +93 -40
- package/apis/marketplace-catalog-2018-09-17.min.json +88 -0
- package/apis/proton-2020-07-20.min.json +186 -179
- package/apis/rds-2014-10-31.min.json +3 -3
- package/apis/rekognition-2016-06-27.min.json +192 -63
- package/apis/ssm-incidents-2018-05-10.min.json +39 -15
- package/apis/workdocs-2016-05-01.min.json +106 -41
- package/apis/xray-2016-04-12.min.json +4 -0
- package/clients/customerprofiles.d.ts +39 -4
- package/clients/glue.d.ts +8 -8
- package/clients/iot.d.ts +60 -3
- package/clients/lakeformation.d.ts +11 -3
- package/clients/licensemanager.d.ts +73 -5
- package/clients/managedblockchain.d.ts +6 -6
- package/clients/marketplacecatalog.d.ts +89 -2
- package/clients/proton.d.ts +66 -33
- package/clients/rds.d.ts +9 -5
- package/clients/rekognition.d.ts +171 -11
- package/clients/securityhub.d.ts +3 -3
- package/clients/ssmincidents.d.ts +32 -0
- package/clients/workdocs.d.ts +52 -7
- package/clients/xray.d.ts +10 -2
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +12 -12
- package/dist/aws-sdk.js +761 -427
- package/dist/aws-sdk.min.js +47 -47
- package/lib/core.js +1 -1
- package/lib/credentials/sso_credentials.js +114 -49
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,23 @@
|
|
|
1
1
|
# Changelog for AWS SDK for JavaScript
|
|
2
|
-
<!--LATEST=2.
|
|
2
|
+
<!--LATEST=2.1254.0-->
|
|
3
3
|
<!--ENTRYINSERT-->
|
|
4
4
|
|
|
5
|
+
## 2.1254.0
|
|
6
|
+
* feature: CustomerProfiles: This release enhances the SearchProfiles API by providing functionality to search for profiles using multiple keys and logical operators.
|
|
7
|
+
* feature: LakeFormation: This release adds a new parameter "Parameters" in the DataLakeSettings.
|
|
8
|
+
* feature: Proton: Add support for CodeBuild Provisioning
|
|
9
|
+
* feature: RDS: This release adds support for restoring an RDS Multi-AZ DB cluster snapshot to a Single-AZ deployment or a Multi-AZ DB instance deployment.
|
|
10
|
+
* feature: WorkDocs: Added 2 new document related operations, DeleteDocumentVersion and RestoreDocumentVersions.
|
|
11
|
+
* feature: XRay: This release enhances GetServiceGraph API to support new type of edge to represent links between SQS and Lambda in event-driven applications.
|
|
12
|
+
|
|
13
|
+
## 2.1253.0
|
|
14
|
+
* feature: Iot: This release add new api listRelatedResourcesForAuditFinding and new member type IssuerCertificates for Iot device device defender Audit.
|
|
15
|
+
* feature: LicenseManager: AWS License Manager now supports onboarded Management Accounts or Delegated Admins to view granted licenses aggregated from all accounts in the organization.
|
|
16
|
+
* feature: MarketplaceCatalog: Added three new APIs to support tagging and tag-based authorization: TagResource, UntagResource, and ListTagsForResource. Added optional parameters to the StartChangeSet API to support tagging a resource while making a request to create it.
|
|
17
|
+
* feature: Rekognition: Adding support for ImageProperties feature to detect dominant colors and image brightness, sharpness, and contrast, inclusion and exclusion filters for labels and label categories, new fields to the API response, "aliases" and "categories"
|
|
18
|
+
* feature: SSMIncidents: RelatedItems now have an ID field which can be used for referencing them else where. Introducing event references in TimelineEvent API and increasing maximum length of "eventData" to 12K characters.
|
|
19
|
+
* feature: sso: use sso token provider in sso credentials if sso session is set in config
|
|
20
|
+
|
|
5
21
|
## 2.1252.0
|
|
6
22
|
* feature: EC2: This release adds a new price capacity optimized allocation strategy for Spot Instances to help customers optimize provisioning of Spot Instances via EC2 Auto Scaling, EC2 Fleet, and Spot Fleet. It allocates Spot Instances based on both spare capacity availability and Spot Instance price.
|
|
7
23
|
* feature: ECS: This release adds support for task scale-in protection with updateTaskProtection and getTaskProtection APIs. UpdateTaskProtection API can be used to protect a service managed task from being terminated by scale-in events and getTaskProtection API to get the scale-in protection status of a task.
|
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
|
|
|
29
29
|
To use the SDK in the browser, simply add the following script tag to your
|
|
30
30
|
HTML pages:
|
|
31
31
|
|
|
32
|
-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.
|
|
32
|
+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1254.0.min.js"></script>
|
|
33
33
|
|
|
34
34
|
You can also build a custom browser SDK with your specified set of AWS services.
|
|
35
35
|
This can allow you to reduce the SDK's size, specify different API versions of
|
|
@@ -1631,7 +1631,24 @@
|
|
|
1631
1631
|
"KeyName": {},
|
|
1632
1632
|
"Values": {
|
|
1633
1633
|
"shape": "S4"
|
|
1634
|
-
}
|
|
1634
|
+
},
|
|
1635
|
+
"AdditionalSearchKeys": {
|
|
1636
|
+
"type": "list",
|
|
1637
|
+
"member": {
|
|
1638
|
+
"type": "structure",
|
|
1639
|
+
"required": [
|
|
1640
|
+
"KeyName",
|
|
1641
|
+
"Values"
|
|
1642
|
+
],
|
|
1643
|
+
"members": {
|
|
1644
|
+
"KeyName": {},
|
|
1645
|
+
"Values": {
|
|
1646
|
+
"shape": "S4"
|
|
1647
|
+
}
|
|
1648
|
+
}
|
|
1649
|
+
}
|
|
1650
|
+
},
|
|
1651
|
+
"LogicalOperator": {}
|
|
1635
1652
|
}
|
|
1636
1653
|
},
|
|
1637
1654
|
"output": {
|
|
@@ -1673,6 +1690,18 @@
|
|
|
1673
1690
|
},
|
|
1674
1691
|
"Attributes": {
|
|
1675
1692
|
"shape": "S2i"
|
|
1693
|
+
},
|
|
1694
|
+
"FoundByItems": {
|
|
1695
|
+
"type": "list",
|
|
1696
|
+
"member": {
|
|
1697
|
+
"type": "structure",
|
|
1698
|
+
"members": {
|
|
1699
|
+
"KeyName": {},
|
|
1700
|
+
"Values": {
|
|
1701
|
+
"shape": "S4"
|
|
1702
|
+
}
|
|
1703
|
+
}
|
|
1704
|
+
}
|
|
1676
1705
|
}
|
|
1677
1706
|
}
|
|
1678
1707
|
}
|
|
@@ -1826,16 +1855,16 @@
|
|
|
1826
1855
|
"PersonalEmailAddress": {},
|
|
1827
1856
|
"BusinessEmailAddress": {},
|
|
1828
1857
|
"Address": {
|
|
1829
|
-
"shape": "
|
|
1858
|
+
"shape": "S67"
|
|
1830
1859
|
},
|
|
1831
1860
|
"ShippingAddress": {
|
|
1832
|
-
"shape": "
|
|
1861
|
+
"shape": "S67"
|
|
1833
1862
|
},
|
|
1834
1863
|
"MailingAddress": {
|
|
1835
|
-
"shape": "
|
|
1864
|
+
"shape": "S67"
|
|
1836
1865
|
},
|
|
1837
1866
|
"BillingAddress": {
|
|
1838
|
-
"shape": "
|
|
1867
|
+
"shape": "S67"
|
|
1839
1868
|
},
|
|
1840
1869
|
"Attributes": {
|
|
1841
1870
|
"type": "map",
|
|
@@ -2248,7 +2277,7 @@
|
|
|
2248
2277
|
}
|
|
2249
2278
|
}
|
|
2250
2279
|
},
|
|
2251
|
-
"
|
|
2280
|
+
"S67": {
|
|
2252
2281
|
"type": "structure",
|
|
2253
2282
|
"members": {
|
|
2254
2283
|
"Address1": {},
|