aws-sdk 2.1660.0 → 2.1662.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/README.md +1 -1
- package/apis/acm-pca-2017-08-22.waiters2.json +74 -62
- package/apis/appsync-2017-07-25.min.json +4 -1
- package/apis/appsync-2017-07-25.paginators.json +60 -0
- package/apis/cleanrooms-2022-02-17.min.json +958 -119
- package/apis/cleanrooms-2022-02-17.paginators.json +18 -0
- package/apis/cleanroomsml-2023-09-06.min.json +305 -287
- package/apis/cleanroomsml-2023-09-06.waiters2.json +5 -0
- package/apis/connect-2017-08-08.min.json +371 -171
- package/apis/connect-2017-08-08.paginators.json +18 -0
- package/apis/connect-contact-lens-2020-08-21.min.json +18 -1
- package/apis/datazone-2018-05-10.min.json +0 -49
- package/apis/ec2-2016-11-15.min.json +1161 -1028
- package/apis/entityresolution-2018-05-10.min.json +162 -94
- package/apis/firehose-2015-08-04.min.json +226 -81
- package/apis/ivschat-2020-07-14.min.json +144 -139
- package/apis/ivschat-2020-07-14.waiters2.json +5 -0
- package/apis/medialive-2017-10-14.min.json +327 -230
- package/apis/taxsettings-2018-05-10.min.json +4 -1
- package/apis/timestream-query-2018-11-01.min.json +4 -1
- package/apis/workspaces-thin-client-2023-08-22.min.json +3 -0
- package/clients/acmpca.d.ts +12 -12
- package/clients/cleanrooms.d.ts +857 -59
- package/clients/cleanroomsml.d.ts +284 -257
- package/clients/cleanroomsml.js +1 -0
- package/clients/connect.d.ts +223 -6
- package/clients/connectcontactlens.d.ts +24 -3
- package/clients/datazone.d.ts +0 -64
- package/clients/ec2.d.ts +172 -17
- package/clients/entityresolution.d.ts +105 -22
- package/clients/firehose.d.ts +141 -0
- package/clients/ivschat.d.ts +166 -166
- package/clients/ivschat.js +1 -0
- package/clients/medialive.d.ts +100 -4
- package/clients/rds.d.ts +9 -9
- package/clients/sagemaker.d.ts +2 -2
- package/clients/secretsmanager.d.ts +7 -7
- package/clients/timestreamquery.d.ts +1 -1
- package/clients/workspacesthinclient.d.ts +1 -1
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +588 -574
- package/dist/aws-sdk.js +1779 -1283
- package/dist/aws-sdk.min.js +84 -84
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
@@ -64,7 +64,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
|
|
64
64
|
To use the SDK in the browser, simply add the following script tag to your
|
65
65
|
HTML pages:
|
66
66
|
|
67
|
-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.
|
67
|
+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1662.0.min.js"></script>
|
68
68
|
|
69
69
|
You can also build a custom browser SDK with your specified set of AWS services.
|
70
70
|
This can allow you to reduce the SDK's size, specify different API versions of
|
@@ -1,64 +1,76 @@
|
|
1
1
|
{
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
"
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
2
|
+
"version": 2,
|
3
|
+
"waiters": {
|
4
|
+
"CertificateAuthorityCSRCreated": {
|
5
|
+
"description": "Wait until a Certificate Authority CSR is created",
|
6
|
+
"operation": "GetCertificateAuthorityCsr",
|
7
|
+
"delay": 3,
|
8
|
+
"maxAttempts": 60,
|
9
|
+
"acceptors": [
|
10
|
+
{
|
11
|
+
"state": "success",
|
12
|
+
"matcher": "status",
|
13
|
+
"expected": 200
|
14
|
+
},
|
15
|
+
{
|
16
|
+
"state": "retry",
|
17
|
+
"matcher": "error",
|
18
|
+
"expected": "RequestInProgressException"
|
19
|
+
},
|
20
|
+
{
|
21
|
+
"state": "failure",
|
22
|
+
"matcher": "error",
|
23
|
+
"expected": "AccessDeniedException"
|
24
|
+
}
|
25
|
+
]
|
26
|
+
},
|
27
|
+
"CertificateIssued": {
|
28
|
+
"description": "Wait until a certificate is issued",
|
29
|
+
"operation": "GetCertificate",
|
30
|
+
"delay": 1,
|
31
|
+
"maxAttempts": 60,
|
32
|
+
"acceptors": [
|
33
|
+
{
|
34
|
+
"state": "success",
|
35
|
+
"matcher": "status",
|
36
|
+
"expected": 200
|
37
|
+
},
|
38
|
+
{
|
39
|
+
"state": "retry",
|
40
|
+
"matcher": "error",
|
41
|
+
"expected": "RequestInProgressException"
|
42
|
+
},
|
43
|
+
{
|
44
|
+
"state": "failure",
|
45
|
+
"matcher": "error",
|
46
|
+
"expected": "AccessDeniedException"
|
47
|
+
}
|
48
|
+
]
|
49
|
+
},
|
50
|
+
"AuditReportCreated": {
|
51
|
+
"description": "Wait until a Audit Report is created",
|
52
|
+
"operation": "DescribeCertificateAuthorityAuditReport",
|
53
|
+
"delay": 3,
|
54
|
+
"maxAttempts": 60,
|
55
|
+
"acceptors": [
|
56
|
+
{
|
57
|
+
"state": "success",
|
58
|
+
"matcher": "path",
|
59
|
+
"argument": "AuditReportStatus",
|
60
|
+
"expected": "SUCCESS"
|
61
|
+
},
|
62
|
+
{
|
63
|
+
"state": "failure",
|
64
|
+
"matcher": "path",
|
65
|
+
"argument": "AuditReportStatus",
|
66
|
+
"expected": "FAILED"
|
67
|
+
},
|
68
|
+
{
|
69
|
+
"state": "failure",
|
70
|
+
"matcher": "error",
|
71
|
+
"expected": "AccessDeniedException"
|
72
|
+
}
|
73
|
+
]
|
74
|
+
}
|
62
75
|
}
|
63
|
-
|
64
|
-
}
|
76
|
+
}
|
@@ -1,4 +1,64 @@
|
|
1
1
|
{
|
2
2
|
"pagination": {
|
3
|
+
"ListApiKeys": {
|
4
|
+
"input_token": "nextToken",
|
5
|
+
"output_token": "nextToken",
|
6
|
+
"limit_key": "maxResults",
|
7
|
+
"result_key": "apiKeys"
|
8
|
+
},
|
9
|
+
"ListDataSources": {
|
10
|
+
"input_token": "nextToken",
|
11
|
+
"output_token": "nextToken",
|
12
|
+
"limit_key": "maxResults",
|
13
|
+
"result_key": "dataSources"
|
14
|
+
},
|
15
|
+
"ListDomainNames": {
|
16
|
+
"input_token": "nextToken",
|
17
|
+
"output_token": "nextToken",
|
18
|
+
"limit_key": "maxResults",
|
19
|
+
"result_key": "domainNameConfigs"
|
20
|
+
},
|
21
|
+
"ListFunctions": {
|
22
|
+
"input_token": "nextToken",
|
23
|
+
"output_token": "nextToken",
|
24
|
+
"limit_key": "maxResults",
|
25
|
+
"result_key": "functions"
|
26
|
+
},
|
27
|
+
"ListGraphqlApis": {
|
28
|
+
"input_token": "nextToken",
|
29
|
+
"output_token": "nextToken",
|
30
|
+
"limit_key": "maxResults",
|
31
|
+
"result_key": "graphqlApis"
|
32
|
+
},
|
33
|
+
"ListResolvers": {
|
34
|
+
"input_token": "nextToken",
|
35
|
+
"output_token": "nextToken",
|
36
|
+
"limit_key": "maxResults",
|
37
|
+
"result_key": "resolvers"
|
38
|
+
},
|
39
|
+
"ListResolversByFunction": {
|
40
|
+
"input_token": "nextToken",
|
41
|
+
"output_token": "nextToken",
|
42
|
+
"limit_key": "maxResults",
|
43
|
+
"result_key": "resolvers"
|
44
|
+
},
|
45
|
+
"ListSourceApiAssociations": {
|
46
|
+
"input_token": "nextToken",
|
47
|
+
"output_token": "nextToken",
|
48
|
+
"limit_key": "maxResults",
|
49
|
+
"result_key": "sourceApiAssociationSummaries"
|
50
|
+
},
|
51
|
+
"ListTypes": {
|
52
|
+
"input_token": "nextToken",
|
53
|
+
"output_token": "nextToken",
|
54
|
+
"limit_key": "maxResults",
|
55
|
+
"result_key": "types"
|
56
|
+
},
|
57
|
+
"ListTypesByAssociation": {
|
58
|
+
"input_token": "nextToken",
|
59
|
+
"output_token": "nextToken",
|
60
|
+
"limit_key": "maxResults",
|
61
|
+
"result_key": "types"
|
62
|
+
}
|
3
63
|
}
|
4
64
|
}
|