@awboost/cfn-resource-types 0.1.73 → 0.1.74
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/lib/AWS-Bedrock-GuardrailVersion.d.ts +52 -0
- package/lib/AWS-Bedrock-GuardrailVersion.js +12 -0
- package/lib/AWS-Budgets-BudgetsAction.d.ts +9 -0
- package/lib/AWS-EC2-LaunchTemplate.d.ts +1 -1
- package/lib/AWS-KMS-Alias.d.ts +18 -2
- package/lib/AWS-KMS-Alias.js +9 -1
- package/lib/AWS-QuickSight-DataSet.d.ts +208 -137
- package/lib/AWS-QuickSight-DataSource.d.ts +89 -71
- package/lib/AWS-QuickSight-VPCConnection.d.ts +44 -2
- package/package.json +1 -1
|
@@ -42,29 +42,26 @@ export type QuickSightDataSourceProperties = {
|
|
|
42
42
|
*/
|
|
43
43
|
ErrorInfo?: DataSourceErrorInfo;
|
|
44
44
|
/**
|
|
45
|
-
* <p>A display name for the data source.</p>
|
|
46
45
|
* @minLength `1`
|
|
47
46
|
* @maxLength `128`
|
|
48
47
|
*/
|
|
49
|
-
Name
|
|
48
|
+
Name: string;
|
|
50
49
|
/**
|
|
51
|
-
* <p>A list of resource permissions on the data source.</p>
|
|
52
50
|
* @minLength `1`
|
|
53
51
|
* @maxLength `64`
|
|
54
52
|
*/
|
|
55
53
|
Permissions?: ResourcePermission[];
|
|
56
54
|
/**
|
|
57
|
-
* <p>Secure Socket Layer (SSL) properties that apply when QuickSight connects to your
|
|
55
|
+
* <p>Secure Socket Layer (SSL) properties that apply when Amazon QuickSight connects to your
|
|
58
56
|
underlying data source.</p>
|
|
59
57
|
*/
|
|
60
58
|
SslProperties?: SslProperties;
|
|
61
59
|
/**
|
|
62
|
-
* <p>Contains a map of the key-value pairs for the resource tag or tags assigned to the data source.</p>
|
|
63
60
|
* @minLength `1`
|
|
64
61
|
* @maxLength `200`
|
|
65
62
|
*/
|
|
66
63
|
Tags?: Tag[];
|
|
67
|
-
Type
|
|
64
|
+
Type: DataSourceType;
|
|
68
65
|
/**
|
|
69
66
|
* <p>VPC connection properties.</p>
|
|
70
67
|
*/
|
|
@@ -91,12 +88,12 @@ export type QuickSightDataSourceAttributes = {
|
|
|
91
88
|
};
|
|
92
89
|
/**
|
|
93
90
|
* Type definition for `AWS::QuickSight::DataSource.AmazonElasticsearchParameters`.
|
|
94
|
-
* <p>
|
|
91
|
+
* <p>The parameters for OpenSearch.</p>
|
|
95
92
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-amazonelasticsearchparameters.html}
|
|
96
93
|
*/
|
|
97
94
|
export type AmazonElasticsearchParameters = {
|
|
98
95
|
/**
|
|
99
|
-
* <p>The
|
|
96
|
+
* <p>The OpenSearch domain.</p>
|
|
100
97
|
* @minLength `1`
|
|
101
98
|
* @maxLength `64`
|
|
102
99
|
*/
|
|
@@ -104,12 +101,12 @@ export type AmazonElasticsearchParameters = {
|
|
|
104
101
|
};
|
|
105
102
|
/**
|
|
106
103
|
* Type definition for `AWS::QuickSight::DataSource.AmazonOpenSearchParameters`.
|
|
107
|
-
* <p>
|
|
104
|
+
* <p>The parameters for OpenSearch.</p>
|
|
108
105
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-amazonopensearchparameters.html}
|
|
109
106
|
*/
|
|
110
107
|
export type AmazonOpenSearchParameters = {
|
|
111
108
|
/**
|
|
112
|
-
* <p>The
|
|
109
|
+
* <p>The OpenSearch domain.</p>
|
|
113
110
|
* @minLength `1`
|
|
114
111
|
* @maxLength `64`
|
|
115
112
|
*/
|
|
@@ -117,7 +114,7 @@ export type AmazonOpenSearchParameters = {
|
|
|
117
114
|
};
|
|
118
115
|
/**
|
|
119
116
|
* Type definition for `AWS::QuickSight::DataSource.AthenaParameters`.
|
|
120
|
-
* <p>Amazon Athena
|
|
117
|
+
* <p>Parameters for Amazon Athena.</p>
|
|
121
118
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-athenaparameters.html}
|
|
122
119
|
*/
|
|
123
120
|
export type AthenaParameters = {
|
|
@@ -136,7 +133,7 @@ export type AthenaParameters = {
|
|
|
136
133
|
};
|
|
137
134
|
/**
|
|
138
135
|
* Type definition for `AWS::QuickSight::DataSource.AuroraParameters`.
|
|
139
|
-
* <p>Amazon Aurora
|
|
136
|
+
* <p>Parameters for Amazon Aurora.</p>
|
|
140
137
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-auroraparameters.html}
|
|
141
138
|
*/
|
|
142
139
|
export type AuroraParameters = {
|
|
@@ -161,24 +158,24 @@ export type AuroraParameters = {
|
|
|
161
158
|
};
|
|
162
159
|
/**
|
|
163
160
|
* Type definition for `AWS::QuickSight::DataSource.AuroraPostgreSqlParameters`.
|
|
164
|
-
* <p>Amazon Aurora
|
|
161
|
+
* <p>Parameters for Amazon Aurora PostgreSQL-Compatible Edition.</p>
|
|
165
162
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-aurorapostgresqlparameters.html}
|
|
166
163
|
*/
|
|
167
164
|
export type AuroraPostgreSqlParameters = {
|
|
168
165
|
/**
|
|
169
|
-
* <p>
|
|
166
|
+
* <p>The Amazon Aurora PostgreSQL database to connect to.</p>
|
|
170
167
|
* @minLength `1`
|
|
171
168
|
* @maxLength `128`
|
|
172
169
|
*/
|
|
173
170
|
Database: string;
|
|
174
171
|
/**
|
|
175
|
-
* <p>
|
|
172
|
+
* <p>The Amazon Aurora PostgreSQL-Compatible host to connect to.</p>
|
|
176
173
|
* @minLength `1`
|
|
177
174
|
* @maxLength `256`
|
|
178
175
|
*/
|
|
179
176
|
Host: string;
|
|
180
177
|
/**
|
|
181
|
-
* <p>
|
|
178
|
+
* <p>The port that Amazon Aurora PostgreSQL is listening on.</p>
|
|
182
179
|
* @min `1`
|
|
183
180
|
* @max `65535`
|
|
184
181
|
*/
|
|
@@ -219,24 +216,24 @@ export type CredentialPair = {
|
|
|
219
216
|
};
|
|
220
217
|
/**
|
|
221
218
|
* Type definition for `AWS::QuickSight::DataSource.DatabricksParameters`.
|
|
222
|
-
* <p>Databricks
|
|
219
|
+
* <p>The parameters that are required to connect to a Databricks data source.</p>
|
|
223
220
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-databricksparameters.html}
|
|
224
221
|
*/
|
|
225
222
|
export type DatabricksParameters = {
|
|
226
223
|
/**
|
|
227
|
-
* <p>
|
|
224
|
+
* <p>The host name of the Databricks data source.</p>
|
|
228
225
|
* @minLength `1`
|
|
229
226
|
* @maxLength `256`
|
|
230
227
|
*/
|
|
231
228
|
Host: string;
|
|
232
229
|
/**
|
|
233
|
-
* <p>
|
|
230
|
+
* <p>The port for the Databricks data source.</p>
|
|
234
231
|
* @min `1`
|
|
235
232
|
* @max `65535`
|
|
236
233
|
*/
|
|
237
234
|
Port: number;
|
|
238
235
|
/**
|
|
239
|
-
* <p>The HTTP
|
|
236
|
+
* <p>The HTTP path of the Databricks data source.</p>
|
|
240
237
|
* @minLength `1`
|
|
241
238
|
* @maxLength `4096`
|
|
242
239
|
*/
|
|
@@ -254,7 +251,7 @@ export type DataSourceCredentials = {
|
|
|
254
251
|
want to use. When <code>CopySourceArn</code> is not null, the credential pair from the
|
|
255
252
|
data source in the ARN is used as the credentials for the
|
|
256
253
|
<code>DataSourceCredentials</code> structure.</p>
|
|
257
|
-
* @pattern `^arn:[-a-z0-9]*:quicksight:[-a-z0-9]*:[0-9]{12}:datasource
|
|
254
|
+
* @pattern `^arn:[-a-z0-9]*:quicksight:[-a-z0-9]*:[0-9]{12}:datasource/.+$`
|
|
258
255
|
*/
|
|
259
256
|
CopySourceArn?: string;
|
|
260
257
|
/**
|
|
@@ -265,7 +262,7 @@ export type DataSourceCredentials = {
|
|
|
265
262
|
* <p>The Amazon Resource Name (ARN) of the secret associated with the data source in Amazon Secrets Manager.</p>
|
|
266
263
|
* @minLength `1`
|
|
267
264
|
* @maxLength `2048`
|
|
268
|
-
* @pattern `^arn:[-a-z0-9]*:secretsmanager:[-a-z0-9]*:[0-9]{12}:secret
|
|
265
|
+
* @pattern `^arn:[-a-z0-9]*:secretsmanager:[-a-z0-9]*:[0-9]{12}:secret:.+$`
|
|
269
266
|
*/
|
|
270
267
|
SecretArn?: string;
|
|
271
268
|
};
|
|
@@ -295,82 +292,84 @@ export type DataSourceErrorInfoType = "ACCESS_DENIED" | "COPY_SOURCE_NOT_FOUND"
|
|
|
295
292
|
*/
|
|
296
293
|
export type DataSourceParameters = {
|
|
297
294
|
/**
|
|
298
|
-
* <p>
|
|
295
|
+
* <p>The parameters for OpenSearch.</p>
|
|
299
296
|
*/
|
|
300
297
|
AmazonElasticsearchParameters?: AmazonElasticsearchParameters;
|
|
301
298
|
/**
|
|
302
|
-
* <p>
|
|
299
|
+
* <p>The parameters for OpenSearch.</p>
|
|
303
300
|
*/
|
|
304
301
|
AmazonOpenSearchParameters?: AmazonOpenSearchParameters;
|
|
305
302
|
/**
|
|
306
|
-
* <p>Amazon Athena
|
|
303
|
+
* <p>Parameters for Amazon Athena.</p>
|
|
307
304
|
*/
|
|
308
305
|
AthenaParameters?: AthenaParameters;
|
|
309
306
|
/**
|
|
310
|
-
* <p>Amazon Aurora
|
|
307
|
+
* <p>Parameters for Amazon Aurora.</p>
|
|
311
308
|
*/
|
|
312
309
|
AuroraParameters?: AuroraParameters;
|
|
313
310
|
/**
|
|
314
|
-
* <p>Amazon Aurora
|
|
311
|
+
* <p>Parameters for Amazon Aurora PostgreSQL-Compatible Edition.</p>
|
|
315
312
|
*/
|
|
316
313
|
AuroraPostgreSqlParameters?: AuroraPostgreSqlParameters;
|
|
317
314
|
/**
|
|
318
|
-
* <p>Databricks
|
|
315
|
+
* <p>The parameters that are required to connect to a Databricks data source.</p>
|
|
319
316
|
*/
|
|
320
317
|
DatabricksParameters?: DatabricksParameters;
|
|
321
318
|
/**
|
|
322
|
-
* <p>
|
|
319
|
+
* <p>The parameters for MariaDB.</p>
|
|
323
320
|
*/
|
|
324
321
|
MariaDbParameters?: MariaDbParameters;
|
|
325
322
|
/**
|
|
326
|
-
* <p>
|
|
323
|
+
* <p>The parameters for MySQL.</p>
|
|
327
324
|
*/
|
|
328
325
|
MySqlParameters?: MySqlParameters;
|
|
326
|
+
/**
|
|
327
|
+
* <p>The parameters for Oracle.</p>
|
|
328
|
+
*/
|
|
329
329
|
OracleParameters?: OracleParameters;
|
|
330
330
|
/**
|
|
331
|
-
* <p>
|
|
331
|
+
* <p>The parameters for PostgreSQL.</p>
|
|
332
332
|
*/
|
|
333
333
|
PostgreSqlParameters?: PostgreSqlParameters;
|
|
334
334
|
/**
|
|
335
|
-
* <p>
|
|
335
|
+
* <p>The parameters for Presto.</p>
|
|
336
336
|
*/
|
|
337
337
|
PrestoParameters?: PrestoParameters;
|
|
338
338
|
/**
|
|
339
|
-
* <p>Amazon RDS
|
|
339
|
+
* <p>The parameters for Amazon RDS.</p>
|
|
340
340
|
*/
|
|
341
341
|
RdsParameters?: RdsParameters;
|
|
342
342
|
/**
|
|
343
|
-
* <p>Amazon Redshift
|
|
344
|
-
<code>Host</code> and <code>Port</code> are both set. The <code>Host</code> and
|
|
345
|
-
<code>Port</code> fields can be blank if the <code>ClusterId</code> field is set.</p>
|
|
343
|
+
* <p>The parameters for Amazon Redshift. The <code>ClusterId</code> field can be blank if
|
|
344
|
+
<code>Host</code> and <code>Port</code> are both set. The <code>Host</code> and <code>Port</code> fields can be blank if the <code>ClusterId</code> field is set.</p>
|
|
346
345
|
*/
|
|
347
346
|
RedshiftParameters?: RedshiftParameters;
|
|
348
347
|
/**
|
|
349
|
-
* <p>
|
|
348
|
+
* <p>The parameters for S3.</p>
|
|
350
349
|
*/
|
|
351
350
|
S3Parameters?: S3Parameters;
|
|
352
351
|
/**
|
|
353
|
-
* <p>
|
|
352
|
+
* <p>The parameters for Snowflake.</p>
|
|
354
353
|
*/
|
|
355
354
|
SnowflakeParameters?: SnowflakeParameters;
|
|
356
355
|
/**
|
|
357
|
-
* <p>
|
|
356
|
+
* <p>The parameters for Spark.</p>
|
|
358
357
|
*/
|
|
359
358
|
SparkParameters?: SparkParameters;
|
|
360
359
|
/**
|
|
361
|
-
* <p>SQL Server
|
|
360
|
+
* <p>The parameters for SQL Server.</p>
|
|
362
361
|
*/
|
|
363
362
|
SqlServerParameters?: SqlServerParameters;
|
|
364
363
|
/**
|
|
365
|
-
* <p>Starburst
|
|
364
|
+
* <p>The parameters that are required to connect to a Starburst data source.</p>
|
|
366
365
|
*/
|
|
367
366
|
StarburstParameters?: StarburstParameters;
|
|
368
367
|
/**
|
|
369
|
-
* <p>
|
|
368
|
+
* <p>The parameters for Teradata.</p>
|
|
370
369
|
*/
|
|
371
370
|
TeradataParameters?: TeradataParameters;
|
|
372
371
|
/**
|
|
373
|
-
* <p>Trino
|
|
372
|
+
* <p>The parameters that are required to connect to a Trino data source.</p>
|
|
374
373
|
*/
|
|
375
374
|
TrinoParameters?: TrinoParameters;
|
|
376
375
|
};
|
|
@@ -378,7 +377,18 @@ export type DataSourceParameters = {
|
|
|
378
377
|
* Type definition for `AWS::QuickSight::DataSource.DataSourceType`.
|
|
379
378
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-datasourcetype.html}
|
|
380
379
|
*/
|
|
381
|
-
export type DataSourceType = "ADOBE_ANALYTICS" | "AMAZON_ELASTICSEARCH" | "AMAZON_OPENSEARCH" | "ATHENA" | "AURORA" | "AURORA_POSTGRESQL" | "AWS_IOT_ANALYTICS" | "DATABRICKS" | "GITHUB" | "JIRA" | "MARIADB" | "MYSQL" | "ORACLE" | "POSTGRESQL" | "PRESTO" | "REDSHIFT" | "S3" | "SALESFORCE" | "SERVICENOW" | "SNOWFLAKE" | "SPARK" | "SQLSERVER" | "TERADATA" | "TWITTER" | "
|
|
380
|
+
export type DataSourceType = "ADOBE_ANALYTICS" | "AMAZON_ELASTICSEARCH" | "AMAZON_OPENSEARCH" | "ATHENA" | "AURORA" | "AURORA_POSTGRESQL" | "AWS_IOT_ANALYTICS" | "DATABRICKS" | "DENODO" | "DREMIO" | "DYNAMODB" | "SAPHANA" | "DB2_AS400" | "EXASOL" | "FILE" | "GITHUB" | "JIRA" | "MARIADB" | "MYSQL" | "ORACLE" | "POSTGRESQL" | "PRESTO" | "REDSHIFT" | "S3" | "SALESFORCE" | "SERVICENOW" | "SNOWFLAKE" | "SPARK" | "SQLSERVER" | "TERADATA" | "TIMESTREAM" | "TWITTER" | "BIGQUERY" | "GOOGLE_ANALYTICS" | "TRINO" | "STARBURST" | "MONGO" | "MONGO_ATLAS" | "DOCUMENTDB" | "APPFLOW";
|
|
381
|
+
/**
|
|
382
|
+
* Type definition for `AWS::QuickSight::DataSource.IdentityCenterConfiguration`.
|
|
383
|
+
* <p>The parameters for an IAM Identity Center configuration.</p>
|
|
384
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-identitycenterconfiguration.html}
|
|
385
|
+
*/
|
|
386
|
+
export type IdentityCenterConfiguration = {
|
|
387
|
+
/**
|
|
388
|
+
* <p>A Boolean option that controls whether Trusted Identity Propagation should be used.</p>
|
|
389
|
+
*/
|
|
390
|
+
EnableIdentityPropagation?: boolean;
|
|
391
|
+
};
|
|
382
392
|
/**
|
|
383
393
|
* Type definition for `AWS::QuickSight::DataSource.ManifestFileLocation`.
|
|
384
394
|
* <p>Amazon S3 manifest file location.</p>
|
|
@@ -400,7 +410,7 @@ export type ManifestFileLocation = {
|
|
|
400
410
|
};
|
|
401
411
|
/**
|
|
402
412
|
* Type definition for `AWS::QuickSight::DataSource.MariaDbParameters`.
|
|
403
|
-
* <p>
|
|
413
|
+
* <p>The parameters for MariaDB.</p>
|
|
404
414
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-mariadbparameters.html}
|
|
405
415
|
*/
|
|
406
416
|
export type MariaDbParameters = {
|
|
@@ -425,7 +435,7 @@ export type MariaDbParameters = {
|
|
|
425
435
|
};
|
|
426
436
|
/**
|
|
427
437
|
* Type definition for `AWS::QuickSight::DataSource.MySqlParameters`.
|
|
428
|
-
* <p>
|
|
438
|
+
* <p>The parameters for MySQL.</p>
|
|
429
439
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-mysqlparameters.html}
|
|
430
440
|
*/
|
|
431
441
|
export type MySqlParameters = {
|
|
@@ -450,20 +460,24 @@ export type MySqlParameters = {
|
|
|
450
460
|
};
|
|
451
461
|
/**
|
|
452
462
|
* Type definition for `AWS::QuickSight::DataSource.OracleParameters`.
|
|
463
|
+
* <p>The parameters for Oracle.</p>
|
|
453
464
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-oracleparameters.html}
|
|
454
465
|
*/
|
|
455
466
|
export type OracleParameters = {
|
|
456
467
|
/**
|
|
468
|
+
* <p>The database.</p>
|
|
457
469
|
* @minLength `1`
|
|
458
470
|
* @maxLength `128`
|
|
459
471
|
*/
|
|
460
472
|
Database: string;
|
|
461
473
|
/**
|
|
474
|
+
* <p>An Oracle host.</p>
|
|
462
475
|
* @minLength `1`
|
|
463
476
|
* @maxLength `256`
|
|
464
477
|
*/
|
|
465
478
|
Host: string;
|
|
466
479
|
/**
|
|
480
|
+
* <p>The port.</p>
|
|
467
481
|
* @min `1`
|
|
468
482
|
* @max `65535`
|
|
469
483
|
*/
|
|
@@ -471,7 +485,7 @@ export type OracleParameters = {
|
|
|
471
485
|
};
|
|
472
486
|
/**
|
|
473
487
|
* Type definition for `AWS::QuickSight::DataSource.PostgreSqlParameters`.
|
|
474
|
-
* <p>
|
|
488
|
+
* <p>The parameters for PostgreSQL.</p>
|
|
475
489
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-postgresqlparameters.html}
|
|
476
490
|
*/
|
|
477
491
|
export type PostgreSqlParameters = {
|
|
@@ -496,7 +510,7 @@ export type PostgreSqlParameters = {
|
|
|
496
510
|
};
|
|
497
511
|
/**
|
|
498
512
|
* Type definition for `AWS::QuickSight::DataSource.PrestoParameters`.
|
|
499
|
-
* <p>
|
|
513
|
+
* <p>The parameters for Presto.</p>
|
|
500
514
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-prestoparameters.html}
|
|
501
515
|
*/
|
|
502
516
|
export type PrestoParameters = {
|
|
@@ -521,7 +535,7 @@ export type PrestoParameters = {
|
|
|
521
535
|
};
|
|
522
536
|
/**
|
|
523
537
|
* Type definition for `AWS::QuickSight::DataSource.RdsParameters`.
|
|
524
|
-
* <p>Amazon RDS
|
|
538
|
+
* <p>The parameters for Amazon RDS.</p>
|
|
525
539
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-rdsparameters.html}
|
|
526
540
|
*/
|
|
527
541
|
export type RdsParameters = {
|
|
@@ -540,9 +554,8 @@ export type RdsParameters = {
|
|
|
540
554
|
};
|
|
541
555
|
/**
|
|
542
556
|
* Type definition for `AWS::QuickSight::DataSource.RedshiftParameters`.
|
|
543
|
-
* <p>Amazon Redshift
|
|
544
|
-
<code>Host</code> and <code>Port</code> are both set. The <code>Host</code> and
|
|
545
|
-
<code>Port</code> fields can be blank if the <code>ClusterId</code> field is set.</p>
|
|
557
|
+
* <p>The parameters for Amazon Redshift. The <code>ClusterId</code> field can be blank if
|
|
558
|
+
<code>Host</code> and <code>Port</code> are both set. The <code>Host</code> and <code>Port</code> fields can be blank if the <code>ClusterId</code> field is set.</p>
|
|
546
559
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-redshiftparameters.html}
|
|
547
560
|
*/
|
|
548
561
|
export type RedshiftParameters = {
|
|
@@ -565,6 +578,10 @@ export type RedshiftParameters = {
|
|
|
565
578
|
* @maxLength `256`
|
|
566
579
|
*/
|
|
567
580
|
Host?: string;
|
|
581
|
+
/**
|
|
582
|
+
* <p>The parameters for an IAM Identity Center configuration.</p>
|
|
583
|
+
*/
|
|
584
|
+
IdentityCenterConfiguration?: IdentityCenterConfiguration;
|
|
568
585
|
/**
|
|
569
586
|
* <p>Port. This field can be blank if the <code>ClusterId</code> is provided.</p>
|
|
570
587
|
* @min `0`
|
|
@@ -587,16 +604,16 @@ export type ResourcePermission = {
|
|
|
587
604
|
/**
|
|
588
605
|
* <p>The Amazon Resource Name (ARN) of the principal. This can be one of the
|
|
589
606
|
following:</p>
|
|
590
|
-
|
|
607
|
+
<ul>
|
|
591
608
|
<li>
|
|
592
|
-
|
|
609
|
+
<p>The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.)</p>
|
|
593
610
|
</li>
|
|
594
611
|
<li>
|
|
595
|
-
|
|
612
|
+
<p>The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.)</p>
|
|
596
613
|
</li>
|
|
597
614
|
<li>
|
|
598
|
-
|
|
599
|
-
ARN. Use this option only to share resources (templates) across
|
|
615
|
+
<p>The ARN of an Amazon Web Services account root: This is an IAM ARN rather than a QuickSight
|
|
616
|
+
ARN. Use this option only to share resources (templates) across Amazon Web Services accounts.
|
|
600
617
|
(This is less common.) </p>
|
|
601
618
|
</li>
|
|
602
619
|
</ul>
|
|
@@ -604,6 +621,7 @@ export type ResourcePermission = {
|
|
|
604
621
|
* @maxLength `256`
|
|
605
622
|
*/
|
|
606
623
|
Principal: string;
|
|
624
|
+
Resource?: string;
|
|
607
625
|
};
|
|
608
626
|
/**
|
|
609
627
|
* Type definition for `AWS::QuickSight::DataSource.ResourceStatus`.
|
|
@@ -612,7 +630,7 @@ export type ResourcePermission = {
|
|
|
612
630
|
export type ResourceStatus = "CREATION_IN_PROGRESS" | "CREATION_SUCCESSFUL" | "CREATION_FAILED" | "UPDATE_IN_PROGRESS" | "UPDATE_SUCCESSFUL" | "UPDATE_FAILED" | "DELETED";
|
|
613
631
|
/**
|
|
614
632
|
* Type definition for `AWS::QuickSight::DataSource.S3Parameters`.
|
|
615
|
-
* <p>
|
|
633
|
+
* <p>The parameters for S3.</p>
|
|
616
634
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-s3parameters.html}
|
|
617
635
|
*/
|
|
618
636
|
export type S3Parameters = {
|
|
@@ -629,7 +647,7 @@ export type S3Parameters = {
|
|
|
629
647
|
};
|
|
630
648
|
/**
|
|
631
649
|
* Type definition for `AWS::QuickSight::DataSource.SnowflakeParameters`.
|
|
632
|
-
* <p>
|
|
650
|
+
* <p>The parameters for Snowflake.</p>
|
|
633
651
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-snowflakeparameters.html}
|
|
634
652
|
*/
|
|
635
653
|
export type SnowflakeParameters = {
|
|
@@ -654,7 +672,7 @@ export type SnowflakeParameters = {
|
|
|
654
672
|
};
|
|
655
673
|
/**
|
|
656
674
|
* Type definition for `AWS::QuickSight::DataSource.SparkParameters`.
|
|
657
|
-
* <p>
|
|
675
|
+
* <p>The parameters for Spark.</p>
|
|
658
676
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-sparkparameters.html}
|
|
659
677
|
*/
|
|
660
678
|
export type SparkParameters = {
|
|
@@ -673,7 +691,7 @@ export type SparkParameters = {
|
|
|
673
691
|
};
|
|
674
692
|
/**
|
|
675
693
|
* Type definition for `AWS::QuickSight::DataSource.SqlServerParameters`.
|
|
676
|
-
* <p>SQL Server
|
|
694
|
+
* <p>The parameters for SQL Server.</p>
|
|
677
695
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-sqlserverparameters.html}
|
|
678
696
|
*/
|
|
679
697
|
export type SqlServerParameters = {
|
|
@@ -698,7 +716,7 @@ export type SqlServerParameters = {
|
|
|
698
716
|
};
|
|
699
717
|
/**
|
|
700
718
|
* Type definition for `AWS::QuickSight::DataSource.SslProperties`.
|
|
701
|
-
* <p>Secure Socket Layer (SSL) properties that apply when QuickSight connects to your
|
|
719
|
+
* <p>Secure Socket Layer (SSL) properties that apply when Amazon QuickSight connects to your
|
|
702
720
|
underlying data source.</p>
|
|
703
721
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-sslproperties.html}
|
|
704
722
|
*/
|
|
@@ -710,24 +728,24 @@ export type SslProperties = {
|
|
|
710
728
|
};
|
|
711
729
|
/**
|
|
712
730
|
* Type definition for `AWS::QuickSight::DataSource.StarburstParameters`.
|
|
713
|
-
* <p>Starburst
|
|
731
|
+
* <p>The parameters that are required to connect to a Starburst data source.</p>
|
|
714
732
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-starburstparameters.html}
|
|
715
733
|
*/
|
|
716
734
|
export type StarburstParameters = {
|
|
717
735
|
/**
|
|
718
|
-
* <p>
|
|
736
|
+
* <p>The catalog name for the Starburst data source.</p>
|
|
719
737
|
* @minLength `0`
|
|
720
738
|
* @maxLength `128`
|
|
721
739
|
*/
|
|
722
740
|
Catalog: string;
|
|
723
741
|
/**
|
|
724
|
-
* <p>
|
|
742
|
+
* <p>The host name of the Starburst data source.</p>
|
|
725
743
|
* @minLength `1`
|
|
726
744
|
* @maxLength `256`
|
|
727
745
|
*/
|
|
728
746
|
Host: string;
|
|
729
747
|
/**
|
|
730
|
-
* <p>
|
|
748
|
+
* <p>The port for the Starburst data source.</p>
|
|
731
749
|
* @min `1`
|
|
732
750
|
* @max `65535`
|
|
733
751
|
*/
|
|
@@ -761,7 +779,7 @@ export type Tag = {
|
|
|
761
779
|
};
|
|
762
780
|
/**
|
|
763
781
|
* Type definition for `AWS::QuickSight::DataSource.TeradataParameters`.
|
|
764
|
-
* <p>
|
|
782
|
+
* <p>The parameters for Teradata.</p>
|
|
765
783
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-teradataparameters.html}
|
|
766
784
|
*/
|
|
767
785
|
export type TeradataParameters = {
|
|
@@ -786,24 +804,24 @@ export type TeradataParameters = {
|
|
|
786
804
|
};
|
|
787
805
|
/**
|
|
788
806
|
* Type definition for `AWS::QuickSight::DataSource.TrinoParameters`.
|
|
789
|
-
* <p>Trino
|
|
807
|
+
* <p>The parameters that are required to connect to a Trino data source.</p>
|
|
790
808
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-trinoparameters.html}
|
|
791
809
|
*/
|
|
792
810
|
export type TrinoParameters = {
|
|
793
811
|
/**
|
|
794
|
-
* <p>
|
|
812
|
+
* <p>The catalog name for the Trino data source.</p>
|
|
795
813
|
* @minLength `0`
|
|
796
814
|
* @maxLength `128`
|
|
797
815
|
*/
|
|
798
816
|
Catalog: string;
|
|
799
817
|
/**
|
|
800
|
-
* <p>
|
|
818
|
+
* <p>The host name of the Trino data source.</p>
|
|
801
819
|
* @minLength `1`
|
|
802
820
|
* @maxLength `256`
|
|
803
821
|
*/
|
|
804
822
|
Host: string;
|
|
805
823
|
/**
|
|
806
|
-
* <p>
|
|
824
|
+
* <p>The port for the Trino data source.</p>
|
|
807
825
|
* @min `1`
|
|
808
826
|
* @max `65535`
|
|
809
827
|
*/
|
|
@@ -46,22 +46,42 @@ export type QuickSightVPCConnectionProperties = {
|
|
|
46
46
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-vpcconnection.html#aws-resource-quicksight-vpcconnection-return-values}
|
|
47
47
|
*/
|
|
48
48
|
export type QuickSightVPCConnectionAttributes = {
|
|
49
|
+
/**
|
|
50
|
+
* <p>The Amazon Resource Name (ARN) of the VPC connection.</p>
|
|
51
|
+
*/
|
|
49
52
|
Arn: string;
|
|
53
|
+
/**
|
|
54
|
+
* <p>The time that the VPC connection was created.</p>
|
|
55
|
+
*/
|
|
50
56
|
CreatedTime: string;
|
|
57
|
+
/**
|
|
58
|
+
* <p>The time that the VPC connection was last updated.</p>
|
|
59
|
+
*/
|
|
51
60
|
LastUpdatedTime: string;
|
|
52
61
|
/**
|
|
62
|
+
* <p>A list of network interfaces.</p>
|
|
63
|
+
* @minLength `0`
|
|
53
64
|
* @maxLength `15`
|
|
54
65
|
*/
|
|
55
66
|
NetworkInterfaces: {
|
|
67
|
+
/**
|
|
68
|
+
* <p>The availability zone that the network interface resides in.</p>
|
|
69
|
+
*/
|
|
56
70
|
AvailabilityZone: string;
|
|
71
|
+
/**
|
|
72
|
+
* <p>An error message.</p>
|
|
73
|
+
*/
|
|
57
74
|
ErrorMessage: string;
|
|
58
75
|
/**
|
|
76
|
+
* <p>The network interface ID.</p>
|
|
77
|
+
* @minLength `0`
|
|
59
78
|
* @maxLength `255`
|
|
60
79
|
* @pattern `^eni-[0-9a-z]*$`
|
|
61
80
|
*/
|
|
62
81
|
NetworkInterfaceId: string;
|
|
63
|
-
Status:
|
|
82
|
+
Status: NetworkInterfaceStatus;
|
|
64
83
|
/**
|
|
84
|
+
* <p>The subnet ID associated with the network interface.</p>
|
|
65
85
|
* @minLength `1`
|
|
66
86
|
* @maxLength `255`
|
|
67
87
|
* @pattern `^subnet-[0-9a-z]*$`
|
|
@@ -69,39 +89,61 @@ export type QuickSightVPCConnectionAttributes = {
|
|
|
69
89
|
SubnetId: string;
|
|
70
90
|
}[];
|
|
71
91
|
Status: VPCConnectionResourceStatus;
|
|
92
|
+
/**
|
|
93
|
+
* <p>The Amazon EC2 VPC ID associated with the VPC connection.</p>
|
|
94
|
+
*/
|
|
72
95
|
VPCId: string;
|
|
73
96
|
};
|
|
74
97
|
/**
|
|
75
98
|
* Type definition for `AWS::QuickSight::VPCConnection.NetworkInterface`.
|
|
99
|
+
* <p>The structure that contains information about a network interface.</p>
|
|
76
100
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-vpcconnection-networkinterface.html}
|
|
77
101
|
*/
|
|
78
102
|
export type NetworkInterface = {
|
|
103
|
+
/**
|
|
104
|
+
* <p>The availability zone that the network interface resides in.</p>
|
|
105
|
+
*/
|
|
79
106
|
AvailabilityZone?: string;
|
|
107
|
+
/**
|
|
108
|
+
* <p>An error message.</p>
|
|
109
|
+
*/
|
|
80
110
|
ErrorMessage?: string;
|
|
81
111
|
/**
|
|
112
|
+
* <p>The network interface ID.</p>
|
|
113
|
+
* @minLength `0`
|
|
82
114
|
* @maxLength `255`
|
|
83
115
|
* @pattern `^eni-[0-9a-z]*$`
|
|
84
116
|
*/
|
|
85
117
|
NetworkInterfaceId?: string;
|
|
86
|
-
Status?:
|
|
118
|
+
Status?: NetworkInterfaceStatus;
|
|
87
119
|
/**
|
|
120
|
+
* <p>The subnet ID associated with the network interface.</p>
|
|
88
121
|
* @minLength `1`
|
|
89
122
|
* @maxLength `255`
|
|
90
123
|
* @pattern `^subnet-[0-9a-z]*$`
|
|
91
124
|
*/
|
|
92
125
|
SubnetId?: string;
|
|
93
126
|
};
|
|
127
|
+
/**
|
|
128
|
+
* Type definition for `AWS::QuickSight::VPCConnection.NetworkInterfaceStatus`.
|
|
129
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-vpcconnection-networkinterfacestatus.html}
|
|
130
|
+
*/
|
|
131
|
+
export type NetworkInterfaceStatus = "CREATING" | "AVAILABLE" | "CREATION_FAILED" | "UPDATING" | "UPDATE_FAILED" | "DELETING" | "DELETED" | "DELETION_FAILED" | "DELETION_SCHEDULED" | "ATTACHMENT_FAILED_ROLLBACK_FAILED";
|
|
94
132
|
/**
|
|
95
133
|
* Type definition for `AWS::QuickSight::VPCConnection.Tag`.
|
|
134
|
+
* <p>The key or keys of the key-value pairs for the resource tag or tags assigned to the
|
|
135
|
+
resource.</p>
|
|
96
136
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-vpcconnection-tag.html}
|
|
97
137
|
*/
|
|
98
138
|
export type Tag = {
|
|
99
139
|
/**
|
|
140
|
+
* <p>Tag key.</p>
|
|
100
141
|
* @minLength `1`
|
|
101
142
|
* @maxLength `128`
|
|
102
143
|
*/
|
|
103
144
|
Key: string;
|
|
104
145
|
/**
|
|
146
|
+
* <p>Tag value.</p>
|
|
105
147
|
* @minLength `1`
|
|
106
148
|
* @maxLength `256`
|
|
107
149
|
*/
|