qldbsession.d.ts
7.07 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
import {Request} from '../lib/request';
import {Response} from '../lib/response';
import {AWSError} from '../lib/error';
import {Service} from '../lib/service';
import {ServiceConfigurationOptions} from '../lib/service';
import {ConfigBase as Config} from '../lib/config';
interface Blob {}
declare class QLDBSession extends Service {
/**
* Constructs a service object. This object has one method for each API operation.
*/
constructor(options?: QLDBSession.Types.ClientConfiguration)
config: Config & QLDBSession.Types.ClientConfiguration;
/**
* Sends a command to an Amazon QLDB ledger.
*/
sendCommand(params: QLDBSession.Types.SendCommandRequest, callback?: (err: AWSError, data: QLDBSession.Types.SendCommandResult) => void): Request<QLDBSession.Types.SendCommandResult, AWSError>;
/**
* Sends a command to an Amazon QLDB ledger.
*/
sendCommand(callback?: (err: AWSError, data: QLDBSession.Types.SendCommandResult) => void): Request<QLDBSession.Types.SendCommandResult, AWSError>;
}
declare namespace QLDBSession {
export interface AbortTransactionRequest {
}
export interface AbortTransactionResult {
}
export type CommitDigest = Buffer|Uint8Array|Blob|string;
export interface CommitTransactionRequest {
/**
* Specifies the transaction id of the transaction to commit.
*/
TransactionId: TransactionId;
/**
* Specifies the commit digest for the transaction to commit. For every active transaction, the commit digest must be passed. QLDB validates CommitDigest and rejects the commit with an error if the digest computed on the client does not match the digest computed by QLDB.
*/
CommitDigest: CommitDigest;
}
export interface CommitTransactionResult {
/**
* The transaction id of the committed transaction.
*/
TransactionId?: TransactionId;
/**
* The commit digest of the committed transaction.
*/
CommitDigest?: CommitDigest;
}
export interface EndSessionRequest {
}
export interface EndSessionResult {
}
export interface ExecuteStatementRequest {
/**
* Specifies the transaction id of the request.
*/
TransactionId: TransactionId;
/**
* Specifies the statement of the request.
*/
Statement: Statement;
/**
* Specifies the parameters for the parameterized statement in the request.
*/
Parameters?: StatementParameters;
}
export interface ExecuteStatementResult {
/**
* Contains the details of the first fetched page.
*/
FirstPage?: Page;
}
export interface FetchPageRequest {
/**
* Specifies the transaction id of the page to be fetched.
*/
TransactionId: TransactionId;
/**
* Specifies the next page token of the page to be fetched.
*/
NextPageToken: PageToken;
}
export interface FetchPageResult {
/**
* Contains details of the fetched page.
*/
Page?: Page;
}
export type IonBinary = Buffer|Uint8Array|Blob|string;
export type IonText = string;
export type LedgerName = string;
export interface Page {
/**
* A structure that contains values in multiple encoding formats.
*/
Values?: ValueHolders;
/**
* The token of the next page.
*/
NextPageToken?: PageToken;
}
export type PageToken = string;
export interface SendCommandRequest {
/**
* Specifies the session token for the current command. A session token is constant throughout the life of the session. To obtain a session token, run the StartSession command. This SessionToken is required for every subsequent command that is issued during the current session.
*/
SessionToken?: SessionToken;
/**
* Command to start a new session. A session token is obtained as part of the response.
*/
StartSession?: StartSessionRequest;
/**
* Command to start a new transaction.
*/
StartTransaction?: StartTransactionRequest;
/**
* Command to end the current session.
*/
EndSession?: EndSessionRequest;
/**
* Command to commit the specified transaction.
*/
CommitTransaction?: CommitTransactionRequest;
/**
* Command to abort the current transaction.
*/
AbortTransaction?: AbortTransactionRequest;
/**
* Command to execute a statement in the specified transaction.
*/
ExecuteStatement?: ExecuteStatementRequest;
/**
* Command to fetch a page.
*/
FetchPage?: FetchPageRequest;
}
export interface SendCommandResult {
/**
* Contains the details of the started session that includes a session token. This SessionToken is required for every subsequent command that is issued during the current session.
*/
StartSession?: StartSessionResult;
/**
* Contains the details of the started transaction.
*/
StartTransaction?: StartTransactionResult;
/**
* Contains the details of the ended session.
*/
EndSession?: EndSessionResult;
/**
* Contains the details of the committed transaction.
*/
CommitTransaction?: CommitTransactionResult;
/**
* Contains the details of the aborted transaction.
*/
AbortTransaction?: AbortTransactionResult;
/**
* Contains the details of the executed statement.
*/
ExecuteStatement?: ExecuteStatementResult;
/**
* Contains the details of the fetched page.
*/
FetchPage?: FetchPageResult;
}
export type SessionToken = string;
export interface StartSessionRequest {
/**
* The name of the ledger to start a new session against.
*/
LedgerName: LedgerName;
}
export interface StartSessionResult {
/**
* Session token of the started session. This SessionToken is required for every subsequent command that is issued during the current session.
*/
SessionToken?: SessionToken;
}
export interface StartTransactionRequest {
}
export interface StartTransactionResult {
/**
* The transaction id of the started transaction.
*/
TransactionId?: TransactionId;
}
export type Statement = string;
export type StatementParameters = ValueHolder[];
export type TransactionId = string;
export interface ValueHolder {
/**
* An Amazon Ion binary value contained in a ValueHolder structure.
*/
IonBinary?: IonBinary;
/**
* An Amazon Ion plaintext value contained in a ValueHolder structure.
*/
IonText?: IonText;
}
export type ValueHolders = ValueHolder[];
/**
* 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.
*/
export type apiVersion = "2019-07-11"|"latest"|string;
export interface ClientApiVersions {
/**
* 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.
*/
apiVersion?: apiVersion;
}
export type ClientConfiguration = ServiceConfigurationOptions & ClientApiVersions;
/**
* Contains interfaces for use with the QLDBSession client.
*/
export import Types = QLDBSession;
}
export = QLDBSession;