1
1
import * as _smithy from "../../lib/smithy" ;
2
+ import { MetadataBearer as $MetadataBearer } from "@aws-sdk/types" ;
2
3
3
4
export type ArrayValue =
4
5
| ArrayValue . ArrayValuesMember
@@ -135,7 +136,7 @@ export namespace BatchExecuteStatementRequest {
135
136
}
136
137
}
137
138
138
- export interface BatchExecuteStatementResponse {
139
+ export interface BatchExecuteStatementResponse extends $MetadataBearer {
139
140
__type ?: "com.amazon.rdsdataservice#BatchExecuteStatementResponse" ;
140
141
updateResults ?: Array < UpdateResult > ;
141
142
}
@@ -162,7 +163,7 @@ export namespace BeginTransactionRequest {
162
163
}
163
164
}
164
165
165
- export interface BeginTransactionResponse {
166
+ export interface BeginTransactionResponse extends $MetadataBearer {
166
167
__type ?: "com.amazon.rdsdataservice#BeginTransactionResponse" ;
167
168
transactionId ?: string ;
168
169
}
@@ -213,7 +214,7 @@ export namespace CommitTransactionRequest {
213
214
}
214
215
}
215
216
216
- export interface CommitTransactionResponse {
217
+ export interface CommitTransactionResponse extends $MetadataBearer {
217
218
__type ?: "com.amazon.rdsdataservice#CommitTransactionResponse" ;
218
219
transactionStatus ?: string ;
219
220
}
@@ -246,7 +247,7 @@ export namespace ExecuteSqlRequest {
246
247
}
247
248
}
248
249
249
- export interface ExecuteSqlResponse {
250
+ export interface ExecuteSqlResponse extends $MetadataBearer {
250
251
__type ?: "com.amazon.rdsdataservice#ExecuteSqlResponse" ;
251
252
sqlStatementResults ?: Array < SqlStatementResult > ;
252
253
}
@@ -279,7 +280,7 @@ export namespace ExecuteStatementRequest {
279
280
}
280
281
}
281
282
282
- export interface ExecuteStatementResponse {
283
+ export interface ExecuteStatementResponse extends $MetadataBearer {
283
284
__type ?: "com.amazon.rdsdataservice#ExecuteStatementResponse" ;
284
285
numberOfRecordsUpdated ?: number ;
285
286
records ?: Array < Array < Field > > ;
@@ -545,7 +546,7 @@ export namespace RollbackTransactionRequest {
545
546
}
546
547
}
547
548
548
- export interface RollbackTransactionResponse {
549
+ export interface RollbackTransactionResponse extends $MetadataBearer {
549
550
__type ?: "com.amazon.rdsdataservice#RollbackTransactionResponse" ;
550
551
transactionStatus ?: string ;
551
552
}
0 commit comments