cdk-comprehend-s3olap 2.0.83 → 2.0.86

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 (50) hide show
  1. package/.jsii +3 -3
  2. package/lib/cdk-comprehend-s3olap.js +2 -2
  3. package/lib/comprehend-lambdas.js +2 -2
  4. package/lib/iam-roles.js +4 -4
  5. package/node_modules/aws-sdk/CHANGELOG.md +15 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/controltower-2018-05-10.examples.json +5 -0
  8. package/node_modules/aws-sdk/apis/controltower-2018-05-10.min.json +148 -0
  9. package/node_modules/aws-sdk/apis/controltower-2018-05-10.paginators.json +10 -0
  10. package/node_modules/aws-sdk/apis/greengrassv2-2020-11-30.min.json +26 -19
  11. package/node_modules/aws-sdk/apis/identitystore-2020-06-15.min.json +732 -15
  12. package/node_modules/aws-sdk/apis/identitystore-2020-06-15.paginators.json +16 -2
  13. package/node_modules/aws-sdk/apis/iotthingsgraph-2018-09-06.min.json +105 -35
  14. package/node_modules/aws-sdk/apis/ivs-2020-07-14.min.json +25 -19
  15. package/node_modules/aws-sdk/apis/lookoutequipment-2020-12-15.min.json +282 -31
  16. package/node_modules/aws-sdk/apis/lookoutequipment-2020-12-15.paginators.json +10 -0
  17. package/node_modules/aws-sdk/apis/macie2-2020-01-01.min.json +390 -119
  18. package/node_modules/aws-sdk/apis/metadata.json +3 -0
  19. package/node_modules/aws-sdk/apis/rds-data-2018-08-01.min.json +132 -132
  20. package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +483 -459
  21. package/node_modules/aws-sdk/clients/all.d.ts +1 -0
  22. package/node_modules/aws-sdk/clients/all.js +2 -1
  23. package/node_modules/aws-sdk/clients/cloudfront.d.ts +7 -7
  24. package/node_modules/aws-sdk/clients/codegurureviewer.d.ts +134 -134
  25. package/node_modules/aws-sdk/clients/controltower.d.ts +169 -0
  26. package/node_modules/aws-sdk/clients/controltower.js +18 -0
  27. package/node_modules/aws-sdk/clients/greengrassv2.d.ts +22 -13
  28. package/node_modules/aws-sdk/clients/identitystore.d.ts +806 -22
  29. package/node_modules/aws-sdk/clients/iotthingsgraph.d.ts +2 -2
  30. package/node_modules/aws-sdk/clients/ivs.d.ts +9 -0
  31. package/node_modules/aws-sdk/clients/lookoutequipment.d.ts +399 -10
  32. package/node_modules/aws-sdk/clients/macie2.d.ts +289 -41
  33. package/node_modules/aws-sdk/clients/rdsdataservice.d.ts +130 -130
  34. package/node_modules/aws-sdk/clients/route53.d.ts +1 -1
  35. package/node_modules/aws-sdk/clients/sagemaker.d.ts +63 -17
  36. package/node_modules/aws-sdk/clients/sso.d.ts +19 -19
  37. package/node_modules/aws-sdk/clients/ssoadmin.d.ts +115 -115
  38. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
  39. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +51 -14
  40. package/node_modules/aws-sdk/dist/aws-sdk.js +6 -3
  41. package/node_modules/aws-sdk/dist/aws-sdk.min.js +33 -33
  42. package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
  43. package/node_modules/aws-sdk/lib/core.js +1 -1
  44. package/node_modules/aws-sdk/package.json +1 -1
  45. package/node_modules/es-abstract/2020/SameValueNonNumeric.js +1 -1
  46. package/node_modules/es-abstract/2021/SameValueNonNumeric.js +1 -1
  47. package/node_modules/es-abstract/2022/SameValueNonNumeric.js +1 -1
  48. package/node_modules/es-abstract/CHANGELOG.md +8 -0
  49. package/node_modules/es-abstract/package.json +9 -8
  50. package/package.json +5 -5
@@ -20,11 +20,11 @@ declare class RDSDataService extends Service {
20
20
  */
21
21
  batchExecuteStatement(callback?: (err: AWSError, data: RDSDataService.Types.BatchExecuteStatementResponse) => void): Request<RDSDataService.Types.BatchExecuteStatementResponse, AWSError>;
22
22
  /**
23
- * Starts a SQL transaction. &lt;important&gt; &lt;p&gt;A transaction can run for a maximum of 24 hours. A transaction is terminated and rolled back automatically after 24 hours.&lt;/p&gt; &lt;p&gt;A transaction times out if no calls use its transaction ID in three minutes. If a transaction times out before it's committed, it's rolled back automatically.&lt;/p&gt; &lt;p&gt;DDL statements inside a transaction cause an implicit commit. We recommend that you run each DDL statement in a separate &lt;code&gt;ExecuteStatement&lt;/code&gt; call with &lt;code&gt;continueAfterTimeout&lt;/code&gt; enabled.&lt;/p&gt; &lt;/important&gt;
23
+ * Starts a SQL transaction. A transaction can run for a maximum of 24 hours. A transaction is terminated and rolled back automatically after 24 hours. A transaction times out if no calls use its transaction ID in three minutes. If a transaction times out before it's committed, it's rolled back automatically. DDL statements inside a transaction cause an implicit commit. We recommend that you run each DDL statement in a separate ExecuteStatement call with continueAfterTimeout enabled.
24
24
  */
25
25
  beginTransaction(params: RDSDataService.Types.BeginTransactionRequest, callback?: (err: AWSError, data: RDSDataService.Types.BeginTransactionResponse) => void): Request<RDSDataService.Types.BeginTransactionResponse, AWSError>;
26
26
  /**
27
- * Starts a SQL transaction. &lt;important&gt; &lt;p&gt;A transaction can run for a maximum of 24 hours. A transaction is terminated and rolled back automatically after 24 hours.&lt;/p&gt; &lt;p&gt;A transaction times out if no calls use its transaction ID in three minutes. If a transaction times out before it's committed, it's rolled back automatically.&lt;/p&gt; &lt;p&gt;DDL statements inside a transaction cause an implicit commit. We recommend that you run each DDL statement in a separate &lt;code&gt;ExecuteStatement&lt;/code&gt; call with &lt;code&gt;continueAfterTimeout&lt;/code&gt; enabled.&lt;/p&gt; &lt;/important&gt;
27
+ * Starts a SQL transaction. A transaction can run for a maximum of 24 hours. A transaction is terminated and rolled back automatically after 24 hours. A transaction times out if no calls use its transaction ID in three minutes. If a transaction times out before it's committed, it's rolled back automatically. DDL statements inside a transaction cause an implicit commit. We recommend that you run each DDL statement in a separate ExecuteStatement call with continueAfterTimeout enabled.
28
28
  */
29
29
  beginTransaction(callback?: (err: AWSError, data: RDSDataService.Types.BeginTransactionResponse) => void): Request<RDSDataService.Types.BeginTransactionResponse, AWSError>;
30
30
  /**
@@ -64,45 +64,33 @@ declare namespace RDSDataService {
64
64
  export type Arn = string;
65
65
  export type ArrayOfArray = ArrayValue[];
66
66
  export interface ArrayValue {
67
- /**
68
- * An array of arrays.
69
- */
70
- arrayValues?: ArrayOfArray;
71
67
  /**
72
68
  * An array of Boolean values.
73
69
  */
74
70
  booleanValues?: BooleanArray;
75
- /**
76
- * An array of floating-point numbers.
77
- */
78
- doubleValues?: DoubleArray;
79
71
  /**
80
72
  * An array of integers.
81
73
  */
82
74
  longValues?: LongArray;
75
+ /**
76
+ * An array of floating-point numbers.
77
+ */
78
+ doubleValues?: DoubleArray;
83
79
  /**
84
80
  * An array of strings.
85
81
  */
86
82
  stringValues?: StringArray;
83
+ /**
84
+ * An array of arrays.
85
+ */
86
+ arrayValues?: ArrayOfArray;
87
87
  }
88
88
  export type ArrayValueList = Value[];
89
89
  export interface BatchExecuteStatementRequest {
90
- /**
91
- * The name of the database.
92
- */
93
- database?: DbName;
94
- /**
95
- * The parameter set for the batch operation. The SQL statement is executed as many times as the number of parameter sets provided. To execute a SQL statement with no parameters, use one of the following options: Specify one or more empty parameter sets. Use the ExecuteStatement operation instead of the BatchExecuteStatement operation. Array parameters are not supported.
96
- */
97
- parameterSets?: SqlParameterSets;
98
90
  /**
99
91
  * The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.
100
92
  */
101
93
  resourceArn: Arn;
102
- /**
103
- * The name of the database schema.
104
- */
105
- schema?: DbName;
106
94
  /**
107
95
  * The ARN of the secret that enables access to the DB cluster. Enter the database user name and password for the credentials in the secret. For information about creating the secret, see Create a database secret.
108
96
  */
@@ -111,6 +99,18 @@ declare namespace RDSDataService {
111
99
  * The SQL statement to run. Don't include a semicolon (;) at the end of the SQL statement.
112
100
  */
113
101
  sql: SqlStatement;
102
+ /**
103
+ * The name of the database.
104
+ */
105
+ database?: DbName;
106
+ /**
107
+ * The name of the database schema.
108
+ */
109
+ schema?: DbName;
110
+ /**
111
+ * The parameter set for the batch operation. The SQL statement is executed as many times as the number of parameter sets provided. To execute a SQL statement with no parameters, use one of the following options: Specify one or more empty parameter sets. Use the ExecuteStatement operation instead of the BatchExecuteStatement operation. Array parameters are not supported.
112
+ */
113
+ parameterSets?: SqlParameterSets;
114
114
  /**
115
115
  * The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in. If the SQL statement is not part of a transaction, don't set this parameter.
116
116
  */
@@ -123,22 +123,22 @@ declare namespace RDSDataService {
123
123
  updateResults?: UpdateResults;
124
124
  }
125
125
  export interface BeginTransactionRequest {
126
- /**
127
- * The name of the database.
128
- */
129
- database?: DbName;
130
126
  /**
131
127
  * The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.
132
128
  */
133
129
  resourceArn: Arn;
134
- /**
135
- * The name of the database schema.
136
- */
137
- schema?: DbName;
138
130
  /**
139
131
  * The name or ARN of the secret that enables access to the DB cluster.
140
132
  */
141
133
  secretArn: Arn;
134
+ /**
135
+ * The name of the database.
136
+ */
137
+ database?: DbName;
138
+ /**
139
+ * The name of the database schema.
140
+ */
141
+ schema?: DbName;
142
142
  }
143
143
  export interface BeginTransactionResponse {
144
144
  /**
@@ -155,34 +155,46 @@ declare namespace RDSDataService {
155
155
  export type BoxedInteger = number;
156
156
  export type BoxedLong = number;
157
157
  export interface ColumnMetadata {
158
+ /**
159
+ * The name of the column.
160
+ */
161
+ name?: String;
158
162
  /**
159
163
  * The type of the column.
160
164
  */
161
- arrayBaseColumnType?: Integer;
165
+ type?: Integer;
162
166
  /**
163
- * A value that indicates whether the column increments automatically.
167
+ * The database-specific data type of the column.
164
168
  */
165
- isAutoIncrement?: Boolean;
169
+ typeName?: String;
166
170
  /**
167
- * A value that indicates whether the column is case-sensitive.
171
+ * The label for the column.
168
172
  */
169
- isCaseSensitive?: Boolean;
173
+ label?: String;
170
174
  /**
171
- * A value that indicates whether the column contains currency values.
175
+ * The name of the schema that owns the table that includes the column.
172
176
  */
173
- isCurrency?: Boolean;
177
+ schemaName?: String;
178
+ /**
179
+ * The name of the table that includes the column.
180
+ */
181
+ tableName?: String;
182
+ /**
183
+ * A value that indicates whether the column increments automatically.
184
+ */
185
+ isAutoIncrement?: Boolean;
174
186
  /**
175
187
  * A value that indicates whether an integer column is signed.
176
188
  */
177
189
  isSigned?: Boolean;
178
190
  /**
179
- * The label for the column.
191
+ * A value that indicates whether the column contains currency values.
180
192
  */
181
- label?: String;
193
+ isCurrency?: Boolean;
182
194
  /**
183
- * The name of the column.
195
+ * A value that indicates whether the column is case-sensitive.
184
196
  */
185
- name?: String;
197
+ isCaseSensitive?: Boolean;
186
198
  /**
187
199
  * A value that indicates whether the column is nullable.
188
200
  */
@@ -195,22 +207,10 @@ declare namespace RDSDataService {
195
207
  * The scale value of a decimal number column.
196
208
  */
197
209
  scale?: Integer;
198
- /**
199
- * The name of the schema that owns the table that includes the column.
200
- */
201
- schemaName?: String;
202
- /**
203
- * The name of the table that includes the column.
204
- */
205
- tableName?: String;
206
210
  /**
207
211
  * The type of the column.
208
212
  */
209
- type?: Integer;
210
- /**
211
- * The database-specific data type of the column.
212
- */
213
- typeName?: String;
213
+ arrayBaseColumnType?: Integer;
214
214
  }
215
215
  export interface CommitTransactionRequest {
216
216
  /**
@@ -236,26 +236,26 @@ declare namespace RDSDataService {
236
236
  export type DecimalReturnType = "STRING"|"DOUBLE_OR_LONG"|string;
237
237
  export type DoubleArray = BoxedDouble[];
238
238
  export interface ExecuteSqlRequest {
239
+ /**
240
+ * The ARN of the Aurora Serverless DB cluster.
241
+ */
242
+ dbClusterOrInstanceArn: Arn;
239
243
  /**
240
244
  * The Amazon Resource Name (ARN) of the secret that enables access to the DB cluster. Enter the database user name and password for the credentials in the secret. For information about creating the secret, see Create a database secret.
241
245
  */
242
246
  awsSecretStoreArn: Arn;
243
247
  /**
244
- * The name of the database.
248
+ * One or more SQL statements to run on the DB cluster. You can separate SQL statements from each other with a semicolon (;). Any valid SQL statement is permitted, including data definition, data manipulation, and commit statements.
245
249
  */
246
- database?: DbName;
250
+ sqlStatements: SqlStatement;
247
251
  /**
248
- * The ARN of the Aurora Serverless DB cluster.
252
+ * The name of the database.
249
253
  */
250
- dbClusterOrInstanceArn: Arn;
254
+ database?: DbName;
251
255
  /**
252
256
  * The name of the database schema.
253
257
  */
254
258
  schema?: DbName;
255
- /**
256
- * One or more SQL statements to run on the DB cluster. You can separate SQL statements from each other with a semicolon (;). Any valid SQL statement is permitted, including data definition, data manipulation, and commit statements.
257
- */
258
- sqlStatements: SqlStatement;
259
259
  }
260
260
  export interface ExecuteSqlResponse {
261
261
  /**
@@ -265,101 +265,101 @@ declare namespace RDSDataService {
265
265
  }
266
266
  export interface ExecuteStatementRequest {
267
267
  /**
268
- * A value that indicates whether to continue running the statement after the call times out. By default, the statement stops running when the call times out. For DDL statements, we recommend continuing to run the statement after the call times out. When a DDL statement terminates before it is finished running, it can result in errors and possibly corrupted data structures.
268
+ * The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.
269
269
  */
270
- continueAfterTimeout?: Boolean;
270
+ resourceArn: Arn;
271
271
  /**
272
- * The name of the database.
272
+ * The ARN of the secret that enables access to the DB cluster. Enter the database user name and password for the credentials in the secret. For information about creating the secret, see Create a database secret.
273
273
  */
274
- database?: DbName;
274
+ secretArn: Arn;
275
275
  /**
276
- * A value that indicates whether to format the result set as a single JSON string. This parameter only applies to SELECT statements and is ignored for other types of statements. Allowed values are NONE and JSON. The default value is NONE. The result is returned in the formattedRecords field. For usage information about the JSON format for result sets, see Using the Data API in the Amazon Aurora User Guide.
276
+ * The SQL statement to run.
277
277
  */
278
- formatRecordsAs?: RecordsFormatType;
278
+ sql: SqlStatement;
279
279
  /**
280
- * A value that indicates whether to include metadata in the results.
280
+ * The name of the database.
281
281
  */
282
- includeResultMetadata?: Boolean;
282
+ database?: DbName;
283
283
  /**
284
- * The parameters for the SQL statement. Array parameters are not supported.
284
+ * The name of the database schema. Currently, the schema parameter isn't supported.
285
285
  */
286
- parameters?: SqlParametersList;
286
+ schema?: DbName;
287
287
  /**
288
- * The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.
288
+ * The parameters for the SQL statement. Array parameters are not supported.
289
289
  */
290
- resourceArn: Arn;
290
+ parameters?: SqlParametersList;
291
291
  /**
292
- * Options that control how the result set is returned.
292
+ * The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in. If the SQL statement is not part of a transaction, don't set this parameter.
293
293
  */
294
- resultSetOptions?: ResultSetOptions;
294
+ transactionId?: Id;
295
295
  /**
296
- * The name of the database schema. Currently, the schema parameter isn't supported.
296
+ * A value that indicates whether to include metadata in the results.
297
297
  */
298
- schema?: DbName;
298
+ includeResultMetadata?: Boolean;
299
299
  /**
300
- * The ARN of the secret that enables access to the DB cluster. Enter the database user name and password for the credentials in the secret. For information about creating the secret, see Create a database secret.
300
+ * A value that indicates whether to continue running the statement after the call times out. By default, the statement stops running when the call times out. For DDL statements, we recommend continuing to run the statement after the call times out. When a DDL statement terminates before it is finished running, it can result in errors and possibly corrupted data structures.
301
301
  */
302
- secretArn: Arn;
302
+ continueAfterTimeout?: Boolean;
303
303
  /**
304
- * The SQL statement to run.
304
+ * Options that control how the result set is returned.
305
305
  */
306
- sql: SqlStatement;
306
+ resultSetOptions?: ResultSetOptions;
307
307
  /**
308
- * The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in. If the SQL statement is not part of a transaction, don't set this parameter.
308
+ * A value that indicates whether to format the result set as a single JSON string. This parameter only applies to SELECT statements and is ignored for other types of statements. Allowed values are NONE and JSON. The default value is NONE. The result is returned in the formattedRecords field. For usage information about the JSON format for result sets, see Using the Data API in the Amazon Aurora User Guide.
309
309
  */
310
- transactionId?: Id;
310
+ formatRecordsAs?: RecordsFormatType;
311
311
  }
312
312
  export interface ExecuteStatementResponse {
313
+ /**
314
+ * The records returned by the SQL statement. This field is blank if the formatRecordsAs parameter is set to JSON.
315
+ */
316
+ records?: SqlRecords;
313
317
  /**
314
318
  * Metadata for the columns included in the results. This field is blank if the formatRecordsAs parameter is set to JSON.
315
319
  */
316
320
  columnMetadata?: Metadata;
317
321
  /**
318
- * A string value that represents the result set of a SELECT statement in JSON format. This value is only present when the formatRecordsAs parameter is set to JSON. The size limit for this field is currently 10 MB. If the JSON-formatted string representing the result set requires more than 10 MB, the call returns an error.
322
+ * The number of records updated by the request.
319
323
  */
320
- formattedRecords?: FormattedSqlRecords;
324
+ numberOfRecordsUpdated?: RecordsUpdated;
321
325
  /**
322
326
  * Values for fields generated during a DML request. &lt;note&gt; &lt;p&gt;The &lt;code&gt;generatedFields&lt;/code&gt; data isn't supported by Aurora PostgreSQL. To get the values of generated fields, use the &lt;code&gt;RETURNING&lt;/code&gt; clause. For more information, see &lt;a href=&quot;https://www.postgresql.org/docs/10/dml-returning.html&quot;&gt;Returning Data From Modified Rows&lt;/a&gt; in the PostgreSQL documentation.&lt;/p&gt; &lt;/note&gt;
323
327
  */
324
328
  generatedFields?: FieldList;
325
329
  /**
326
- * The number of records updated by the request.
327
- */
328
- numberOfRecordsUpdated?: RecordsUpdated;
329
- /**
330
- * The records returned by the SQL statement. This field is blank if the formatRecordsAs parameter is set to JSON.
330
+ * A string value that represents the result set of a SELECT statement in JSON format. This value is only present when the formatRecordsAs parameter is set to JSON. The size limit for this field is currently 10 MB. If the JSON-formatted string representing the result set requires more than 10 MB, the call returns an error.
331
331
  */
332
- records?: SqlRecords;
332
+ formattedRecords?: FormattedSqlRecords;
333
333
  }
334
334
  export interface Field {
335
335
  /**
336
- * An array of values.
337
- */
338
- arrayValue?: ArrayValue;
339
- /**
340
- * A value of BLOB data type.
336
+ * A NULL value.
341
337
  */
342
- blobValue?: _Blob;
338
+ isNull?: BoxedBoolean;
343
339
  /**
344
340
  * A value of Boolean data type.
345
341
  */
346
342
  booleanValue?: BoxedBoolean;
343
+ /**
344
+ * A value of long data type.
345
+ */
346
+ longValue?: BoxedLong;
347
347
  /**
348
348
  * A value of double data type.
349
349
  */
350
350
  doubleValue?: BoxedDouble;
351
351
  /**
352
- * A NULL value.
352
+ * A value of string data type.
353
353
  */
354
- isNull?: BoxedBoolean;
354
+ stringValue?: String;
355
355
  /**
356
- * A value of long data type.
356
+ * A value of BLOB data type.
357
357
  */
358
- longValue?: BoxedLong;
358
+ blobValue?: _Blob;
359
359
  /**
360
- * A value of string data type.
360
+ * An array of values.
361
361
  */
362
- stringValue?: String;
362
+ arrayValue?: ArrayValue;
363
363
  }
364
364
  export type FieldList = Field[];
365
365
  export type FormattedSqlRecords = string;
@@ -380,14 +380,14 @@ declare namespace RDSDataService {
380
380
  export type RecordsFormatType = "NONE"|"JSON"|string;
381
381
  export type RecordsUpdated = number;
382
382
  export interface ResultFrame {
383
- /**
384
- * The records in the result set.
385
- */
386
- records?: Records;
387
383
  /**
388
384
  * The result-set metadata in the result set.
389
385
  */
390
386
  resultSetMetadata?: ResultSetMetadata;
387
+ /**
388
+ * The records in the result set.
389
+ */
390
+ records?: Records;
391
391
  }
392
392
  export interface ResultSetMetadata {
393
393
  /**
@@ -435,28 +435,28 @@ declare namespace RDSDataService {
435
435
  * The name of the parameter.
436
436
  */
437
437
  name?: ParameterName;
438
- /**
439
- * A hint that specifies the correct object type for data type mapping. Possible values are as follows: DATE - The corresponding String parameter value is sent as an object of DATE type to the database. The accepted format is YYYY-MM-DD. DECIMAL - The corresponding String parameter value is sent as an object of DECIMAL type to the database. JSON - The corresponding String parameter value is sent as an object of JSON type to the database. TIME - The corresponding String parameter value is sent as an object of TIME type to the database. The accepted format is HH:MM:SS[.FFF]. TIMESTAMP - The corresponding String parameter value is sent as an object of TIMESTAMP type to the database. The accepted format is YYYY-MM-DD HH:MM:SS[.FFF]. UUID - The corresponding String parameter value is sent as an object of UUID type to the database.
440
- */
441
- typeHint?: TypeHint;
442
438
  /**
443
439
  * The value of the parameter.
444
440
  */
445
441
  value?: Field;
442
+ /**
443
+ * A hint that specifies the correct object type for data type mapping. Possible values are as follows: DATE - The corresponding String parameter value is sent as an object of DATE type to the database. The accepted format is YYYY-MM-DD. DECIMAL - The corresponding String parameter value is sent as an object of DECIMAL type to the database. JSON - The corresponding String parameter value is sent as an object of JSON type to the database. TIME - The corresponding String parameter value is sent as an object of TIME type to the database. The accepted format is HH:MM:SS[.FFF]. TIMESTAMP - The corresponding String parameter value is sent as an object of TIMESTAMP type to the database. The accepted format is YYYY-MM-DD HH:MM:SS[.FFF]. UUID - The corresponding String parameter value is sent as an object of UUID type to the database.
444
+ */
445
+ typeHint?: TypeHint;
446
446
  }
447
447
  export type SqlParameterSets = SqlParametersList[];
448
448
  export type SqlParametersList = SqlParameter[];
449
449
  export type SqlRecords = FieldList[];
450
450
  export type SqlStatement = string;
451
451
  export interface SqlStatementResult {
452
- /**
453
- * The number of records updated by a SQL statement.
454
- */
455
- numberOfRecordsUpdated?: RecordsUpdated;
456
452
  /**
457
453
  * The result set of the SQL statement.
458
454
  */
459
455
  resultFrame?: ResultFrame;
456
+ /**
457
+ * The number of records updated by a SQL statement.
458
+ */
459
+ numberOfRecordsUpdated?: RecordsUpdated;
460
460
  }
461
461
  export type SqlStatementResults = SqlStatementResult[];
462
462
  export type String = string;
@@ -478,33 +478,25 @@ declare namespace RDSDataService {
478
478
  export type UpdateResults = UpdateResult[];
479
479
  export interface Value {
480
480
  /**
481
- * An array of column values.
482
- */
483
- arrayValues?: ArrayValueList;
484
- /**
485
- * A value for a column of big integer data type.
481
+ * A NULL value.
486
482
  */
487
- bigIntValue?: BoxedLong;
483
+ isNull?: BoxedBoolean;
488
484
  /**
489
485
  * A value for a column of BIT data type.
490
486
  */
491
487
  bitValue?: BoxedBoolean;
492
488
  /**
493
- * A value for a column of BLOB data type.
494
- */
495
- blobValue?: _Blob;
496
- /**
497
- * A value for a column of double data type.
489
+ * A value for a column of big integer data type.
498
490
  */
499
- doubleValue?: BoxedDouble;
491
+ bigIntValue?: BoxedLong;
500
492
  /**
501
493
  * A value for a column of integer data type.
502
494
  */
503
495
  intValue?: BoxedInteger;
504
496
  /**
505
- * A NULL value.
497
+ * A value for a column of double data type.
506
498
  */
507
- isNull?: BoxedBoolean;
499
+ doubleValue?: BoxedDouble;
508
500
  /**
509
501
  * A value for a column of real data type.
510
502
  */
@@ -513,6 +505,14 @@ declare namespace RDSDataService {
513
505
  * A value for a column of string data type.
514
506
  */
515
507
  stringValue?: String;
508
+ /**
509
+ * A value for a column of BLOB data type.
510
+ */
511
+ blobValue?: _Blob;
512
+ /**
513
+ * An array of column values.
514
+ */
515
+ arrayValues?: ArrayValueList;
516
516
  /**
517
517
  * A value for a column of STRUCT data type.
518
518
  */
@@ -2604,7 +2604,7 @@ declare namespace Route53 {
2604
2604
  */
2605
2605
  ResourceRecords?: ResourceRecords;
2606
2606
  /**
2607
- * Alias resource record sets only: Information about the Amazon Web Services resource, such as a CloudFront distribution or an Amazon S3 bucket, that you want to route traffic to. If you're creating resource records sets for a private hosted zone, note the following: You can't create an alias resource record set in a private hosted zone to route traffic to a CloudFront distribution. Creating geolocation alias resource record sets or latency alias resource record sets in a private hosted zone is unsupported. For information about creating failover resource record sets in a private hosted zone, see Configuring Failover in a Private Hosted Zone in the Amazon Route 53 Developer Guide.
2607
+ * Alias resource record sets only: Information about the Amazon Web Services resource, such as a CloudFront distribution or an Amazon S3 bucket, that you want to route traffic to. If you're creating resource records sets for a private hosted zone, note the following: You can't create an alias resource record set in a private hosted zone to route traffic to a CloudFront distribution. For information about creating failover resource record sets in a private hosted zone, see Configuring Failover in a Private Hosted Zone in the Amazon Route 53 Developer Guide.
2608
2608
  */
2609
2609
  AliasTarget?: AliasTarget;
2610
2610
  /**