@aws-sdk/client-rds-data 3.128.0 → 3.137.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.
@@ -82,26 +82,6 @@ var StatementTimeoutException = (function (_super) {
82
82
  return StatementTimeoutException;
83
83
  }(__BaseException));
84
84
  export { StatementTimeoutException };
85
- export var BeginTransactionRequest;
86
- (function (BeginTransactionRequest) {
87
- BeginTransactionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
88
- })(BeginTransactionRequest || (BeginTransactionRequest = {}));
89
- export var BeginTransactionResponse;
90
- (function (BeginTransactionResponse) {
91
- BeginTransactionResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
92
- })(BeginTransactionResponse || (BeginTransactionResponse = {}));
93
- export var ColumnMetadata;
94
- (function (ColumnMetadata) {
95
- ColumnMetadata.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
96
- })(ColumnMetadata || (ColumnMetadata = {}));
97
- export var CommitTransactionRequest;
98
- (function (CommitTransactionRequest) {
99
- CommitTransactionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
100
- })(CommitTransactionRequest || (CommitTransactionRequest = {}));
101
- export var CommitTransactionResponse;
102
- (function (CommitTransactionResponse) {
103
- CommitTransactionResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
104
- })(CommitTransactionResponse || (CommitTransactionResponse = {}));
105
85
  var NotFoundException = (function (_super) {
106
86
  __extends(NotFoundException, _super);
107
87
  function NotFoundException(opts) {
@@ -119,14 +99,6 @@ export var DecimalReturnType;
119
99
  DecimalReturnType["DOUBLE_OR_LONG"] = "DOUBLE_OR_LONG";
120
100
  DecimalReturnType["STRING"] = "STRING";
121
101
  })(DecimalReturnType || (DecimalReturnType = {}));
122
- export var ExecuteSqlRequest;
123
- (function (ExecuteSqlRequest) {
124
- ExecuteSqlRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
125
- })(ExecuteSqlRequest || (ExecuteSqlRequest = {}));
126
- export var ResultSetMetadata;
127
- (function (ResultSetMetadata) {
128
- ResultSetMetadata.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
129
- })(ResultSetMetadata || (ResultSetMetadata = {}));
130
102
  export var RecordsFormatType;
131
103
  (function (RecordsFormatType) {
132
104
  RecordsFormatType["JSON"] = "JSON";
@@ -137,18 +109,6 @@ export var LongReturnType;
137
109
  LongReturnType["LONG"] = "LONG";
138
110
  LongReturnType["STRING"] = "STRING";
139
111
  })(LongReturnType || (LongReturnType = {}));
140
- export var ResultSetOptions;
141
- (function (ResultSetOptions) {
142
- ResultSetOptions.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
143
- })(ResultSetOptions || (ResultSetOptions = {}));
144
- export var RollbackTransactionRequest;
145
- (function (RollbackTransactionRequest) {
146
- RollbackTransactionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
147
- })(RollbackTransactionRequest || (RollbackTransactionRequest = {}));
148
- export var RollbackTransactionResponse;
149
- (function (RollbackTransactionResponse) {
150
- RollbackTransactionResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
151
- })(RollbackTransactionResponse || (RollbackTransactionResponse = {}));
152
112
  export var ArrayValue;
153
113
  (function (ArrayValue) {
154
114
  ArrayValue.visit = function (value, visitor) {
@@ -164,21 +124,6 @@ export var ArrayValue;
164
124
  return visitor.arrayValues(value.arrayValues);
165
125
  return visitor._(value.$unknown[0], value.$unknown[1]);
166
126
  };
167
- ArrayValue.filterSensitiveLog = function (obj) {
168
- var _a;
169
- if (obj.booleanValues !== undefined)
170
- return { booleanValues: obj.booleanValues };
171
- if (obj.longValues !== undefined)
172
- return { longValues: obj.longValues };
173
- if (obj.doubleValues !== undefined)
174
- return { doubleValues: obj.doubleValues };
175
- if (obj.stringValues !== undefined)
176
- return { stringValues: obj.stringValues };
177
- if (obj.arrayValues !== undefined)
178
- return { arrayValues: obj.arrayValues.map(function (item) { return ArrayValue.filterSensitiveLog(item); }) };
179
- if (obj.$unknown !== undefined)
180
- return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
181
- };
182
127
  })(ArrayValue || (ArrayValue = {}));
183
128
  export var Field;
184
129
  (function (Field) {
@@ -199,34 +144,7 @@ export var Field;
199
144
  return visitor.arrayValue(value.arrayValue);
200
145
  return visitor._(value.$unknown[0], value.$unknown[1]);
201
146
  };
202
- Field.filterSensitiveLog = function (obj) {
203
- var _a;
204
- if (obj.isNull !== undefined)
205
- return { isNull: obj.isNull };
206
- if (obj.booleanValue !== undefined)
207
- return { booleanValue: obj.booleanValue };
208
- if (obj.longValue !== undefined)
209
- return { longValue: obj.longValue };
210
- if (obj.doubleValue !== undefined)
211
- return { doubleValue: obj.doubleValue };
212
- if (obj.stringValue !== undefined)
213
- return { stringValue: obj.stringValue };
214
- if (obj.blobValue !== undefined)
215
- return { blobValue: obj.blobValue };
216
- if (obj.arrayValue !== undefined)
217
- return { arrayValue: ArrayValue.filterSensitiveLog(obj.arrayValue) };
218
- if (obj.$unknown !== undefined)
219
- return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
220
- };
221
147
  })(Field || (Field = {}));
222
- export var SqlParameter;
223
- (function (SqlParameter) {
224
- SqlParameter.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.value && { value: Field.filterSensitiveLog(obj.value) }))); };
225
- })(SqlParameter || (SqlParameter = {}));
226
- export var UpdateResult;
227
- (function (UpdateResult) {
228
- UpdateResult.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.generatedFields && { generatedFields: obj.generatedFields.map(function (item) { return Field.filterSensitiveLog(item); }) }))); };
229
- })(UpdateResult || (UpdateResult = {}));
230
148
  export var Value;
231
149
  (function (Value) {
232
150
  Value.visit = function (value, visitor) {
@@ -252,67 +170,86 @@ export var Value;
252
170
  return visitor.structValue(value.structValue);
253
171
  return visitor._(value.$unknown[0], value.$unknown[1]);
254
172
  };
255
- Value.filterSensitiveLog = function (obj) {
256
- var _a;
257
- if (obj.isNull !== undefined)
258
- return { isNull: obj.isNull };
259
- if (obj.bitValue !== undefined)
260
- return { bitValue: obj.bitValue };
261
- if (obj.bigIntValue !== undefined)
262
- return { bigIntValue: obj.bigIntValue };
263
- if (obj.intValue !== undefined)
264
- return { intValue: obj.intValue };
265
- if (obj.doubleValue !== undefined)
266
- return { doubleValue: obj.doubleValue };
267
- if (obj.realValue !== undefined)
268
- return { realValue: obj.realValue };
269
- if (obj.stringValue !== undefined)
270
- return { stringValue: obj.stringValue };
271
- if (obj.blobValue !== undefined)
272
- return { blobValue: obj.blobValue };
273
- if (obj.arrayValues !== undefined)
274
- return { arrayValues: obj.arrayValues.map(function (item) { return Value.filterSensitiveLog(item); }) };
275
- if (obj.structValue !== undefined)
276
- return { structValue: StructValue.filterSensitiveLog(obj.structValue) };
277
- if (obj.$unknown !== undefined)
278
- return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
279
- };
280
173
  })(Value || (Value = {}));
281
- export var ExecuteStatementRequest;
282
- (function (ExecuteStatementRequest) {
283
- ExecuteStatementRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.parameters && { parameters: obj.parameters.map(function (item) { return SqlParameter.filterSensitiveLog(item); }) }))); };
284
- })(ExecuteStatementRequest || (ExecuteStatementRequest = {}));
285
- export var StructValue;
286
- (function (StructValue) {
287
- StructValue.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.attributes && { attributes: obj.attributes.map(function (item) { return Value.filterSensitiveLog(item); }) }))); };
288
- })(StructValue || (StructValue = {}));
289
- export var BatchExecuteStatementRequest;
290
- (function (BatchExecuteStatementRequest) {
291
- BatchExecuteStatementRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.parameterSets && {
292
- parameterSets: obj.parameterSets.map(function (item) { return item.map(function (item) { return SqlParameter.filterSensitiveLog(item); }); }),
293
- }))); };
294
- })(BatchExecuteStatementRequest || (BatchExecuteStatementRequest = {}));
295
- export var BatchExecuteStatementResponse;
296
- (function (BatchExecuteStatementResponse) {
297
- BatchExecuteStatementResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.updateResults && { updateResults: obj.updateResults.map(function (item) { return UpdateResult.filterSensitiveLog(item); }) }))); };
298
- })(BatchExecuteStatementResponse || (BatchExecuteStatementResponse = {}));
299
- export var _Record;
300
- (function (_Record) {
301
- _Record.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.values && { values: obj.values.map(function (item) { return Value.filterSensitiveLog(item); }) }))); };
302
- })(_Record || (_Record = {}));
303
- export var ExecuteStatementResponse;
304
- (function (ExecuteStatementResponse) {
305
- ExecuteStatementResponse.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.records && { records: obj.records.map(function (item) { return item.map(function (item) { return Field.filterSensitiveLog(item); }); }) })), (obj.generatedFields && { generatedFields: obj.generatedFields.map(function (item) { return Field.filterSensitiveLog(item); }) }))); };
306
- })(ExecuteStatementResponse || (ExecuteStatementResponse = {}));
307
- export var ResultFrame;
308
- (function (ResultFrame) {
309
- ResultFrame.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.records && { records: obj.records.map(function (item) { return _Record.filterSensitiveLog(item); }) }))); };
310
- })(ResultFrame || (ResultFrame = {}));
311
- export var SqlStatementResult;
312
- (function (SqlStatementResult) {
313
- SqlStatementResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
314
- })(SqlStatementResult || (SqlStatementResult = {}));
315
- export var ExecuteSqlResponse;
316
- (function (ExecuteSqlResponse) {
317
- ExecuteSqlResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
318
- })(ExecuteSqlResponse || (ExecuteSqlResponse = {}));
174
+ export var BeginTransactionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
175
+ export var BeginTransactionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
176
+ export var ColumnMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
177
+ export var CommitTransactionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
178
+ export var CommitTransactionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
179
+ export var ExecuteSqlRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
180
+ export var ResultSetMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
181
+ export var ResultSetOptionsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
182
+ export var RollbackTransactionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
183
+ export var RollbackTransactionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
184
+ export var ArrayValueFilterSensitiveLog = function (obj) {
185
+ var _a;
186
+ if (obj.booleanValues !== undefined)
187
+ return { booleanValues: obj.booleanValues };
188
+ if (obj.longValues !== undefined)
189
+ return { longValues: obj.longValues };
190
+ if (obj.doubleValues !== undefined)
191
+ return { doubleValues: obj.doubleValues };
192
+ if (obj.stringValues !== undefined)
193
+ return { stringValues: obj.stringValues };
194
+ if (obj.arrayValues !== undefined)
195
+ return { arrayValues: obj.arrayValues.map(function (item) { return ArrayValueFilterSensitiveLog(item); }) };
196
+ if (obj.$unknown !== undefined)
197
+ return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
198
+ };
199
+ export var FieldFilterSensitiveLog = function (obj) {
200
+ var _a;
201
+ if (obj.isNull !== undefined)
202
+ return { isNull: obj.isNull };
203
+ if (obj.booleanValue !== undefined)
204
+ return { booleanValue: obj.booleanValue };
205
+ if (obj.longValue !== undefined)
206
+ return { longValue: obj.longValue };
207
+ if (obj.doubleValue !== undefined)
208
+ return { doubleValue: obj.doubleValue };
209
+ if (obj.stringValue !== undefined)
210
+ return { stringValue: obj.stringValue };
211
+ if (obj.blobValue !== undefined)
212
+ return { blobValue: obj.blobValue };
213
+ if (obj.arrayValue !== undefined)
214
+ return { arrayValue: ArrayValueFilterSensitiveLog(obj.arrayValue) };
215
+ if (obj.$unknown !== undefined)
216
+ return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
217
+ };
218
+ export var SqlParameterFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.value && { value: FieldFilterSensitiveLog(obj.value) }))); };
219
+ export var UpdateResultFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.generatedFields && { generatedFields: obj.generatedFields.map(function (item) { return FieldFilterSensitiveLog(item); }) }))); };
220
+ export var ValueFilterSensitiveLog = function (obj) {
221
+ var _a;
222
+ if (obj.isNull !== undefined)
223
+ return { isNull: obj.isNull };
224
+ if (obj.bitValue !== undefined)
225
+ return { bitValue: obj.bitValue };
226
+ if (obj.bigIntValue !== undefined)
227
+ return { bigIntValue: obj.bigIntValue };
228
+ if (obj.intValue !== undefined)
229
+ return { intValue: obj.intValue };
230
+ if (obj.doubleValue !== undefined)
231
+ return { doubleValue: obj.doubleValue };
232
+ if (obj.realValue !== undefined)
233
+ return { realValue: obj.realValue };
234
+ if (obj.stringValue !== undefined)
235
+ return { stringValue: obj.stringValue };
236
+ if (obj.blobValue !== undefined)
237
+ return { blobValue: obj.blobValue };
238
+ if (obj.arrayValues !== undefined)
239
+ return { arrayValues: obj.arrayValues.map(function (item) { return ValueFilterSensitiveLog(item); }) };
240
+ if (obj.structValue !== undefined)
241
+ return { structValue: StructValueFilterSensitiveLog(obj.structValue) };
242
+ if (obj.$unknown !== undefined)
243
+ return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
244
+ };
245
+ export var ExecuteStatementRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.parameters && { parameters: obj.parameters.map(function (item) { return SqlParameterFilterSensitiveLog(item); }) }))); };
246
+ export var StructValueFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.attributes && { attributes: obj.attributes.map(function (item) { return ValueFilterSensitiveLog(item); }) }))); };
247
+ export var BatchExecuteStatementRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.parameterSets && {
248
+ parameterSets: obj.parameterSets.map(function (item) { return item.map(function (item) { return SqlParameterFilterSensitiveLog(item); }); }),
249
+ }))); };
250
+ export var BatchExecuteStatementResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.updateResults && { updateResults: obj.updateResults.map(function (item) { return UpdateResultFilterSensitiveLog(item); }) }))); };
251
+ export var _RecordFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.values && { values: obj.values.map(function (item) { return ValueFilterSensitiveLog(item); }) }))); };
252
+ export var ExecuteStatementResponseFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.records && { records: obj.records.map(function (item) { return item.map(function (item) { return FieldFilterSensitiveLog(item); }); }) })), (obj.generatedFields && { generatedFields: obj.generatedFields.map(function (item) { return FieldFilterSensitiveLog(item); }) }))); };
253
+ export var ResultFrameFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.records && { records: obj.records.map(function (item) { return _RecordFilterSensitiveLog(item); }) }))); };
254
+ export var SqlStatementResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
255
+ export var ExecuteSqlResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -1141,6 +1141,9 @@ var loadRestJsonErrorCode = function (output, data) {
1141
1141
  var findKey = function (object, key) { return Object.keys(object).find(function (k) { return k.toLowerCase() === key.toLowerCase(); }); };
1142
1142
  var sanitizeErrorCode = function (rawValue) {
1143
1143
  var cleanValue = rawValue;
1144
+ if (typeof cleanValue === "number") {
1145
+ cleanValue = cleanValue.toString();
1146
+ }
1144
1147
  if (cleanValue.indexOf(":") >= 0) {
1145
1148
  cleanValue = cleanValue.split(":")[0];
1146
1149
  }
@@ -101,12 +101,6 @@ export interface BeginTransactionRequest {
101
101
  */
102
102
  schema?: string;
103
103
  }
104
- export declare namespace BeginTransactionRequest {
105
- /**
106
- * @internal
107
- */
108
- const filterSensitiveLog: (obj: BeginTransactionRequest) => any;
109
- }
110
104
  /**
111
105
  * <p>The response elements represent the output of a request to start a SQL
112
106
  * transaction.</p>
@@ -117,12 +111,6 @@ export interface BeginTransactionResponse {
117
111
  */
118
112
  transactionId?: string;
119
113
  }
120
- export declare namespace BeginTransactionResponse {
121
- /**
122
- * @internal
123
- */
124
- const filterSensitiveLog: (obj: BeginTransactionResponse) => any;
125
- }
126
114
  /**
127
115
  * <p>Contains the metadata for a column.</p>
128
116
  */
@@ -184,12 +172,6 @@ export interface ColumnMetadata {
184
172
  */
185
173
  arrayBaseColumnType?: number;
186
174
  }
187
- export declare namespace ColumnMetadata {
188
- /**
189
- * @internal
190
- */
191
- const filterSensitiveLog: (obj: ColumnMetadata) => any;
192
- }
193
175
  /**
194
176
  * <p>The request parameters represent the input of a commit transaction request.</p>
195
177
  */
@@ -207,12 +189,6 @@ export interface CommitTransactionRequest {
207
189
  */
208
190
  transactionId: string | undefined;
209
191
  }
210
- export declare namespace CommitTransactionRequest {
211
- /**
212
- * @internal
213
- */
214
- const filterSensitiveLog: (obj: CommitTransactionRequest) => any;
215
- }
216
192
  /**
217
193
  * <p>The response elements represent the output of a commit transaction request.</p>
218
194
  */
@@ -222,12 +198,6 @@ export interface CommitTransactionResponse {
222
198
  */
223
199
  transactionStatus?: string;
224
200
  }
225
- export declare namespace CommitTransactionResponse {
226
- /**
227
- * @internal
228
- */
229
- const filterSensitiveLog: (obj: CommitTransactionResponse) => any;
230
- }
231
201
  /**
232
202
  * <p>The <code>resourceArn</code>, <code>secretArn</code>, or <code>transactionId</code> value can't be found.</p>
233
203
  */
@@ -274,12 +244,6 @@ export interface ExecuteSqlRequest {
274
244
  */
275
245
  schema?: string;
276
246
  }
277
- export declare namespace ExecuteSqlRequest {
278
- /**
279
- * @internal
280
- */
281
- const filterSensitiveLog: (obj: ExecuteSqlRequest) => any;
282
- }
283
247
  /**
284
248
  * <p>The metadata of the result set returned by a SQL statement.</p>
285
249
  */
@@ -293,12 +257,6 @@ export interface ResultSetMetadata {
293
257
  */
294
258
  columnMetadata?: ColumnMetadata[];
295
259
  }
296
- export declare namespace ResultSetMetadata {
297
- /**
298
- * @internal
299
- */
300
- const filterSensitiveLog: (obj: ResultSetMetadata) => any;
301
- }
302
260
  export declare enum RecordsFormatType {
303
261
  JSON = "JSON",
304
262
  NONE = "NONE"
@@ -332,12 +290,6 @@ export interface ResultSetOptions {
332
290
  */
333
291
  longReturnType?: LongReturnType | string;
334
292
  }
335
- export declare namespace ResultSetOptions {
336
- /**
337
- * @internal
338
- */
339
- const filterSensitiveLog: (obj: ResultSetOptions) => any;
340
- }
341
293
  /**
342
294
  * <p>The request parameters represent the input of a request to perform a rollback of a
343
295
  * transaction.</p>
@@ -356,12 +308,6 @@ export interface RollbackTransactionRequest {
356
308
  */
357
309
  transactionId: string | undefined;
358
310
  }
359
- export declare namespace RollbackTransactionRequest {
360
- /**
361
- * @internal
362
- */
363
- const filterSensitiveLog: (obj: RollbackTransactionRequest) => any;
364
- }
365
311
  /**
366
312
  * <p>The response elements represent the output of a request to perform a rollback of a
367
313
  * transaction.</p>
@@ -372,12 +318,6 @@ export interface RollbackTransactionResponse {
372
318
  */
373
319
  transactionStatus?: string;
374
320
  }
375
- export declare namespace RollbackTransactionResponse {
376
- /**
377
- * @internal
378
- */
379
- const filterSensitiveLog: (obj: RollbackTransactionResponse) => any;
380
- }
381
321
  /**
382
322
  * <p>Contains an array.</p>
383
323
  */
@@ -455,10 +395,6 @@ export declare namespace ArrayValue {
455
395
  _: (name: string, value: any) => T;
456
396
  }
457
397
  const visit: <T>(value: ArrayValue, visitor: Visitor<T>) => T;
458
- /**
459
- * @internal
460
- */
461
- const filterSensitiveLog: (obj: ArrayValue) => any;
462
398
  }
463
399
  /**
464
400
  * <p>Contains a value.</p>
@@ -577,10 +513,6 @@ export declare namespace Field {
577
513
  _: (name: string, value: any) => T;
578
514
  }
579
515
  const visit: <T>(value: Field, visitor: Visitor<T>) => T;
580
- /**
581
- * @internal
582
- */
583
- const filterSensitiveLog: (obj: Field) => any;
584
516
  }
585
517
  /**
586
518
  * <p>A parameter used in a SQL statement.</p>
@@ -633,12 +565,6 @@ export interface SqlParameter {
633
565
  */
634
566
  typeHint?: TypeHint | string;
635
567
  }
636
- export declare namespace SqlParameter {
637
- /**
638
- * @internal
639
- */
640
- const filterSensitiveLog: (obj: SqlParameter) => any;
641
- }
642
568
  /**
643
569
  * <p>The response elements represent the results of an update.</p>
644
570
  */
@@ -648,12 +574,6 @@ export interface UpdateResult {
648
574
  */
649
575
  generatedFields?: Field[];
650
576
  }
651
- export declare namespace UpdateResult {
652
- /**
653
- * @internal
654
- */
655
- const filterSensitiveLog: (obj: UpdateResult) => any;
656
- }
657
577
  /**
658
578
  * <p>Contains the value of a column.</p>
659
579
  *
@@ -851,10 +771,6 @@ export declare namespace Value {
851
771
  _: (name: string, value: any) => T;
852
772
  }
853
773
  const visit: <T>(value: Value, visitor: Visitor<T>) => T;
854
- /**
855
- * @internal
856
- */
857
- const filterSensitiveLog: (obj: Value) => any;
858
774
  }
859
775
  /**
860
776
  * <p>The request parameters represent the input of a request to run a SQL statement against
@@ -930,12 +846,6 @@ export interface ExecuteStatementRequest {
930
846
  */
931
847
  formatRecordsAs?: RecordsFormatType | string;
932
848
  }
933
- export declare namespace ExecuteStatementRequest {
934
- /**
935
- * @internal
936
- */
937
- const filterSensitiveLog: (obj: ExecuteStatementRequest) => any;
938
- }
939
849
  /**
940
850
  * <p>A structure value returned by a call.</p>
941
851
  * <important>
@@ -949,12 +859,6 @@ export interface StructValue {
949
859
  */
950
860
  attributes?: Value[];
951
861
  }
952
- export declare namespace StructValue {
953
- /**
954
- * @internal
955
- */
956
- const filterSensitiveLog: (obj: StructValue) => any;
957
- }
958
862
  /**
959
863
  * <p>The request parameters represent the input of a SQL statement over an array of
960
864
  * data.</p>
@@ -1008,12 +912,6 @@ export interface BatchExecuteStatementRequest {
1008
912
  */
1009
913
  transactionId?: string;
1010
914
  }
1011
- export declare namespace BatchExecuteStatementRequest {
1012
- /**
1013
- * @internal
1014
- */
1015
- const filterSensitiveLog: (obj: BatchExecuteStatementRequest) => any;
1016
- }
1017
915
  /**
1018
916
  * <p>The response elements represent the output of a SQL statement over an array of
1019
917
  * data.</p>
@@ -1024,12 +922,6 @@ export interface BatchExecuteStatementResponse {
1024
922
  */
1025
923
  updateResults?: UpdateResult[];
1026
924
  }
1027
- export declare namespace BatchExecuteStatementResponse {
1028
- /**
1029
- * @internal
1030
- */
1031
- const filterSensitiveLog: (obj: BatchExecuteStatementResponse) => any;
1032
- }
1033
925
  /**
1034
926
  * <p>A record returned by a call.</p>
1035
927
  * <important>
@@ -1043,12 +935,6 @@ export interface _Record {
1043
935
  */
1044
936
  values?: Value[];
1045
937
  }
1046
- export declare namespace _Record {
1047
- /**
1048
- * @internal
1049
- */
1050
- const filterSensitiveLog: (obj: _Record) => any;
1051
- }
1052
938
  /**
1053
939
  * <p>The response elements represent the output of a request to run a SQL statement against
1054
940
  * a database.</p>
@@ -1088,12 +974,6 @@ export interface ExecuteStatementResponse {
1088
974
  */
1089
975
  formattedRecords?: string;
1090
976
  }
1091
- export declare namespace ExecuteStatementResponse {
1092
- /**
1093
- * @internal
1094
- */
1095
- const filterSensitiveLog: (obj: ExecuteStatementResponse) => any;
1096
- }
1097
977
  /**
1098
978
  * <p>The result set returned by a SQL statement.</p>
1099
979
  * <important>
@@ -1111,12 +991,6 @@ export interface ResultFrame {
1111
991
  */
1112
992
  records?: _Record[];
1113
993
  }
1114
- export declare namespace ResultFrame {
1115
- /**
1116
- * @internal
1117
- */
1118
- const filterSensitiveLog: (obj: ResultFrame) => any;
1119
- }
1120
994
  /**
1121
995
  * <p>The result of a SQL statement.</p>
1122
996
  *
@@ -1135,12 +1009,6 @@ export interface SqlStatementResult {
1135
1009
  */
1136
1010
  numberOfRecordsUpdated?: number;
1137
1011
  }
1138
- export declare namespace SqlStatementResult {
1139
- /**
1140
- * @internal
1141
- */
1142
- const filterSensitiveLog: (obj: SqlStatementResult) => any;
1143
- }
1144
1012
  /**
1145
1013
  * <p>The response elements represent the output of a request to run one or more SQL
1146
1014
  * statements.</p>
@@ -1151,9 +1019,99 @@ export interface ExecuteSqlResponse {
1151
1019
  */
1152
1020
  sqlStatementResults?: SqlStatementResult[];
1153
1021
  }
1154
- export declare namespace ExecuteSqlResponse {
1155
- /**
1156
- * @internal
1157
- */
1158
- const filterSensitiveLog: (obj: ExecuteSqlResponse) => any;
1159
- }
1022
+ /**
1023
+ * @internal
1024
+ */
1025
+ export declare const BeginTransactionRequestFilterSensitiveLog: (obj: BeginTransactionRequest) => any;
1026
+ /**
1027
+ * @internal
1028
+ */
1029
+ export declare const BeginTransactionResponseFilterSensitiveLog: (obj: BeginTransactionResponse) => any;
1030
+ /**
1031
+ * @internal
1032
+ */
1033
+ export declare const ColumnMetadataFilterSensitiveLog: (obj: ColumnMetadata) => any;
1034
+ /**
1035
+ * @internal
1036
+ */
1037
+ export declare const CommitTransactionRequestFilterSensitiveLog: (obj: CommitTransactionRequest) => any;
1038
+ /**
1039
+ * @internal
1040
+ */
1041
+ export declare const CommitTransactionResponseFilterSensitiveLog: (obj: CommitTransactionResponse) => any;
1042
+ /**
1043
+ * @internal
1044
+ */
1045
+ export declare const ExecuteSqlRequestFilterSensitiveLog: (obj: ExecuteSqlRequest) => any;
1046
+ /**
1047
+ * @internal
1048
+ */
1049
+ export declare const ResultSetMetadataFilterSensitiveLog: (obj: ResultSetMetadata) => any;
1050
+ /**
1051
+ * @internal
1052
+ */
1053
+ export declare const ResultSetOptionsFilterSensitiveLog: (obj: ResultSetOptions) => any;
1054
+ /**
1055
+ * @internal
1056
+ */
1057
+ export declare const RollbackTransactionRequestFilterSensitiveLog: (obj: RollbackTransactionRequest) => any;
1058
+ /**
1059
+ * @internal
1060
+ */
1061
+ export declare const RollbackTransactionResponseFilterSensitiveLog: (obj: RollbackTransactionResponse) => any;
1062
+ /**
1063
+ * @internal
1064
+ */
1065
+ export declare const ArrayValueFilterSensitiveLog: (obj: ArrayValue) => any;
1066
+ /**
1067
+ * @internal
1068
+ */
1069
+ export declare const FieldFilterSensitiveLog: (obj: Field) => any;
1070
+ /**
1071
+ * @internal
1072
+ */
1073
+ export declare const SqlParameterFilterSensitiveLog: (obj: SqlParameter) => any;
1074
+ /**
1075
+ * @internal
1076
+ */
1077
+ export declare const UpdateResultFilterSensitiveLog: (obj: UpdateResult) => any;
1078
+ /**
1079
+ * @internal
1080
+ */
1081
+ export declare const ValueFilterSensitiveLog: (obj: Value) => any;
1082
+ /**
1083
+ * @internal
1084
+ */
1085
+ export declare const ExecuteStatementRequestFilterSensitiveLog: (obj: ExecuteStatementRequest) => any;
1086
+ /**
1087
+ * @internal
1088
+ */
1089
+ export declare const StructValueFilterSensitiveLog: (obj: StructValue) => any;
1090
+ /**
1091
+ * @internal
1092
+ */
1093
+ export declare const BatchExecuteStatementRequestFilterSensitiveLog: (obj: BatchExecuteStatementRequest) => any;
1094
+ /**
1095
+ * @internal
1096
+ */
1097
+ export declare const BatchExecuteStatementResponseFilterSensitiveLog: (obj: BatchExecuteStatementResponse) => any;
1098
+ /**
1099
+ * @internal
1100
+ */
1101
+ export declare const _RecordFilterSensitiveLog: (obj: _Record) => any;
1102
+ /**
1103
+ * @internal
1104
+ */
1105
+ export declare const ExecuteStatementResponseFilterSensitiveLog: (obj: ExecuteStatementResponse) => any;
1106
+ /**
1107
+ * @internal
1108
+ */
1109
+ export declare const ResultFrameFilterSensitiveLog: (obj: ResultFrame) => any;
1110
+ /**
1111
+ * @internal
1112
+ */
1113
+ export declare const SqlStatementResultFilterSensitiveLog: (obj: SqlStatementResult) => any;
1114
+ /**
1115
+ * @internal
1116
+ */
1117
+ export declare const ExecuteSqlResponseFilterSensitiveLog: (obj: ExecuteSqlResponse) => any;