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
@@ -12,7 +12,10 @@
|
|
12
12
|
"serviceId": "TaxSettings",
|
13
13
|
"signatureVersion": "v4",
|
14
14
|
"signingName": "tax",
|
15
|
-
"uid": "taxsettings-2018-05-10"
|
15
|
+
"uid": "taxsettings-2018-05-10",
|
16
|
+
"auth": [
|
17
|
+
"aws.auth#sigv4"
|
18
|
+
]
|
16
19
|
},
|
17
20
|
"operations": {
|
18
21
|
"BatchDeleteTaxRegistration": {
|
@@ -14,7 +14,10 @@
|
|
14
14
|
"signatureVersion": "v4",
|
15
15
|
"signingName": "timestream",
|
16
16
|
"targetPrefix": "Timestream_20181101",
|
17
|
-
"uid": "timestream-query-2018-11-01"
|
17
|
+
"uid": "timestream-query-2018-11-01",
|
18
|
+
"auth": [
|
19
|
+
"aws.auth#sigv4"
|
20
|
+
]
|
18
21
|
},
|
19
22
|
"operations": {
|
20
23
|
"CancelQuery": {
|
package/clients/acmpca.d.ts
CHANGED
@@ -197,29 +197,29 @@ declare class ACMPCA extends Service {
|
|
197
197
|
*/
|
198
198
|
updateCertificateAuthority(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
199
199
|
/**
|
200
|
-
* Waits for the
|
201
|
-
*/
|
202
|
-
waitFor(state: "auditReportCreated", params: ACMPCA.Types.DescribeCertificateAuthorityAuditReportRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: ACMPCA.Types.DescribeCertificateAuthorityAuditReportResponse) => void): Request<ACMPCA.Types.DescribeCertificateAuthorityAuditReportResponse, AWSError>;
|
203
|
-
/**
|
204
|
-
* Waits for the auditReportCreated state by periodically calling the underlying ACMPCA.describeCertificateAuthorityAuditReportoperation every 3 seconds (at most 40 times). Wait until a Audit Report is created
|
205
|
-
*/
|
206
|
-
waitFor(state: "auditReportCreated", callback?: (err: AWSError, data: ACMPCA.Types.DescribeCertificateAuthorityAuditReportResponse) => void): Request<ACMPCA.Types.DescribeCertificateAuthorityAuditReportResponse, AWSError>;
|
207
|
-
/**
|
208
|
-
* Waits for the certificateAuthorityCSRCreated state by periodically calling the underlying ACMPCA.getCertificateAuthorityCsroperation every 3 seconds (at most 40 times). Wait until a Certificate Authority CSR is created
|
200
|
+
* Waits for the certificateAuthorityCSRCreated state by periodically calling the underlying ACMPCA.getCertificateAuthorityCsroperation every 3 seconds (at most 60 times). Wait until a Certificate Authority CSR is created
|
209
201
|
*/
|
210
202
|
waitFor(state: "certificateAuthorityCSRCreated", params: ACMPCA.Types.GetCertificateAuthorityCsrRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: ACMPCA.Types.GetCertificateAuthorityCsrResponse) => void): Request<ACMPCA.Types.GetCertificateAuthorityCsrResponse, AWSError>;
|
211
203
|
/**
|
212
|
-
* Waits for the certificateAuthorityCSRCreated state by periodically calling the underlying ACMPCA.getCertificateAuthorityCsroperation every 3 seconds (at most
|
204
|
+
* Waits for the certificateAuthorityCSRCreated state by periodically calling the underlying ACMPCA.getCertificateAuthorityCsroperation every 3 seconds (at most 60 times). Wait until a Certificate Authority CSR is created
|
213
205
|
*/
|
214
206
|
waitFor(state: "certificateAuthorityCSRCreated", callback?: (err: AWSError, data: ACMPCA.Types.GetCertificateAuthorityCsrResponse) => void): Request<ACMPCA.Types.GetCertificateAuthorityCsrResponse, AWSError>;
|
215
207
|
/**
|
216
|
-
* Waits for the certificateIssued state by periodically calling the underlying ACMPCA.getCertificateoperation every 1 seconds (at most
|
208
|
+
* Waits for the certificateIssued state by periodically calling the underlying ACMPCA.getCertificateoperation every 1 seconds (at most 60 times). Wait until a certificate is issued
|
217
209
|
*/
|
218
210
|
waitFor(state: "certificateIssued", params: ACMPCA.Types.GetCertificateRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: ACMPCA.Types.GetCertificateResponse) => void): Request<ACMPCA.Types.GetCertificateResponse, AWSError>;
|
219
211
|
/**
|
220
|
-
* Waits for the certificateIssued state by periodically calling the underlying ACMPCA.getCertificateoperation every 1 seconds (at most
|
212
|
+
* Waits for the certificateIssued state by periodically calling the underlying ACMPCA.getCertificateoperation every 1 seconds (at most 60 times). Wait until a certificate is issued
|
221
213
|
*/
|
222
214
|
waitFor(state: "certificateIssued", callback?: (err: AWSError, data: ACMPCA.Types.GetCertificateResponse) => void): Request<ACMPCA.Types.GetCertificateResponse, AWSError>;
|
215
|
+
/**
|
216
|
+
* Waits for the auditReportCreated state by periodically calling the underlying ACMPCA.describeCertificateAuthorityAuditReportoperation every 3 seconds (at most 60 times). Wait until a Audit Report is created
|
217
|
+
*/
|
218
|
+
waitFor(state: "auditReportCreated", params: ACMPCA.Types.DescribeCertificateAuthorityAuditReportRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: ACMPCA.Types.DescribeCertificateAuthorityAuditReportResponse) => void): Request<ACMPCA.Types.DescribeCertificateAuthorityAuditReportResponse, AWSError>;
|
219
|
+
/**
|
220
|
+
* Waits for the auditReportCreated state by periodically calling the underlying ACMPCA.describeCertificateAuthorityAuditReportoperation every 3 seconds (at most 60 times). Wait until a Audit Report is created
|
221
|
+
*/
|
222
|
+
waitFor(state: "auditReportCreated", callback?: (err: AWSError, data: ACMPCA.Types.DescribeCertificateAuthorityAuditReportResponse) => void): Request<ACMPCA.Types.DescribeCertificateAuthorityAuditReportResponse, AWSError>;
|
223
223
|
}
|
224
224
|
declare namespace ACMPCA {
|
225
225
|
export type ASN1PrintableString64 = string;
|