aws-sdk 2.1421.0 → 2.1423.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.
Files changed (56) hide show
  1. package/CHANGELOG.md +22 -1
  2. package/README.md +1 -1
  3. package/apis/billingconductor-2021-07-30.min.json +96 -68
  4. package/apis/customer-profiles-2020-08-15.min.json +253 -57
  5. package/apis/datasync-2018-11-09.min.json +198 -102
  6. package/apis/ec2-2016-11-15.min.json +300 -278
  7. package/apis/emr-serverless-2021-07-13.min.json +25 -3
  8. package/apis/entityresolution-2018-05-10.examples.json +5 -0
  9. package/apis/entityresolution-2018-05-10.min.json +823 -0
  10. package/apis/entityresolution-2018-05-10.paginators.json +22 -0
  11. package/apis/glue-2017-03-31.min.json +390 -318
  12. package/apis/managedblockchain-query-2023-05-04.examples.json +5 -0
  13. package/apis/managedblockchain-query-2023-05-04.min.json +438 -0
  14. package/apis/managedblockchain-query-2023-05-04.paginators.json +22 -0
  15. package/apis/managedblockchain-query-2023-05-04.waiters2.json +5 -0
  16. package/apis/metadata.json +7 -0
  17. package/apis/rds-2014-10-31.min.json +2 -1
  18. package/apis/sagemaker-2017-07-24.min.json +4 -0
  19. package/apis/securityhub-2018-10-26.min.json +145 -108
  20. package/apis/sts-2011-06-15.min.json +21 -11
  21. package/apis/transfer-2018-11-05.min.json +117 -73
  22. package/apis/wisdom-2020-10-19.min.json +77 -59
  23. package/clients/all.d.ts +2 -0
  24. package/clients/all.js +3 -1
  25. package/clients/billingconductor.d.ts +102 -69
  26. package/clients/cloudcontrol.d.ts +1 -1
  27. package/clients/customerprofiles.d.ts +204 -4
  28. package/clients/datasync.d.ts +171 -27
  29. package/clients/dynamodb.d.ts +4 -4
  30. package/clients/ec2.d.ts +26 -0
  31. package/clients/emrserverless.d.ts +33 -2
  32. package/clients/entityresolution.d.ts +815 -0
  33. package/clients/entityresolution.js +18 -0
  34. package/clients/glue.d.ts +123 -1
  35. package/clients/healthlake.d.ts +70 -70
  36. package/clients/lambda.d.ts +1 -1
  37. package/clients/managedblockchainquery.d.ts +494 -0
  38. package/clients/managedblockchainquery.js +19 -0
  39. package/clients/mediaconvert.d.ts +421 -414
  40. package/clients/opensearchserverless.d.ts +1 -1
  41. package/clients/polly.d.ts +2 -2
  42. package/clients/rds.d.ts +14 -10
  43. package/clients/route53.d.ts +13 -13
  44. package/clients/sagemaker.d.ts +4 -4
  45. package/clients/securityhub.d.ts +69 -10
  46. package/clients/sts.d.ts +17 -1
  47. package/clients/transfer.d.ts +85 -19
  48. package/clients/wisdom.d.ts +24 -0
  49. package/dist/aws-sdk-core-react-native.js +2 -2
  50. package/dist/aws-sdk-react-native.js +97 -16
  51. package/dist/aws-sdk.js +333 -293
  52. package/dist/aws-sdk.min.js +67 -67
  53. package/lib/config_service_placeholders.d.ts +4 -0
  54. package/lib/core.js +1 -1
  55. package/lib/dynamodb/document_client.d.ts +2 -2
  56. package/package.json +1 -1
@@ -0,0 +1,494 @@
1
+ import {Request} from '../lib/request';
2
+ import {Response} from '../lib/response';
3
+ import {AWSError} from '../lib/error';
4
+ import {Service} from '../lib/service';
5
+ import {ServiceConfigurationOptions} from '../lib/service';
6
+ import {ConfigBase as Config} from '../lib/config-base';
7
+ interface Blob {}
8
+ declare class ManagedBlockchainQuery extends Service {
9
+ /**
10
+ * Constructs a service object. This object has one method for each API operation.
11
+ */
12
+ constructor(options?: ManagedBlockchainQuery.Types.ClientConfiguration)
13
+ config: Config & ManagedBlockchainQuery.Types.ClientConfiguration;
14
+ /**
15
+ * Gets the token balance for a batch of tokens by using the GetTokenBalance action for every token in the request. Only the native tokens BTC,ETH, and the ERC-20, ERC-721, and ERC 1155 token standards are supported.
16
+ */
17
+ batchGetTokenBalance(params: ManagedBlockchainQuery.Types.BatchGetTokenBalanceInput, callback?: (err: AWSError, data: ManagedBlockchainQuery.Types.BatchGetTokenBalanceOutput) => void): Request<ManagedBlockchainQuery.Types.BatchGetTokenBalanceOutput, AWSError>;
18
+ /**
19
+ * Gets the token balance for a batch of tokens by using the GetTokenBalance action for every token in the request. Only the native tokens BTC,ETH, and the ERC-20, ERC-721, and ERC 1155 token standards are supported.
20
+ */
21
+ batchGetTokenBalance(callback?: (err: AWSError, data: ManagedBlockchainQuery.Types.BatchGetTokenBalanceOutput) => void): Request<ManagedBlockchainQuery.Types.BatchGetTokenBalanceOutput, AWSError>;
22
+ /**
23
+ * Gets the balance of a specific token, including native tokens, for a given address (wallet or contract) on the blockchain. Only the native tokens BTC,ETH, and the ERC-20, ERC-721, and ERC 1155 token standards are supported.
24
+ */
25
+ getTokenBalance(params: ManagedBlockchainQuery.Types.GetTokenBalanceInput, callback?: (err: AWSError, data: ManagedBlockchainQuery.Types.GetTokenBalanceOutput) => void): Request<ManagedBlockchainQuery.Types.GetTokenBalanceOutput, AWSError>;
26
+ /**
27
+ * Gets the balance of a specific token, including native tokens, for a given address (wallet or contract) on the blockchain. Only the native tokens BTC,ETH, and the ERC-20, ERC-721, and ERC 1155 token standards are supported.
28
+ */
29
+ getTokenBalance(callback?: (err: AWSError, data: ManagedBlockchainQuery.Types.GetTokenBalanceOutput) => void): Request<ManagedBlockchainQuery.Types.GetTokenBalanceOutput, AWSError>;
30
+ /**
31
+ * Get the details of a transaction.
32
+ */
33
+ getTransaction(params: ManagedBlockchainQuery.Types.GetTransactionInput, callback?: (err: AWSError, data: ManagedBlockchainQuery.Types.GetTransactionOutput) => void): Request<ManagedBlockchainQuery.Types.GetTransactionOutput, AWSError>;
34
+ /**
35
+ * Get the details of a transaction.
36
+ */
37
+ getTransaction(callback?: (err: AWSError, data: ManagedBlockchainQuery.Types.GetTransactionOutput) => void): Request<ManagedBlockchainQuery.Types.GetTransactionOutput, AWSError>;
38
+ /**
39
+ * This action returns the following for a given a blockchain network: Lists all token balances owned by an address (either a contact address or a wallet address). Lists all token balances for all tokens created by a contract. Lists all token balances for a given token. You must always specify the network property of the tokenFilter when using this operation.
40
+ */
41
+ listTokenBalances(params: ManagedBlockchainQuery.Types.ListTokenBalancesInput, callback?: (err: AWSError, data: ManagedBlockchainQuery.Types.ListTokenBalancesOutput) => void): Request<ManagedBlockchainQuery.Types.ListTokenBalancesOutput, AWSError>;
42
+ /**
43
+ * This action returns the following for a given a blockchain network: Lists all token balances owned by an address (either a contact address or a wallet address). Lists all token balances for all tokens created by a contract. Lists all token balances for a given token. You must always specify the network property of the tokenFilter when using this operation.
44
+ */
45
+ listTokenBalances(callback?: (err: AWSError, data: ManagedBlockchainQuery.Types.ListTokenBalancesOutput) => void): Request<ManagedBlockchainQuery.Types.ListTokenBalancesOutput, AWSError>;
46
+ /**
47
+ * An array of TransactionEvent objects. Each object contains details about the transaction event.
48
+ */
49
+ listTransactionEvents(params: ManagedBlockchainQuery.Types.ListTransactionEventsInput, callback?: (err: AWSError, data: ManagedBlockchainQuery.Types.ListTransactionEventsOutput) => void): Request<ManagedBlockchainQuery.Types.ListTransactionEventsOutput, AWSError>;
50
+ /**
51
+ * An array of TransactionEvent objects. Each object contains details about the transaction event.
52
+ */
53
+ listTransactionEvents(callback?: (err: AWSError, data: ManagedBlockchainQuery.Types.ListTransactionEventsOutput) => void): Request<ManagedBlockchainQuery.Types.ListTransactionEventsOutput, AWSError>;
54
+ /**
55
+ * Lists all of the transactions on a given wallet address or to a specific contract.
56
+ */
57
+ listTransactions(params: ManagedBlockchainQuery.Types.ListTransactionsInput, callback?: (err: AWSError, data: ManagedBlockchainQuery.Types.ListTransactionsOutput) => void): Request<ManagedBlockchainQuery.Types.ListTransactionsOutput, AWSError>;
58
+ /**
59
+ * Lists all of the transactions on a given wallet address or to a specific contract.
60
+ */
61
+ listTransactions(callback?: (err: AWSError, data: ManagedBlockchainQuery.Types.ListTransactionsOutput) => void): Request<ManagedBlockchainQuery.Types.ListTransactionsOutput, AWSError>;
62
+ }
63
+ declare namespace ManagedBlockchainQuery {
64
+ export interface BatchGetTokenBalanceErrorItem {
65
+ tokenIdentifier?: TokenIdentifier;
66
+ ownerIdentifier?: OwnerIdentifier;
67
+ atBlockchainInstant?: BlockchainInstant;
68
+ /**
69
+ * The error code associated with the error.
70
+ */
71
+ errorCode: String;
72
+ /**
73
+ * The message associated with the error.
74
+ */
75
+ errorMessage: String;
76
+ /**
77
+ * The type of error.
78
+ */
79
+ errorType: ErrorType;
80
+ }
81
+ export type BatchGetTokenBalanceErrors = BatchGetTokenBalanceErrorItem[];
82
+ export interface BatchGetTokenBalanceInput {
83
+ /**
84
+ * An array of GetTokenBalanceInput objects whose balance is being requested.
85
+ */
86
+ getTokenBalanceInputs?: GetTokenBalanceInputList;
87
+ }
88
+ export interface BatchGetTokenBalanceInputItem {
89
+ tokenIdentifier: TokenIdentifier;
90
+ ownerIdentifier: OwnerIdentifier;
91
+ atBlockchainInstant?: BlockchainInstant;
92
+ }
93
+ export interface BatchGetTokenBalanceOutput {
94
+ /**
95
+ * An array of BatchGetTokenBalanceOutputItem objects returned by the response.
96
+ */
97
+ tokenBalances: BatchGetTokenBalanceOutputList;
98
+ /**
99
+ * An array of BatchGetTokenBalanceErrorItem objects returned from the request.
100
+ */
101
+ errors: BatchGetTokenBalanceErrors;
102
+ }
103
+ export interface BatchGetTokenBalanceOutputItem {
104
+ ownerIdentifier?: OwnerIdentifier;
105
+ tokenIdentifier?: TokenIdentifier;
106
+ /**
107
+ * The container for the token balance.
108
+ */
109
+ balance: String;
110
+ atBlockchainInstant: BlockchainInstant;
111
+ lastUpdatedTime?: BlockchainInstant;
112
+ }
113
+ export type BatchGetTokenBalanceOutputList = BatchGetTokenBalanceOutputItem[];
114
+ export type BlockHash = string;
115
+ export interface BlockchainInstant {
116
+ /**
117
+ * The container of the Timestamp of the blockchain instant. This timestamp will only be recorded up to the second.
118
+ */
119
+ time?: Timestamp;
120
+ }
121
+ export type ChainAddress = string;
122
+ export type ErrorType = "VALIDATION_EXCEPTION"|"RESOURCE_NOT_FOUND_EXCEPTION"|string;
123
+ export interface GetTokenBalanceInput {
124
+ /**
125
+ * The container for the identifier for the token, including the unique token ID and its blockchain network.
126
+ */
127
+ tokenIdentifier: TokenIdentifier;
128
+ /**
129
+ * The container for the identifier for the owner.
130
+ */
131
+ ownerIdentifier: OwnerIdentifier;
132
+ /**
133
+ * The time for when the TokenBalance is requested or the current time if a time is not provided in the request. This time will only be recorded up to the second.
134
+ */
135
+ atBlockchainInstant?: BlockchainInstant;
136
+ }
137
+ export type GetTokenBalanceInputList = BatchGetTokenBalanceInputItem[];
138
+ export interface GetTokenBalanceOutput {
139
+ ownerIdentifier?: OwnerIdentifier;
140
+ tokenIdentifier?: TokenIdentifier;
141
+ /**
142
+ * The container for the token balance.
143
+ */
144
+ balance: String;
145
+ atBlockchainInstant: BlockchainInstant;
146
+ lastUpdatedTime?: BlockchainInstant;
147
+ }
148
+ export interface GetTransactionInput {
149
+ /**
150
+ * The hash of the transaction. It is generated whenever a transaction is verified and added to the blockchain.
151
+ */
152
+ transactionHash: QueryTransactionHash;
153
+ /**
154
+ * The blockchain network where the transaction occurred.
155
+ */
156
+ network: QueryNetwork;
157
+ }
158
+ export interface GetTransactionOutput {
159
+ /**
160
+ * Contains the details of the transaction.
161
+ */
162
+ transaction: Transaction;
163
+ }
164
+ export type Integer = number;
165
+ export interface ListTokenBalancesInput {
166
+ /**
167
+ * The contract or wallet address on the blockchain network by which to filter the request. You must specify the address property of the ownerFilter when listing balances of tokens owned by the address.
168
+ */
169
+ ownerFilter?: OwnerFilter;
170
+ /**
171
+ * The contract address or a token identifier on the blockchain network by which to filter the request. You must specify the contractAddress property of this container when listing tokens minted by a contract. You must always specify the network property of this container when using this operation.
172
+ */
173
+ tokenFilter: TokenFilter;
174
+ /**
175
+ * The pagination token that indicates the next set of results to retrieve.
176
+ */
177
+ nextToken?: NextToken;
178
+ /**
179
+ * The maximum number of token balances to return.
180
+ */
181
+ maxResults?: ListTokenBalancesInputMaxResultsInteger;
182
+ }
183
+ export type ListTokenBalancesInputMaxResultsInteger = number;
184
+ export interface ListTokenBalancesOutput {
185
+ /**
186
+ * An array of TokenBalance objects. Each object contains details about the token balance.
187
+ */
188
+ tokenBalances: TokenBalanceList;
189
+ /**
190
+ * The pagination token that indicates the next set of results to retrieve.
191
+ */
192
+ nextToken?: NextToken;
193
+ }
194
+ export interface ListTransactionEventsInput {
195
+ /**
196
+ * The hash of the transaction. It is generated whenever a transaction is verified and added to the blockchain.
197
+ */
198
+ transactionHash: QueryTransactionHash;
199
+ /**
200
+ * The blockchain network where the transaction events occurred.
201
+ */
202
+ network: QueryNetwork;
203
+ /**
204
+ * The pagination token that indicates the next set of results to retrieve.
205
+ */
206
+ nextToken?: NextToken;
207
+ /**
208
+ * The maximum number of transaction events to list. Even if additional results can be retrieved, the request can return less results than maxResults or an empty array of results. To retrieve the next set of results, make another request with the returned nextToken value. The value of nextToken is null when there are no more results to return
209
+ */
210
+ maxResults?: ListTransactionEventsInputMaxResultsInteger;
211
+ }
212
+ export type ListTransactionEventsInputMaxResultsInteger = number;
213
+ export interface ListTransactionEventsOutput {
214
+ /**
215
+ * An array of TransactionEvent objects. Each object contains details about the transaction events.
216
+ */
217
+ events: TransactionEventList;
218
+ /**
219
+ * The pagination token that indicates the next set of results to retrieve.
220
+ */
221
+ nextToken?: NextToken;
222
+ }
223
+ export interface ListTransactionsInput {
224
+ /**
225
+ * The address (either a contract or wallet), whose transactions are being requested.
226
+ */
227
+ address: ChainAddress;
228
+ /**
229
+ * The blockchain network where the transactions occurred.
230
+ */
231
+ network: QueryNetwork;
232
+ fromBlockchainInstant?: BlockchainInstant;
233
+ toBlockchainInstant?: BlockchainInstant;
234
+ /**
235
+ * Sorts items in an ascending order if the first page starts at fromTime. Sorts items in a descending order if the first page starts at toTime.
236
+ */
237
+ sort?: ListTransactionsSort;
238
+ /**
239
+ * The pagination token that indicates the next set of results to retrieve.
240
+ */
241
+ nextToken?: NextToken;
242
+ /**
243
+ * The maximum number of transactions to list. Even if additional results can be retrieved, the request can return less results than maxResults or an empty array of results. To retrieve the next set of results, make another request with the returned nextToken value. The value of nextToken is null when there are no more results to return
244
+ */
245
+ maxResults?: ListTransactionsInputMaxResultsInteger;
246
+ }
247
+ export type ListTransactionsInputMaxResultsInteger = number;
248
+ export interface ListTransactionsOutput {
249
+ /**
250
+ * The array of transactions returned by the request.
251
+ */
252
+ transactions: TransactionOutputList;
253
+ /**
254
+ * The pagination token that indicates the next set of results to retrieve.
255
+ */
256
+ nextToken?: NextToken;
257
+ }
258
+ export interface ListTransactionsSort {
259
+ /**
260
+ * Defaults to the value TRANSACTION_TIMESTAMP.
261
+ */
262
+ sortBy?: ListTransactionsSortBy;
263
+ /**
264
+ * The container for the sort order for ListTransactions. The SortOrder field only accepts the values ASCENDING and DESCENDING. Not providing SortOrder will default to ASCENDING.
265
+ */
266
+ sortOrder?: SortOrder;
267
+ }
268
+ export type ListTransactionsSortBy = "TRANSACTION_TIMESTAMP"|string;
269
+ export type Long = number;
270
+ export type NextToken = string;
271
+ export interface OwnerFilter {
272
+ /**
273
+ * The contract or wallet address.
274
+ */
275
+ address: ChainAddress;
276
+ }
277
+ export interface OwnerIdentifier {
278
+ /**
279
+ * The contract or wallet address for the owner.
280
+ */
281
+ address: ChainAddress;
282
+ }
283
+ export type QueryNetwork = "ETHEREUM_MAINNET"|"BITCOIN_MAINNET"|string;
284
+ export type QueryTokenId = string;
285
+ export type QueryTransactionEventType = "ERC20_TRANSFER"|"ERC20_MINT"|"ERC20_BURN"|"ERC20_DEPOSIT"|"ERC20_WITHDRAWAL"|"ERC721_TRANSFER"|"ERC1155_TRANSFER"|"BITCOIN_VIN"|"BITCOIN_VOUT"|"INTERNAL_ETH_TRANSFER"|"ETH_TRANSFER"|string;
286
+ export type QueryTransactionHash = string;
287
+ export type QueryTransactionStatus = "FINAL"|"FAILED"|string;
288
+ export type SortOrder = "ASCENDING"|"DESCENDING"|string;
289
+ export type String = string;
290
+ export type Timestamp = Date;
291
+ export interface TokenBalance {
292
+ /**
293
+ * The container for the identifier of the owner.
294
+ */
295
+ ownerIdentifier?: OwnerIdentifier;
296
+ /**
297
+ * The identifier for the token, including the unique token ID and its blockchain network.
298
+ */
299
+ tokenIdentifier?: TokenIdentifier;
300
+ /**
301
+ * The container of the token balance.
302
+ */
303
+ balance: String;
304
+ /**
305
+ * The time for when the TokenBalance is requested or the current time if a time is not provided in the request. This time will only be recorded up to the second.
306
+ */
307
+ atBlockchainInstant: BlockchainInstant;
308
+ /**
309
+ * The timestamp of the last transaction at which the balance for the token in the wallet was updated.
310
+ */
311
+ lastUpdatedTime?: BlockchainInstant;
312
+ }
313
+ export type TokenBalanceList = TokenBalance[];
314
+ export interface TokenFilter {
315
+ /**
316
+ * The blockchain network of the token.
317
+ */
318
+ network: QueryNetwork;
319
+ /**
320
+ * This is the address of the contract.
321
+ */
322
+ contractAddress?: ChainAddress;
323
+ /**
324
+ * The unique identifier of the token.
325
+ */
326
+ tokenId?: QueryTokenId;
327
+ }
328
+ export interface TokenIdentifier {
329
+ /**
330
+ * The blockchain network of the token.
331
+ */
332
+ network: QueryNetwork;
333
+ /**
334
+ * This is the token's contract address.
335
+ */
336
+ contractAddress?: ChainAddress;
337
+ /**
338
+ * The unique identifier of the token.
339
+ */
340
+ tokenId?: QueryTokenId;
341
+ }
342
+ export interface Transaction {
343
+ /**
344
+ * The blockchain network where the transaction occured.
345
+ */
346
+ network: QueryNetwork;
347
+ /**
348
+ * The block hash is a unique identifier for a block. It is a fixed-size string that is calculated by using the information in the block. The block hash is used to verify the integrity of the data in the block.
349
+ */
350
+ blockHash?: BlockHash;
351
+ /**
352
+ * The hash of the transaction. It is generated whenever a transaction is verified and added to the blockchain.
353
+ */
354
+ transactionHash: QueryTransactionHash;
355
+ /**
356
+ * The block number in which the transaction is recorded.
357
+ */
358
+ blockNumber?: String;
359
+ /**
360
+ * The Timestamp of the transaction.
361
+ */
362
+ transactionTimestamp: Timestamp;
363
+ /**
364
+ * The index of the transaction within a blockchain.
365
+ */
366
+ transactionIndex: Long;
367
+ /**
368
+ * The number of transactions in the block.
369
+ */
370
+ numberOfTransactions: Long;
371
+ /**
372
+ * The status of the transaction.
373
+ */
374
+ status: QueryTransactionStatus;
375
+ /**
376
+ * The identifier of the transaction. It is generated whenever a transaction is verified and added to the blockchain.
377
+ */
378
+ to: ChainAddress;
379
+ /**
380
+ * The initiator of the transaction. It is either in the form a public key or a contract address.
381
+ */
382
+ from?: ChainAddress;
383
+ /**
384
+ * The blockchain address for the contract.
385
+ */
386
+ contractAddress?: ChainAddress;
387
+ /**
388
+ * The amount of gas used for the transaction.
389
+ */
390
+ gasUsed?: String;
391
+ /**
392
+ * The amount of gas used up to the specified point in the block.
393
+ */
394
+ cumulativeGasUsed?: String;
395
+ /**
396
+ * The effective gas price.
397
+ */
398
+ effectiveGasPrice?: String;
399
+ /**
400
+ * The signature of the transaction. The Z coordinate of a point V.
401
+ */
402
+ signatureV?: Integer;
403
+ /**
404
+ * The signature of the transaction. The X coordinate of a point R.
405
+ */
406
+ signatureR?: String;
407
+ /**
408
+ * The signature of the transaction. The Y coordinate of a point S.
409
+ */
410
+ signatureS?: String;
411
+ /**
412
+ * The transaction fee.
413
+ */
414
+ transactionFee?: String;
415
+ /**
416
+ * The unique identifier of the transaction. It is generated whenever a transaction is verified and added to the blockchain.
417
+ */
418
+ transactionId?: String;
419
+ }
420
+ export interface TransactionEvent {
421
+ /**
422
+ * The blockchain network where the transaction occurred.
423
+ */
424
+ network: QueryNetwork;
425
+ /**
426
+ * The hash of the transaction. It is generated whenever a transaction is verified and added to the blockchain.
427
+ */
428
+ transactionHash: QueryTransactionHash;
429
+ /**
430
+ * The type of transaction event.
431
+ */
432
+ eventType: QueryTransactionEventType;
433
+ /**
434
+ * The wallet address initiating the transaction. It can either be a public key or a contract.
435
+ */
436
+ from?: ChainAddress;
437
+ /**
438
+ * The wallet address receiving the transaction. It can either be a public key or a contract.
439
+ */
440
+ to?: ChainAddress;
441
+ /**
442
+ * The value that was transacted.
443
+ */
444
+ value?: String;
445
+ /**
446
+ * The blockchain address. for the contract
447
+ */
448
+ contractAddress?: ChainAddress;
449
+ /**
450
+ * The unique identifier for the token involved in the transaction.
451
+ */
452
+ tokenId?: QueryTokenId;
453
+ /**
454
+ * The unique identifier of the transaction. It is generated whenever a transaction is verified and added to the blockchain.
455
+ */
456
+ transactionId?: String;
457
+ /**
458
+ * The position of the vout in the transaction output list.
459
+ */
460
+ voutIndex?: Integer;
461
+ }
462
+ export type TransactionEventList = TransactionEvent[];
463
+ export interface TransactionOutputItem {
464
+ /**
465
+ * The hash of the transaction. It is generated whenever a transaction is verified and added to the blockchain.
466
+ */
467
+ transactionHash: QueryTransactionHash;
468
+ /**
469
+ * The blockchain network where the transaction occurred.
470
+ */
471
+ network: QueryNetwork;
472
+ /**
473
+ * The time when the transaction occurred.
474
+ */
475
+ transactionTimestamp: Timestamp;
476
+ }
477
+ export type TransactionOutputList = TransactionOutputItem[];
478
+ /**
479
+ * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
480
+ */
481
+ export type apiVersion = "2023-05-04"|"latest"|string;
482
+ export interface ClientApiVersions {
483
+ /**
484
+ * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
485
+ */
486
+ apiVersion?: apiVersion;
487
+ }
488
+ export type ClientConfiguration = ServiceConfigurationOptions & ClientApiVersions;
489
+ /**
490
+ * Contains interfaces for use with the ManagedBlockchainQuery client.
491
+ */
492
+ export import Types = ManagedBlockchainQuery;
493
+ }
494
+ export = ManagedBlockchainQuery;
@@ -0,0 +1,19 @@
1
+ require('../lib/node_loader');
2
+ var AWS = require('../lib/core');
3
+ var Service = AWS.Service;
4
+ var apiLoader = AWS.apiLoader;
5
+
6
+ apiLoader.services['managedblockchainquery'] = {};
7
+ AWS.ManagedBlockchainQuery = Service.defineService('managedblockchainquery', ['2023-05-04']);
8
+ Object.defineProperty(apiLoader.services['managedblockchainquery'], '2023-05-04', {
9
+ get: function get() {
10
+ var model = require('../apis/managedblockchain-query-2023-05-04.min.json');
11
+ model.paginators = require('../apis/managedblockchain-query-2023-05-04.paginators.json').pagination;
12
+ model.waiters = require('../apis/managedblockchain-query-2023-05-04.waiters2.json').waiters;
13
+ return model;
14
+ },
15
+ enumerable: true,
16
+ configurable: true
17
+ });
18
+
19
+ module.exports = AWS.ManagedBlockchainQuery;