aws-sdk 2.93.0 → 2.97.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/.changes/2.94.0.json +32 -0
- package/.changes/2.95.0.json +17 -0
- package/.changes/2.96.0.json +12 -0
- package/.changes/2.97.0.json +22 -0
- package/CHANGELOG.md +24 -1
- package/README.md +1 -1
- package/apis/clouddirectory-2016-05-10.min.json +51 -32
- package/apis/codedeploy-2014-10-06.min.json +82 -29
- package/apis/cognito-idp-2016-04-18.min.json +477 -185
- package/apis/config-2014-11-12.min.json +43 -5
- package/apis/ec2-2016-11-15.min.json +1 -0
- package/apis/ec2-2016-11-15.waiters2.json +5 -0
- package/apis/elasticbeanstalk-2010-12-01.min.json +69 -63
- package/apis/elasticloadbalancingv2-2015-12-01.waiters2.json +36 -0
- package/apis/email-2010-12-01.examples.json +2 -0
- package/apis/email-2010-12-01.min.json +54 -45
- package/apis/email-2010-12-01.paginators.json +2 -2
- package/apis/pinpoint-2016-12-01.min.json +287 -142
- package/clients/clouddirectory.d.ts +20 -0
- package/clients/cloudsearchdomain.d.ts +2 -1
- package/clients/codebuild.d.ts +2 -2
- package/clients/codedeploy.d.ts +62 -8
- package/clients/cognitoidentityserviceprovider.d.ts +376 -12
- package/clients/configservice.d.ts +54 -6
- package/clients/ec2.d.ts +12 -8
- package/clients/elasticbeanstalk.d.ts +27 -10
- package/clients/elbv2.d.ts +16 -0
- package/clients/glacier.d.ts +2 -1
- package/clients/lambda.d.ts +2 -1
- package/clients/lexruntime.d.ts +2 -1
- package/clients/pinpoint.d.ts +154 -15
- package/clients/polly.d.ts +2 -1
- package/clients/rds.d.ts +68 -68
- package/clients/s3.d.ts +2 -1
- package/clients/ses.d.ts +25 -15
- package/dist/aws-sdk-core-react-native.js +868 -574
- package/dist/aws-sdk-react-native.js +887 -586
- package/dist/aws-sdk.js +798 -333
- package/dist/aws-sdk.min.js +43 -43
- package/lib/core.js +1 -1
- package/lib/credentials/credential_provider_chain.d.ts +4 -0
- package/lib/protocol/rest_json.js +8 -0
- package/lib/services/s3.js +8 -1
- package/lib/util.js +14 -1
- package/package.json +1 -1
- package/scripts/lib/ts-generator.js +51 -2
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"type": "feature",
|
|
4
|
+
"category": "CodeDeploy",
|
|
5
|
+
"description": "AWS CodeDeploy now supports the use of multiple tag groups in a single deployment group (an intersection of tags) to identify the instances for a deployment. When you create or update a deployment group, use the new ec2TagSet and onPremisesTagSet structures to specify up to three groups of tags. Only instances that are identified by at least one tag in each of the tag groups are included in the deployment group."
|
|
6
|
+
},
|
|
7
|
+
{
|
|
8
|
+
"type": "feature",
|
|
9
|
+
"category": "ConfigService",
|
|
10
|
+
"description": "Added new API, GetDiscoveredResourceCounts, which returns the resource types, the number of each resource type, and the total number of resources that AWS Config is recording in the given region for your AWS account."
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"type": "feature",
|
|
14
|
+
"category": "EC2",
|
|
15
|
+
"description": "Ec2 SpotInstanceRequestFulfilled waiter update"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"type": "feature",
|
|
19
|
+
"category": "ELBv2",
|
|
20
|
+
"description": "Add TargetInService and TargetDeregistered waiters "
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"type": "feature",
|
|
24
|
+
"category": "Pinpoint",
|
|
25
|
+
"description": "This release of the Pinpoint SDK enables App management - create, delete, update operations, Raw Content delivery for APNs and GCM campaign messages and From Address override."
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"type": "feature",
|
|
29
|
+
"category": "SES",
|
|
30
|
+
"description": "This update adds information about publishing email open and click events. This update also adds information about publishing email events to Amazon Simple Notification Service (Amazon SNS)."
|
|
31
|
+
}
|
|
32
|
+
]
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"type": "bugfix",
|
|
4
|
+
"category": "credentials",
|
|
5
|
+
"description": "add typescript definition for resolvePromise()"
|
|
6
|
+
},
|
|
7
|
+
{
|
|
8
|
+
"type": "bugfix",
|
|
9
|
+
"category": "typings",
|
|
10
|
+
"description": "add readablestream type to clients that support streaming"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"type": "feature",
|
|
14
|
+
"category": "ElasticBeanstalk",
|
|
15
|
+
"description": "Add support for paginating the result of DescribeEnvironments Include the ARN of described environments in DescribeEnvironments output"
|
|
16
|
+
}
|
|
17
|
+
]
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"type": "bugfix",
|
|
4
|
+
"category": "REST-JSON serialization",
|
|
5
|
+
"description": "Automatically add a content-type header of application/json to requests with a JSON body"
|
|
6
|
+
},
|
|
7
|
+
{
|
|
8
|
+
"type": "feature",
|
|
9
|
+
"category": "CodeDeploy",
|
|
10
|
+
"description": "Adds support for specifying Application Load Balancers in deployment groups, for both in-place and blue/green deployments."
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"type": "feature",
|
|
14
|
+
"category": "CognitoIdentityServiceProvider",
|
|
15
|
+
"description": "We have added support for features for Amazon Cognito User Pools that enable application developers to easily add and customize a sign-up and sign-in user experience, use OAuth 2.0, and integrate with Facebook, Google, Login with Amazon, and SAML-based identity providers."
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"type": "feature",
|
|
19
|
+
"category": "EC2",
|
|
20
|
+
"description": "Provides customers an opportunity to recover an EIP that was released"
|
|
21
|
+
}
|
|
22
|
+
]
|
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,30 @@
|
|
|
1
1
|
# Changelog for AWS SDK for JavaScript
|
|
2
|
-
<!--LATEST=2.
|
|
2
|
+
<!--LATEST=2.97.0-->
|
|
3
3
|
<!--ENTRYINSERT-->
|
|
4
4
|
|
|
5
|
+
## 2.97.0
|
|
6
|
+
* bugfix: REST-JSON serialization: Automatically add a content-type header of application/json to requests with a JSON body
|
|
7
|
+
* feature: CodeDeploy: Adds support for specifying Application Load Balancers in deployment groups, for both in-place and blue/green deployments.
|
|
8
|
+
* feature: CognitoIdentityServiceProvider: We have added support for features for Amazon Cognito User Pools that enable application developers to easily add and customize a sign-up and sign-in user experience, use OAuth 2.0, and integrate with Facebook, Google, Login with Amazon, and SAML-based identity providers.
|
|
9
|
+
* feature: EC2: Provides customers an opportunity to recover an EIP that was released
|
|
10
|
+
|
|
11
|
+
## 2.96.0
|
|
12
|
+
* feature: CloudDirectory: Enable BatchDetachPolicy
|
|
13
|
+
* feature: CodeBuild: Supporting Bitbucket as source type in AWS CodeBuild.
|
|
14
|
+
|
|
15
|
+
## 2.95.0
|
|
16
|
+
* bugfix: credentials: add typescript definition for resolvePromise()
|
|
17
|
+
* bugfix: typings: add readablestream type to clients that support streaming
|
|
18
|
+
* feature: ElasticBeanstalk: Add support for paginating the result of DescribeEnvironments Include the ARN of described environments in DescribeEnvironments output
|
|
19
|
+
|
|
20
|
+
## 2.94.0
|
|
21
|
+
* feature: CodeDeploy: AWS CodeDeploy now supports the use of multiple tag groups in a single deployment group (an intersection of tags) to identify the instances for a deployment. When you create or update a deployment group, use the new ec2TagSet and onPremisesTagSet structures to specify up to three groups of tags. Only instances that are identified by at least one tag in each of the tag groups are included in the deployment group.
|
|
22
|
+
* feature: ConfigService: Added new API, GetDiscoveredResourceCounts, which returns the resource types, the number of each resource type, and the total number of resources that AWS Config is recording in the given region for your AWS account.
|
|
23
|
+
* feature: EC2: Ec2 SpotInstanceRequestFulfilled waiter update
|
|
24
|
+
* feature: ELBv2: Add TargetInService and TargetDeregistered waiters
|
|
25
|
+
* feature: Pinpoint: This release of the Pinpoint SDK enables App management - create, delete, update operations, Raw Content delivery for APNs and GCM campaign messages and From Address override.
|
|
26
|
+
* feature: SES: This update adds information about publishing email open and click events. This update also adds information about publishing email events to Amazon Simple Notification Service (Amazon SNS).
|
|
27
|
+
|
|
5
28
|
## 2.93.0
|
|
6
29
|
* feature: DynamoDB: Add a `wrapNumbers` option to the Document Client to direct the client not to convert number attributes to JavaScript numbers.
|
|
7
30
|
* feature: Inspector: Inspector's StopAssessmentRun API has been updated with a new input option - stopAction. This request parameter can be set to either START_EVALUATION or SKIP_EVALUATION. START_EVALUATION (the default value, and the previous behavior) stops the AWS agent data collection and begins the results evaluation for findings generation based on the data collected so far. SKIP_EVALUATION cancels the assessment run immediately, after which no findings are generated.
|
package/README.md
CHANGED
|
@@ -24,7 +24,7 @@ to work with the new major version.
|
|
|
24
24
|
To use the SDK in the browser, simply add the following script tag to your
|
|
25
25
|
HTML pages:
|
|
26
26
|
|
|
27
|
-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.
|
|
27
|
+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.97.0.min.js"></script>
|
|
28
28
|
|
|
29
29
|
You can also build a custom browser SDK with your specified set of AWS services.
|
|
30
30
|
This can allow you to reduce the SDK's size, specify different API versions of
|
|
@@ -699,6 +699,21 @@
|
|
|
699
699
|
}
|
|
700
700
|
}
|
|
701
701
|
},
|
|
702
|
+
"DetachPolicy": {
|
|
703
|
+
"type": "structure",
|
|
704
|
+
"required": [
|
|
705
|
+
"PolicyReference",
|
|
706
|
+
"ObjectReference"
|
|
707
|
+
],
|
|
708
|
+
"members": {
|
|
709
|
+
"PolicyReference": {
|
|
710
|
+
"shape": "Sf"
|
|
711
|
+
},
|
|
712
|
+
"ObjectReference": {
|
|
713
|
+
"shape": "Sf"
|
|
714
|
+
}
|
|
715
|
+
}
|
|
716
|
+
},
|
|
702
717
|
"CreateIndex": {
|
|
703
718
|
"type": "structure",
|
|
704
719
|
"required": [
|
|
@@ -707,7 +722,7 @@
|
|
|
707
722
|
],
|
|
708
723
|
"members": {
|
|
709
724
|
"OrderedIndexedAttributeList": {
|
|
710
|
-
"shape": "
|
|
725
|
+
"shape": "S30"
|
|
711
726
|
},
|
|
712
727
|
"IsUnique": {
|
|
713
728
|
"type": "boolean"
|
|
@@ -836,6 +851,10 @@
|
|
|
836
851
|
"type": "structure",
|
|
837
852
|
"members": {}
|
|
838
853
|
},
|
|
854
|
+
"DetachPolicy": {
|
|
855
|
+
"type": "structure",
|
|
856
|
+
"members": {}
|
|
857
|
+
},
|
|
839
858
|
"CreateIndex": {
|
|
840
859
|
"type": "structure",
|
|
841
860
|
"members": {
|
|
@@ -928,7 +947,7 @@
|
|
|
928
947
|
},
|
|
929
948
|
"Name": {},
|
|
930
949
|
"Attributes": {
|
|
931
|
-
"shape": "
|
|
950
|
+
"shape": "S3s"
|
|
932
951
|
},
|
|
933
952
|
"ObjectType": {}
|
|
934
953
|
}
|
|
@@ -957,7 +976,7 @@
|
|
|
957
976
|
"locationName": "x-amz-data-partition"
|
|
958
977
|
},
|
|
959
978
|
"OrderedIndexedAttributeList": {
|
|
960
|
-
"shape": "
|
|
979
|
+
"shape": "S30"
|
|
961
980
|
},
|
|
962
981
|
"IsUnique": {
|
|
963
982
|
"type": "boolean"
|
|
@@ -1060,10 +1079,10 @@
|
|
|
1060
1079
|
"members": {
|
|
1061
1080
|
"Name": {},
|
|
1062
1081
|
"Attributes": {
|
|
1063
|
-
"shape": "
|
|
1082
|
+
"shape": "S4g"
|
|
1064
1083
|
},
|
|
1065
1084
|
"IdentityAttributeOrder": {
|
|
1066
|
-
"shape": "
|
|
1085
|
+
"shape": "S4i"
|
|
1067
1086
|
}
|
|
1068
1087
|
}
|
|
1069
1088
|
}
|
|
@@ -1402,7 +1421,7 @@
|
|
|
1402
1421
|
],
|
|
1403
1422
|
"members": {
|
|
1404
1423
|
"Directory": {
|
|
1405
|
-
"shape": "
|
|
1424
|
+
"shape": "S57"
|
|
1406
1425
|
}
|
|
1407
1426
|
}
|
|
1408
1427
|
}
|
|
@@ -1522,7 +1541,7 @@
|
|
|
1522
1541
|
"type": "structure",
|
|
1523
1542
|
"members": {
|
|
1524
1543
|
"IdentityAttributeOrder": {
|
|
1525
|
-
"shape": "
|
|
1544
|
+
"shape": "S4i"
|
|
1526
1545
|
}
|
|
1527
1546
|
}
|
|
1528
1547
|
}
|
|
@@ -1549,7 +1568,7 @@
|
|
|
1549
1568
|
"type": "structure",
|
|
1550
1569
|
"members": {
|
|
1551
1570
|
"SchemaArns": {
|
|
1552
|
-
"shape": "
|
|
1571
|
+
"shape": "S5m"
|
|
1553
1572
|
},
|
|
1554
1573
|
"NextToken": {}
|
|
1555
1574
|
}
|
|
@@ -1612,7 +1631,7 @@
|
|
|
1612
1631
|
"type": "structure",
|
|
1613
1632
|
"members": {
|
|
1614
1633
|
"SchemaArns": {
|
|
1615
|
-
"shape": "
|
|
1634
|
+
"shape": "S5m"
|
|
1616
1635
|
},
|
|
1617
1636
|
"NextToken": {}
|
|
1618
1637
|
}
|
|
@@ -1642,7 +1661,7 @@
|
|
|
1642
1661
|
"Directories": {
|
|
1643
1662
|
"type": "list",
|
|
1644
1663
|
"member": {
|
|
1645
|
-
"shape": "
|
|
1664
|
+
"shape": "S57"
|
|
1646
1665
|
}
|
|
1647
1666
|
},
|
|
1648
1667
|
"NextToken": {}
|
|
@@ -1676,7 +1695,7 @@
|
|
|
1676
1695
|
"type": "structure",
|
|
1677
1696
|
"members": {
|
|
1678
1697
|
"Attributes": {
|
|
1679
|
-
"shape": "
|
|
1698
|
+
"shape": "S3s"
|
|
1680
1699
|
},
|
|
1681
1700
|
"NextToken": {}
|
|
1682
1701
|
}
|
|
@@ -2093,7 +2112,7 @@
|
|
|
2093
2112
|
"type": "structure",
|
|
2094
2113
|
"members": {
|
|
2095
2114
|
"SchemaArns": {
|
|
2096
|
-
"shape": "
|
|
2115
|
+
"shape": "S5m"
|
|
2097
2116
|
},
|
|
2098
2117
|
"NextToken": {}
|
|
2099
2118
|
}
|
|
@@ -2121,7 +2140,7 @@
|
|
|
2121
2140
|
"type": "structure",
|
|
2122
2141
|
"members": {
|
|
2123
2142
|
"Tags": {
|
|
2124
|
-
"shape": "
|
|
2143
|
+
"shape": "S6n"
|
|
2125
2144
|
},
|
|
2126
2145
|
"NextToken": {}
|
|
2127
2146
|
}
|
|
@@ -2154,7 +2173,7 @@
|
|
|
2154
2173
|
"type": "structure",
|
|
2155
2174
|
"members": {
|
|
2156
2175
|
"Attributes": {
|
|
2157
|
-
"shape": "
|
|
2176
|
+
"shape": "S4g"
|
|
2158
2177
|
},
|
|
2159
2178
|
"NextToken": {}
|
|
2160
2179
|
}
|
|
@@ -2328,7 +2347,7 @@
|
|
|
2328
2347
|
"members": {
|
|
2329
2348
|
"ResourceArn": {},
|
|
2330
2349
|
"Tags": {
|
|
2331
|
-
"shape": "
|
|
2350
|
+
"shape": "S6n"
|
|
2332
2351
|
}
|
|
2333
2352
|
}
|
|
2334
2353
|
},
|
|
@@ -2386,7 +2405,7 @@
|
|
|
2386
2405
|
"type": "structure",
|
|
2387
2406
|
"members": {
|
|
2388
2407
|
"Attribute": {
|
|
2389
|
-
"shape": "
|
|
2408
|
+
"shape": "S3t"
|
|
2390
2409
|
},
|
|
2391
2410
|
"Action": {}
|
|
2392
2411
|
}
|
|
@@ -2490,14 +2509,14 @@
|
|
|
2490
2509
|
],
|
|
2491
2510
|
"members": {
|
|
2492
2511
|
"Attribute": {
|
|
2493
|
-
"shape": "
|
|
2512
|
+
"shape": "S4h"
|
|
2494
2513
|
},
|
|
2495
2514
|
"Action": {}
|
|
2496
2515
|
}
|
|
2497
2516
|
}
|
|
2498
2517
|
},
|
|
2499
2518
|
"IdentityAttributeOrder": {
|
|
2500
|
-
"shape": "
|
|
2519
|
+
"shape": "S4i"
|
|
2501
2520
|
}
|
|
2502
2521
|
}
|
|
2503
2522
|
},
|
|
@@ -2749,19 +2768,19 @@
|
|
|
2749
2768
|
}
|
|
2750
2769
|
}
|
|
2751
2770
|
},
|
|
2752
|
-
"
|
|
2771
|
+
"S30": {
|
|
2753
2772
|
"type": "list",
|
|
2754
2773
|
"member": {
|
|
2755
2774
|
"shape": "S7"
|
|
2756
2775
|
}
|
|
2757
2776
|
},
|
|
2758
|
-
"
|
|
2777
|
+
"S3s": {
|
|
2759
2778
|
"type": "list",
|
|
2760
2779
|
"member": {
|
|
2761
|
-
"shape": "
|
|
2780
|
+
"shape": "S3t"
|
|
2762
2781
|
}
|
|
2763
2782
|
},
|
|
2764
|
-
"
|
|
2783
|
+
"S3t": {
|
|
2765
2784
|
"type": "structure",
|
|
2766
2785
|
"required": [
|
|
2767
2786
|
"Name"
|
|
@@ -2782,7 +2801,7 @@
|
|
|
2782
2801
|
"type": "boolean"
|
|
2783
2802
|
},
|
|
2784
2803
|
"Rules": {
|
|
2785
|
-
"shape": "
|
|
2804
|
+
"shape": "S3w"
|
|
2786
2805
|
}
|
|
2787
2806
|
}
|
|
2788
2807
|
},
|
|
@@ -2800,7 +2819,7 @@
|
|
|
2800
2819
|
"RequiredBehavior": {}
|
|
2801
2820
|
}
|
|
2802
2821
|
},
|
|
2803
|
-
"
|
|
2822
|
+
"S3w": {
|
|
2804
2823
|
"type": "map",
|
|
2805
2824
|
"key": {},
|
|
2806
2825
|
"value": {
|
|
@@ -2815,13 +2834,13 @@
|
|
|
2815
2834
|
}
|
|
2816
2835
|
}
|
|
2817
2836
|
},
|
|
2818
|
-
"
|
|
2837
|
+
"S4g": {
|
|
2819
2838
|
"type": "list",
|
|
2820
2839
|
"member": {
|
|
2821
|
-
"shape": "
|
|
2840
|
+
"shape": "S4h"
|
|
2822
2841
|
}
|
|
2823
2842
|
},
|
|
2824
|
-
"
|
|
2843
|
+
"S4h": {
|
|
2825
2844
|
"type": "structure",
|
|
2826
2845
|
"required": [
|
|
2827
2846
|
"Name",
|
|
@@ -2838,16 +2857,16 @@
|
|
|
2838
2857
|
"type": "boolean"
|
|
2839
2858
|
},
|
|
2840
2859
|
"Rules": {
|
|
2841
|
-
"shape": "
|
|
2860
|
+
"shape": "S3w"
|
|
2842
2861
|
},
|
|
2843
2862
|
"RequiredBehavior": {}
|
|
2844
2863
|
}
|
|
2845
2864
|
},
|
|
2846
|
-
"
|
|
2865
|
+
"S4i": {
|
|
2847
2866
|
"type": "list",
|
|
2848
2867
|
"member": {}
|
|
2849
2868
|
},
|
|
2850
|
-
"
|
|
2869
|
+
"S57": {
|
|
2851
2870
|
"type": "structure",
|
|
2852
2871
|
"members": {
|
|
2853
2872
|
"Name": {},
|
|
@@ -2858,11 +2877,11 @@
|
|
|
2858
2877
|
}
|
|
2859
2878
|
}
|
|
2860
2879
|
},
|
|
2861
|
-
"
|
|
2880
|
+
"S5m": {
|
|
2862
2881
|
"type": "list",
|
|
2863
2882
|
"member": {}
|
|
2864
2883
|
},
|
|
2865
|
-
"
|
|
2884
|
+
"S6n": {
|
|
2866
2885
|
"type": "list",
|
|
2867
2886
|
"member": {
|
|
2868
2887
|
"type": "structure",
|