aws-sdk 2.1149.0 → 2.1152.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 +15 -1
- package/README.md +1 -1
- package/apis/auditmanager-2017-07-25.min.json +4 -0
- package/apis/ce-2017-10-25.min.json +79 -0
- package/apis/ce-2017-10-25.paginators.json +5 -0
- package/apis/dms-2016-01-01.min.json +385 -52
- package/apis/dms-2016-01-01.paginators.json +25 -0
- package/apis/m2-2021-04-28.examples.json +5 -0
- package/apis/m2-2021-04-28.min.json +1820 -0
- package/apis/m2-2021-04-28.paginators.json +58 -0
- package/apis/metadata.json +7 -0
- package/apis/neptune-2014-10-31.min.json +293 -100
- package/apis/redshift-2012-12-01.min.json +39 -5
- package/apis/redshift-serverless-2021-04-21.examples.json +5 -0
- package/apis/redshift-serverless-2021-04-21.min.json +1206 -0
- package/apis/redshift-serverless-2021-04-21.paginators.json +40 -0
- package/clients/all.d.ts +2 -0
- package/clients/all.js +3 -1
- package/clients/auditmanager.d.ts +7 -7
- package/clients/chimesdkmeetings.d.ts +1 -1
- package/clients/costexplorer.d.ts +219 -113
- package/clients/dms.d.ts +532 -2
- package/clients/iam.d.ts +2 -2
- package/clients/m2.d.ts +1840 -0
- package/clients/m2.js +18 -0
- package/clients/neptune.d.ts +233 -0
- package/clients/redshift.d.ts +41 -1
- package/clients/redshiftserverless.d.ts +1525 -0
- package/clients/redshiftserverless.js +18 -0
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +85 -11
- package/dist/aws-sdk.js +133 -8
- package/dist/aws-sdk.min.js +91 -91
- package/lib/config_service_placeholders.d.ts +4 -0
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,21 @@
|
|
|
1
1
|
# Changelog for AWS SDK for JavaScript
|
|
2
|
-
<!--LATEST=2.
|
|
2
|
+
<!--LATEST=2.1152.0-->
|
|
3
3
|
<!--ENTRYINSERT-->
|
|
4
4
|
|
|
5
|
+
## 2.1152.0
|
|
6
|
+
* feature: ChimeSDKMeetings: Adds support for live transcription in AWS GovCloud (US) Regions.
|
|
7
|
+
|
|
8
|
+
## 2.1151.0
|
|
9
|
+
* feature: DMS: This release adds DMS Fleet Advisor APIs and exposes functionality for DMS Fleet Advisor. It adds functionality to create and modify fleet advisor instances, and to collect and analyze information about the local data infrastructure.
|
|
10
|
+
* feature: M2: AWS Mainframe Modernization service is a managed mainframe service and set of tools for planning, migrating, modernizing, and running mainframe workloads on AWS
|
|
11
|
+
* feature: Neptune: This release adds support for Neptune to be configured as a global database, with a primary DB cluster in one region, and up to five secondary DB clusters in other regions.
|
|
12
|
+
* feature: Redshift: Adds new API GetClusterCredentialsWithIAM to return temporary credentials.
|
|
13
|
+
* feature: RedshiftServerless: Add new API operations for Amazon Redshift Serverless, a new way of using Amazon Redshift without needing to manually manage provisioned clusters. The new operations let you interact with Redshift Serverless resources, such as create snapshots, list VPC endpoints, delete resource policies, and more.
|
|
14
|
+
|
|
15
|
+
## 2.1150.0
|
|
16
|
+
* feature: AuditManager: This release introduces 2 updates to the Audit Manager API. The roleType and roleArn attributes are now required when you use the CreateAssessment or UpdateAssessment operation. We also added a throttling exception to the RegisterAccount API operation.
|
|
17
|
+
* feature: CostExplorer: Added two new APIs to support cost allocation tags operations: ListCostAllocationTags, UpdateCostAllocationTagsStatus.
|
|
18
|
+
|
|
5
19
|
## 2.1149.0
|
|
6
20
|
* feature: ChimeSDKMessaging: This release adds support for searching channels by members via the SearchChannels API, removes required restrictions for Name and Mode in UpdateChannel API and enhances CreateChannel API by exposing member and moderator list as well as channel id as optional parameters.
|
|
7
21
|
* feature: Connect: This release adds a new API, GetCurrentUserData, which returns real-time details about users' current activity.
|
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.1152.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
|
|
@@ -1359,6 +1359,45 @@
|
|
|
1359
1359
|
}
|
|
1360
1360
|
}
|
|
1361
1361
|
},
|
|
1362
|
+
"ListCostAllocationTags": {
|
|
1363
|
+
"input": {
|
|
1364
|
+
"type": "structure",
|
|
1365
|
+
"members": {
|
|
1366
|
+
"Status": {},
|
|
1367
|
+
"TagKeys": {
|
|
1368
|
+
"type": "list",
|
|
1369
|
+
"member": {}
|
|
1370
|
+
},
|
|
1371
|
+
"Type": {},
|
|
1372
|
+
"NextToken": {},
|
|
1373
|
+
"MaxResults": {
|
|
1374
|
+
"type": "integer"
|
|
1375
|
+
}
|
|
1376
|
+
}
|
|
1377
|
+
},
|
|
1378
|
+
"output": {
|
|
1379
|
+
"type": "structure",
|
|
1380
|
+
"members": {
|
|
1381
|
+
"CostAllocationTags": {
|
|
1382
|
+
"type": "list",
|
|
1383
|
+
"member": {
|
|
1384
|
+
"type": "structure",
|
|
1385
|
+
"required": [
|
|
1386
|
+
"TagKey",
|
|
1387
|
+
"Type",
|
|
1388
|
+
"Status"
|
|
1389
|
+
],
|
|
1390
|
+
"members": {
|
|
1391
|
+
"TagKey": {},
|
|
1392
|
+
"Type": {},
|
|
1393
|
+
"Status": {}
|
|
1394
|
+
}
|
|
1395
|
+
}
|
|
1396
|
+
},
|
|
1397
|
+
"NextToken": {}
|
|
1398
|
+
}
|
|
1399
|
+
}
|
|
1400
|
+
},
|
|
1362
1401
|
"ListCostCategoryDefinitions": {
|
|
1363
1402
|
"input": {
|
|
1364
1403
|
"type": "structure",
|
|
@@ -1531,6 +1570,46 @@
|
|
|
1531
1570
|
}
|
|
1532
1571
|
}
|
|
1533
1572
|
},
|
|
1573
|
+
"UpdateCostAllocationTagsStatus": {
|
|
1574
|
+
"input": {
|
|
1575
|
+
"type": "structure",
|
|
1576
|
+
"required": [
|
|
1577
|
+
"CostAllocationTagsStatus"
|
|
1578
|
+
],
|
|
1579
|
+
"members": {
|
|
1580
|
+
"CostAllocationTagsStatus": {
|
|
1581
|
+
"type": "list",
|
|
1582
|
+
"member": {
|
|
1583
|
+
"type": "structure",
|
|
1584
|
+
"required": [
|
|
1585
|
+
"TagKey",
|
|
1586
|
+
"Status"
|
|
1587
|
+
],
|
|
1588
|
+
"members": {
|
|
1589
|
+
"TagKey": {},
|
|
1590
|
+
"Status": {}
|
|
1591
|
+
}
|
|
1592
|
+
}
|
|
1593
|
+
}
|
|
1594
|
+
}
|
|
1595
|
+
},
|
|
1596
|
+
"output": {
|
|
1597
|
+
"type": "structure",
|
|
1598
|
+
"members": {
|
|
1599
|
+
"Errors": {
|
|
1600
|
+
"type": "list",
|
|
1601
|
+
"member": {
|
|
1602
|
+
"type": "structure",
|
|
1603
|
+
"members": {
|
|
1604
|
+
"TagKey": {},
|
|
1605
|
+
"Code": {},
|
|
1606
|
+
"Message": {}
|
|
1607
|
+
}
|
|
1608
|
+
}
|
|
1609
|
+
}
|
|
1610
|
+
}
|
|
1611
|
+
}
|
|
1612
|
+
},
|
|
1534
1613
|
"UpdateCostCategoryDefinition": {
|
|
1535
1614
|
"input": {
|
|
1536
1615
|
"type": "structure",
|
|
@@ -10,6 +10,11 @@
|
|
|
10
10
|
"output_token": "NextToken",
|
|
11
11
|
"limit_key": "MaxResults"
|
|
12
12
|
},
|
|
13
|
+
"ListCostAllocationTags": {
|
|
14
|
+
"input_token": "NextToken",
|
|
15
|
+
"output_token": "NextToken",
|
|
16
|
+
"limit_key": "MaxResults"
|
|
17
|
+
},
|
|
13
18
|
"ListCostCategoryDefinitions": {
|
|
14
19
|
"input_token": "NextToken",
|
|
15
20
|
"output_token": "NextToken",
|