cdk-comprehend-s3olap 2.0.9 → 2.0.10
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.
- package/.jsii +5 -5
- package/lib/cdk-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/aws-sdk/CHANGELOG.md +6 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/metadata.json +3 -0
- package/node_modules/aws-sdk/apis/redshift-data-2019-12-20.min.json +25 -16
- package/node_modules/aws-sdk/apis/redshiftserverless-2021-04-21.examples.json +5 -0
- package/node_modules/aws-sdk/apis/redshiftserverless-2021-04-21.min.json +1206 -0
- package/node_modules/aws-sdk/apis/redshiftserverless-2021-04-21.paginators.json +40 -0
- package/node_modules/aws-sdk/apis/securityhub-2018-10-26.min.json +841 -300
- package/node_modules/aws-sdk/clients/all.d.ts +1 -0
- package/node_modules/aws-sdk/clients/all.js +2 -1
- package/node_modules/aws-sdk/clients/redshiftdata.d.ts +51 -14
- package/node_modules/aws-sdk/clients/redshiftserverless.d.ts +1525 -0
- package/node_modules/aws-sdk/clients/redshiftserverless.js +18 -0
- package/node_modules/aws-sdk/clients/secretsmanager.d.ts +6 -6
- package/node_modules/aws-sdk/clients/securityhub.d.ts +1020 -19
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +43 -6
- package/node_modules/aws-sdk/dist/aws-sdk.js +6 -3
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +36 -36
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/node_modules/esbuild/install.js +4 -4
- package/node_modules/esbuild/lib/main.d.ts +2 -0
- package/node_modules/esbuild/lib/main.js +14 -10
- package/node_modules/esbuild/package.json +21 -21
- package/node_modules/esbuild-linux-64/bin/esbuild +0 -0
- package/node_modules/esbuild-linux-64/package.json +1 -1
- package/package.json +7 -7
@@ -306,3 +306,4 @@ export import Ivschat = require('./ivschat');
|
|
306
306
|
export import ChimeSDKMediaPipelines = require('./chimesdkmediapipelines');
|
307
307
|
export import EMRServerless = require('./emrserverless');
|
308
308
|
export import M2 = require('./m2');
|
309
|
+
export import RedshiftServerless = require('./redshiftserverless');
|
@@ -307,5 +307,6 @@ module.exports = {
|
|
307
307
|
Ivschat: require('./ivschat'),
|
308
308
|
ChimeSDKMediaPipelines: require('./chimesdkmediapipelines'),
|
309
309
|
EMRServerless: require('./emrserverless'),
|
310
|
-
M2: require('./m2')
|
310
|
+
M2: require('./m2'),
|
311
|
+
RedshiftServerless: require('./redshiftserverless')
|
311
312
|
};
|
@@ -12,11 +12,11 @@ declare class RedshiftData extends Service {
|
|
12
12
|
constructor(options?: RedshiftData.Types.ClientConfiguration)
|
13
13
|
config: Config & RedshiftData.Types.ClientConfiguration;
|
14
14
|
/**
|
15
|
-
* Runs one or more SQL statements, which can be data manipulation language (DML) or data definition language (DDL). Depending on the authorization method, use one of the following combinations of request parameters: Secrets Manager - when connecting to a cluster, specify the Amazon Resource Name (ARN) of the secret, the database name, and the cluster identifier that matches the cluster in the secret. When connecting to a serverless
|
15
|
+
* Runs one or more SQL statements, which can be data manipulation language (DML) or data definition language (DDL). Depending on the authorization method, use one of the following combinations of request parameters: Secrets Manager - when connecting to a cluster, specify the Amazon Resource Name (ARN) of the secret, the database name, and the cluster identifier that matches the cluster in the secret. When connecting to a serverless workgroup, specify the Amazon Resource Name (ARN) of the secret and the database name. Temporary credentials - when connecting to a cluster, specify the cluster identifier, the database name, and the database user name. Also, permission to call the redshift:GetClusterCredentials operation is required. When connecting to a serverless workgroup, specify the workgroup name and database name. Also, permission to call the redshift-serverless:GetCredentials operation is required.
|
16
16
|
*/
|
17
17
|
batchExecuteStatement(params: RedshiftData.Types.BatchExecuteStatementInput, callback?: (err: AWSError, data: RedshiftData.Types.BatchExecuteStatementOutput) => void): Request<RedshiftData.Types.BatchExecuteStatementOutput, AWSError>;
|
18
18
|
/**
|
19
|
-
* Runs one or more SQL statements, which can be data manipulation language (DML) or data definition language (DDL). Depending on the authorization method, use one of the following combinations of request parameters: Secrets Manager - when connecting to a cluster, specify the Amazon Resource Name (ARN) of the secret, the database name, and the cluster identifier that matches the cluster in the secret. When connecting to a serverless
|
19
|
+
* Runs one or more SQL statements, which can be data manipulation language (DML) or data definition language (DDL). Depending on the authorization method, use one of the following combinations of request parameters: Secrets Manager - when connecting to a cluster, specify the Amazon Resource Name (ARN) of the secret, the database name, and the cluster identifier that matches the cluster in the secret. When connecting to a serverless workgroup, specify the Amazon Resource Name (ARN) of the secret and the database name. Temporary credentials - when connecting to a cluster, specify the cluster identifier, the database name, and the database user name. Also, permission to call the redshift:GetClusterCredentials operation is required. When connecting to a serverless workgroup, specify the workgroup name and database name. Also, permission to call the redshift-serverless:GetCredentials operation is required.
|
20
20
|
*/
|
21
21
|
batchExecuteStatement(callback?: (err: AWSError, data: RedshiftData.Types.BatchExecuteStatementOutput) => void): Request<RedshiftData.Types.BatchExecuteStatementOutput, AWSError>;
|
22
22
|
/**
|
@@ -36,19 +36,19 @@ declare class RedshiftData extends Service {
|
|
36
36
|
*/
|
37
37
|
describeStatement(callback?: (err: AWSError, data: RedshiftData.Types.DescribeStatementResponse) => void): Request<RedshiftData.Types.DescribeStatementResponse, AWSError>;
|
38
38
|
/**
|
39
|
-
* Describes the detailed information about a table from metadata in the cluster. The information includes its columns. A token is returned to page through the column list. Depending on the authorization method, use one of the following combinations of request parameters: Secrets Manager - when connecting to a cluster, specify the Amazon Resource Name (ARN) of the secret, the database name, and the cluster identifier that matches the cluster in the secret. When connecting to a serverless
|
39
|
+
* Describes the detailed information about a table from metadata in the cluster. The information includes its columns. A token is returned to page through the column list. Depending on the authorization method, use one of the following combinations of request parameters: Secrets Manager - when connecting to a cluster, specify the Amazon Resource Name (ARN) of the secret, the database name, and the cluster identifier that matches the cluster in the secret. When connecting to a serverless workgroup, specify the Amazon Resource Name (ARN) of the secret and the database name. Temporary credentials - when connecting to a cluster, specify the cluster identifier, the database name, and the database user name. Also, permission to call the redshift:GetClusterCredentials operation is required. When connecting to a serverless workgroup, specify the workgroup name and database name. Also, permission to call the redshift-serverless:GetCredentials operation is required.
|
40
40
|
*/
|
41
41
|
describeTable(params: RedshiftData.Types.DescribeTableRequest, callback?: (err: AWSError, data: RedshiftData.Types.DescribeTableResponse) => void): Request<RedshiftData.Types.DescribeTableResponse, AWSError>;
|
42
42
|
/**
|
43
|
-
* Describes the detailed information about a table from metadata in the cluster. The information includes its columns. A token is returned to page through the column list. Depending on the authorization method, use one of the following combinations of request parameters: Secrets Manager - when connecting to a cluster, specify the Amazon Resource Name (ARN) of the secret, the database name, and the cluster identifier that matches the cluster in the secret. When connecting to a serverless
|
43
|
+
* Describes the detailed information about a table from metadata in the cluster. The information includes its columns. A token is returned to page through the column list. Depending on the authorization method, use one of the following combinations of request parameters: Secrets Manager - when connecting to a cluster, specify the Amazon Resource Name (ARN) of the secret, the database name, and the cluster identifier that matches the cluster in the secret. When connecting to a serverless workgroup, specify the Amazon Resource Name (ARN) of the secret and the database name. Temporary credentials - when connecting to a cluster, specify the cluster identifier, the database name, and the database user name. Also, permission to call the redshift:GetClusterCredentials operation is required. When connecting to a serverless workgroup, specify the workgroup name and database name. Also, permission to call the redshift-serverless:GetCredentials operation is required.
|
44
44
|
*/
|
45
45
|
describeTable(callback?: (err: AWSError, data: RedshiftData.Types.DescribeTableResponse) => void): Request<RedshiftData.Types.DescribeTableResponse, AWSError>;
|
46
46
|
/**
|
47
|
-
* Runs an SQL statement, which can be data manipulation language (DML) or data definition language (DDL). This statement must be a single SQL statement. Depending on the authorization method, use one of the following combinations of request parameters: Secrets Manager - when connecting to a cluster, specify the Amazon Resource Name (ARN) of the secret, the database name, and the cluster identifier that matches the cluster in the secret. When connecting to a serverless
|
47
|
+
* Runs an SQL statement, which can be data manipulation language (DML) or data definition language (DDL). This statement must be a single SQL statement. Depending on the authorization method, use one of the following combinations of request parameters: Secrets Manager - when connecting to a cluster, specify the Amazon Resource Name (ARN) of the secret, the database name, and the cluster identifier that matches the cluster in the secret. When connecting to a serverless workgroup, specify the Amazon Resource Name (ARN) of the secret and the database name. Temporary credentials - when connecting to a cluster, specify the cluster identifier, the database name, and the database user name. Also, permission to call the redshift:GetClusterCredentials operation is required. When connecting to a serverless workgroup, specify the workgroup name and database name. Also, permission to call the redshift-serverless:GetCredentials operation is required.
|
48
48
|
*/
|
49
49
|
executeStatement(params: RedshiftData.Types.ExecuteStatementInput, callback?: (err: AWSError, data: RedshiftData.Types.ExecuteStatementOutput) => void): Request<RedshiftData.Types.ExecuteStatementOutput, AWSError>;
|
50
50
|
/**
|
51
|
-
* Runs an SQL statement, which can be data manipulation language (DML) or data definition language (DDL). This statement must be a single SQL statement. Depending on the authorization method, use one of the following combinations of request parameters: Secrets Manager - when connecting to a cluster, specify the Amazon Resource Name (ARN) of the secret, the database name, and the cluster identifier that matches the cluster in the secret. When connecting to a serverless
|
51
|
+
* Runs an SQL statement, which can be data manipulation language (DML) or data definition language (DDL). This statement must be a single SQL statement. Depending on the authorization method, use one of the following combinations of request parameters: Secrets Manager - when connecting to a cluster, specify the Amazon Resource Name (ARN) of the secret, the database name, and the cluster identifier that matches the cluster in the secret. When connecting to a serverless workgroup, specify the Amazon Resource Name (ARN) of the secret and the database name. Temporary credentials - when connecting to a cluster, specify the cluster identifier, the database name, and the database user name. Also, permission to call the redshift:GetClusterCredentials operation is required. When connecting to a serverless workgroup, specify the workgroup name and database name. Also, permission to call the redshift-serverless:GetCredentials operation is required.
|
52
52
|
*/
|
53
53
|
executeStatement(callback?: (err: AWSError, data: RedshiftData.Types.ExecuteStatementOutput) => void): Request<RedshiftData.Types.ExecuteStatementOutput, AWSError>;
|
54
54
|
/**
|
@@ -60,19 +60,19 @@ declare class RedshiftData extends Service {
|
|
60
60
|
*/
|
61
61
|
getStatementResult(callback?: (err: AWSError, data: RedshiftData.Types.GetStatementResultResponse) => void): Request<RedshiftData.Types.GetStatementResultResponse, AWSError>;
|
62
62
|
/**
|
63
|
-
* List the databases in a cluster. A token is returned to page through the database list. Depending on the authorization method, use one of the following combinations of request parameters: Secrets Manager - when connecting to a cluster, specify the Amazon Resource Name (ARN) of the secret, the database name, and the cluster identifier that matches the cluster in the secret. When connecting to a serverless
|
63
|
+
* List the databases in a cluster. A token is returned to page through the database list. Depending on the authorization method, use one of the following combinations of request parameters: Secrets Manager - when connecting to a cluster, specify the Amazon Resource Name (ARN) of the secret, the database name, and the cluster identifier that matches the cluster in the secret. When connecting to a serverless workgroup, specify the Amazon Resource Name (ARN) of the secret and the database name. Temporary credentials - when connecting to a cluster, specify the cluster identifier, the database name, and the database user name. Also, permission to call the redshift:GetClusterCredentials operation is required. When connecting to a serverless workgroup, specify the workgroup name and database name. Also, permission to call the redshift-serverless:GetCredentials operation is required.
|
64
64
|
*/
|
65
65
|
listDatabases(params: RedshiftData.Types.ListDatabasesRequest, callback?: (err: AWSError, data: RedshiftData.Types.ListDatabasesResponse) => void): Request<RedshiftData.Types.ListDatabasesResponse, AWSError>;
|
66
66
|
/**
|
67
|
-
* List the databases in a cluster. A token is returned to page through the database list. Depending on the authorization method, use one of the following combinations of request parameters: Secrets Manager - when connecting to a cluster, specify the Amazon Resource Name (ARN) of the secret, the database name, and the cluster identifier that matches the cluster in the secret. When connecting to a serverless
|
67
|
+
* List the databases in a cluster. A token is returned to page through the database list. Depending on the authorization method, use one of the following combinations of request parameters: Secrets Manager - when connecting to a cluster, specify the Amazon Resource Name (ARN) of the secret, the database name, and the cluster identifier that matches the cluster in the secret. When connecting to a serverless workgroup, specify the Amazon Resource Name (ARN) of the secret and the database name. Temporary credentials - when connecting to a cluster, specify the cluster identifier, the database name, and the database user name. Also, permission to call the redshift:GetClusterCredentials operation is required. When connecting to a serverless workgroup, specify the workgroup name and database name. Also, permission to call the redshift-serverless:GetCredentials operation is required.
|
68
68
|
*/
|
69
69
|
listDatabases(callback?: (err: AWSError, data: RedshiftData.Types.ListDatabasesResponse) => void): Request<RedshiftData.Types.ListDatabasesResponse, AWSError>;
|
70
70
|
/**
|
71
|
-
* Lists the schemas in a database. A token is returned to page through the schema list. Depending on the authorization method, use one of the following combinations of request parameters: Secrets Manager - when connecting to a cluster, specify the Amazon Resource Name (ARN) of the secret, the database name, and the cluster identifier that matches the cluster in the secret. When connecting to a serverless
|
71
|
+
* Lists the schemas in a database. A token is returned to page through the schema list. Depending on the authorization method, use one of the following combinations of request parameters: Secrets Manager - when connecting to a cluster, specify the Amazon Resource Name (ARN) of the secret, the database name, and the cluster identifier that matches the cluster in the secret. When connecting to a serverless workgroup, specify the Amazon Resource Name (ARN) of the secret and the database name. Temporary credentials - when connecting to a cluster, specify the cluster identifier, the database name, and the database user name. Also, permission to call the redshift:GetClusterCredentials operation is required. When connecting to a serverless workgroup, specify the workgroup name and database name. Also, permission to call the redshift-serverless:GetCredentials operation is required.
|
72
72
|
*/
|
73
73
|
listSchemas(params: RedshiftData.Types.ListSchemasRequest, callback?: (err: AWSError, data: RedshiftData.Types.ListSchemasResponse) => void): Request<RedshiftData.Types.ListSchemasResponse, AWSError>;
|
74
74
|
/**
|
75
|
-
* Lists the schemas in a database. A token is returned to page through the schema list. Depending on the authorization method, use one of the following combinations of request parameters: Secrets Manager - when connecting to a cluster, specify the Amazon Resource Name (ARN) of the secret, the database name, and the cluster identifier that matches the cluster in the secret. When connecting to a serverless
|
75
|
+
* Lists the schemas in a database. A token is returned to page through the schema list. Depending on the authorization method, use one of the following combinations of request parameters: Secrets Manager - when connecting to a cluster, specify the Amazon Resource Name (ARN) of the secret, the database name, and the cluster identifier that matches the cluster in the secret. When connecting to a serverless workgroup, specify the Amazon Resource Name (ARN) of the secret and the database name. Temporary credentials - when connecting to a cluster, specify the cluster identifier, the database name, and the database user name. Also, permission to call the redshift:GetClusterCredentials operation is required. When connecting to a serverless workgroup, specify the workgroup name and database name. Also, permission to call the redshift-serverless:GetCredentials operation is required.
|
76
76
|
*/
|
77
77
|
listSchemas(callback?: (err: AWSError, data: RedshiftData.Types.ListSchemasResponse) => void): Request<RedshiftData.Types.ListSchemasResponse, AWSError>;
|
78
78
|
/**
|
@@ -84,11 +84,11 @@ declare class RedshiftData extends Service {
|
|
84
84
|
*/
|
85
85
|
listStatements(callback?: (err: AWSError, data: RedshiftData.Types.ListStatementsResponse) => void): Request<RedshiftData.Types.ListStatementsResponse, AWSError>;
|
86
86
|
/**
|
87
|
-
* List the tables in a database. If neither SchemaPattern nor TablePattern are specified, then all tables in the database are returned. A token is returned to page through the table list. Depending on the authorization method, use one of the following combinations of request parameters: Secrets Manager - when connecting to a cluster, specify the Amazon Resource Name (ARN) of the secret, the database name, and the cluster identifier that matches the cluster in the secret. When connecting to a serverless
|
87
|
+
* List the tables in a database. If neither SchemaPattern nor TablePattern are specified, then all tables in the database are returned. A token is returned to page through the table list. Depending on the authorization method, use one of the following combinations of request parameters: Secrets Manager - when connecting to a cluster, specify the Amazon Resource Name (ARN) of the secret, the database name, and the cluster identifier that matches the cluster in the secret. When connecting to a serverless workgroup, specify the Amazon Resource Name (ARN) of the secret and the database name. Temporary credentials - when connecting to a cluster, specify the cluster identifier, the database name, and the database user name. Also, permission to call the redshift:GetClusterCredentials operation is required. When connecting to a serverless workgroup, specify the workgroup name and database name. Also, permission to call the redshift-serverless:GetCredentials operation is required.
|
88
88
|
*/
|
89
89
|
listTables(params: RedshiftData.Types.ListTablesRequest, callback?: (err: AWSError, data: RedshiftData.Types.ListTablesResponse) => void): Request<RedshiftData.Types.ListTablesResponse, AWSError>;
|
90
90
|
/**
|
91
|
-
* List the tables in a database. If neither SchemaPattern nor TablePattern are specified, then all tables in the database are returned. A token is returned to page through the table list. Depending on the authorization method, use one of the following combinations of request parameters: Secrets Manager - when connecting to a cluster, specify the Amazon Resource Name (ARN) of the secret, the database name, and the cluster identifier that matches the cluster in the secret. When connecting to a serverless
|
91
|
+
* List the tables in a database. If neither SchemaPattern nor TablePattern are specified, then all tables in the database are returned. A token is returned to page through the table list. Depending on the authorization method, use one of the following combinations of request parameters: Secrets Manager - when connecting to a cluster, specify the Amazon Resource Name (ARN) of the secret, the database name, and the cluster identifier that matches the cluster in the secret. When connecting to a serverless workgroup, specify the Amazon Resource Name (ARN) of the secret and the database name. Temporary credentials - when connecting to a cluster, specify the cluster identifier, the database name, and the database user name. Also, permission to call the redshift:GetClusterCredentials operation is required. When connecting to a serverless workgroup, specify the workgroup name and database name. Also, permission to call the redshift-serverless:GetCredentials operation is required.
|
92
92
|
*/
|
93
93
|
listTables(callback?: (err: AWSError, data: RedshiftData.Types.ListTablesResponse) => void): Request<RedshiftData.Types.ListTablesResponse, AWSError>;
|
94
94
|
}
|
@@ -122,10 +122,14 @@ declare namespace RedshiftData {
|
|
122
122
|
* A value that indicates whether to send an event to the Amazon EventBridge event bus after the SQL statements run.
|
123
123
|
*/
|
124
124
|
WithEvent?: Boolean;
|
125
|
+
/**
|
126
|
+
* The serverless workgroup name. This parameter is required when connecting to a serverless workgroup and authenticating using either Secrets Manager or temporary credentials.
|
127
|
+
*/
|
128
|
+
WorkgroupName?: WorkgroupNameString;
|
125
129
|
}
|
126
130
|
export interface BatchExecuteStatementOutput {
|
127
131
|
/**
|
128
|
-
* The cluster identifier. This
|
132
|
+
* The cluster identifier. This element is not returned when connecting to a serverless workgroup.
|
129
133
|
*/
|
130
134
|
ClusterIdentifier?: Location;
|
131
135
|
/**
|
@@ -148,6 +152,10 @@ declare namespace RedshiftData {
|
|
148
152
|
* The name or ARN of the secret that enables access to the database.
|
149
153
|
*/
|
150
154
|
SecretArn?: SecretArn;
|
155
|
+
/**
|
156
|
+
* The serverless workgroup name. This element is not returned when connecting to a provisioned cluster.
|
157
|
+
*/
|
158
|
+
WorkgroupName?: WorkgroupNameString;
|
151
159
|
}
|
152
160
|
export type _Blob = Buffer|Uint8Array|Blob|string;
|
153
161
|
export type Boolean = boolean;
|
@@ -302,6 +310,10 @@ declare namespace RedshiftData {
|
|
302
310
|
* The date and time (UTC) that the metadata for the SQL statement was last updated. An example is the time the status last changed.
|
303
311
|
*/
|
304
312
|
UpdatedAt?: Timestamp;
|
313
|
+
/**
|
314
|
+
* The serverless workgroup name.
|
315
|
+
*/
|
316
|
+
WorkgroupName?: WorkgroupNameString;
|
305
317
|
}
|
306
318
|
export interface DescribeTableRequest {
|
307
319
|
/**
|
@@ -340,6 +352,10 @@ declare namespace RedshiftData {
|
|
340
352
|
* The table name. If no table is specified, then all tables for all matching schemas are returned. If no table and no schema is specified, then all tables for all schemas in the database are returned
|
341
353
|
*/
|
342
354
|
Table?: String;
|
355
|
+
/**
|
356
|
+
* The serverless workgroup name. This parameter is required when connecting to a serverless workgroup and authenticating using either Secrets Manager or temporary credentials.
|
357
|
+
*/
|
358
|
+
WorkgroupName?: WorkgroupNameString;
|
343
359
|
}
|
344
360
|
export interface DescribeTableResponse {
|
345
361
|
/**
|
@@ -388,10 +404,14 @@ declare namespace RedshiftData {
|
|
388
404
|
* A value that indicates whether to send an event to the Amazon EventBridge event bus after the SQL statement runs.
|
389
405
|
*/
|
390
406
|
WithEvent?: Boolean;
|
407
|
+
/**
|
408
|
+
* The serverless workgroup name. This parameter is required when connecting to a serverless workgroup and authenticating using either Secrets Manager or temporary credentials.
|
409
|
+
*/
|
410
|
+
WorkgroupName?: WorkgroupNameString;
|
391
411
|
}
|
392
412
|
export interface ExecuteStatementOutput {
|
393
413
|
/**
|
394
|
-
* The cluster identifier. This
|
414
|
+
* The cluster identifier. This element is not returned when connecting to a serverless workgroup.
|
395
415
|
*/
|
396
416
|
ClusterIdentifier?: Location;
|
397
417
|
/**
|
@@ -414,6 +434,10 @@ declare namespace RedshiftData {
|
|
414
434
|
* The name or ARN of the secret that enables access to the database.
|
415
435
|
*/
|
416
436
|
SecretArn?: SecretArn;
|
437
|
+
/**
|
438
|
+
* The serverless workgroup name. This element is not returned when connecting to a provisioned cluster.
|
439
|
+
*/
|
440
|
+
WorkgroupName?: WorkgroupNameString;
|
417
441
|
}
|
418
442
|
export interface Field {
|
419
443
|
/**
|
@@ -496,6 +520,10 @@ declare namespace RedshiftData {
|
|
496
520
|
* The name or ARN of the secret that enables access to the database. This parameter is required when authenticating using Secrets Manager.
|
497
521
|
*/
|
498
522
|
SecretArn?: SecretArn;
|
523
|
+
/**
|
524
|
+
* The serverless workgroup name. This parameter is required when connecting to a serverless workgroup and authenticating using either Secrets Manager or temporary credentials.
|
525
|
+
*/
|
526
|
+
WorkgroupName?: WorkgroupNameString;
|
499
527
|
}
|
500
528
|
export interface ListDatabasesResponse {
|
501
529
|
/**
|
@@ -540,6 +568,10 @@ declare namespace RedshiftData {
|
|
540
568
|
* The name or ARN of the secret that enables access to the database. This parameter is required when authenticating using Secrets Manager.
|
541
569
|
*/
|
542
570
|
SecretArn?: SecretArn;
|
571
|
+
/**
|
572
|
+
* The serverless workgroup name. This parameter is required when connecting to a serverless workgroup and authenticating using either Secrets Manager or temporary credentials.
|
573
|
+
*/
|
574
|
+
WorkgroupName?: WorkgroupNameString;
|
543
575
|
}
|
544
576
|
export interface ListSchemasResponse {
|
545
577
|
/**
|
@@ -621,6 +653,10 @@ declare namespace RedshiftData {
|
|
621
653
|
* A pattern to filter results by table name. Within a table pattern, "%" means match any substring of 0 or more characters and "_" means match any one character. Only table name entries matching the search pattern are returned. If TablePattern is not specified, then all tables that match SchemaPatternare returned. If neither SchemaPattern or TablePattern are specified, then all tables are returned.
|
622
654
|
*/
|
623
655
|
TablePattern?: String;
|
656
|
+
/**
|
657
|
+
* The serverless workgroup name. This parameter is required when connecting to a serverless workgroup and authenticating using either Secrets Manager or temporary credentials.
|
658
|
+
*/
|
659
|
+
WorkgroupName?: WorkgroupNameString;
|
624
660
|
}
|
625
661
|
export interface ListTablesResponse {
|
626
662
|
/**
|
@@ -765,6 +801,7 @@ declare namespace RedshiftData {
|
|
765
801
|
type?: String;
|
766
802
|
}
|
767
803
|
export type Timestamp = Date;
|
804
|
+
export type WorkgroupNameString = string;
|
768
805
|
export type bool = boolean;
|
769
806
|
/**
|
770
807
|
* 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.
|