@awboost/cfn-resource-types 0.1.221 → 0.1.222
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-DataSource.d.ts +27 -2
- package/lib/AWS-Bedrock-KnowledgeBase.d.ts +71 -3
- package/lib/AWS-EC2-LaunchTemplate.d.ts +1 -1
- package/lib/AWS-EC2-VPCEndpointService.d.ts +12 -0
- package/lib/AWS-QuickSight-Analysis.d.ts +3 -3
- package/lib/AWS-QuickSight-Dashboard.d.ts +10 -3
- package/lib/AWS-QuickSight-DataSet.d.ts +38 -1
- package/lib/AWS-QuickSight-Template.d.ts +76 -71
- package/lib/AWS-SageMaker-Domain.d.ts +19 -0
- package/lib/AWS-SageMaker-Space.d.ts +13 -0
- package/lib/AWS-SageMaker-UserProfile.d.ts +19 -0
- package/package.json +1 -1
|
@@ -66,6 +66,17 @@ export type BedrockDataSourceAttributes = {
|
|
|
66
66
|
*/
|
|
67
67
|
UpdatedAt: string;
|
|
68
68
|
};
|
|
69
|
+
/**
|
|
70
|
+
* Type definition for `AWS::Bedrock::DataSource.BedrockDataAutomationConfiguration`.
|
|
71
|
+
* Settings for a Bedrock Data Automation used to parse documents for a data source.
|
|
72
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-bedrockdataautomationconfiguration.html}
|
|
73
|
+
*/
|
|
74
|
+
export type BedrockDataAutomationConfiguration = {
|
|
75
|
+
/**
|
|
76
|
+
* Determine how will parsed content be stored.
|
|
77
|
+
*/
|
|
78
|
+
ParsingModality?: ParsingModality;
|
|
79
|
+
};
|
|
69
80
|
/**
|
|
70
81
|
* Type definition for `AWS::Bedrock::DataSource.BedrockFoundationModelConfiguration`.
|
|
71
82
|
* Settings for a foundation model used to parse documents for a data source.
|
|
@@ -79,6 +90,10 @@ export type BedrockFoundationModelConfiguration = {
|
|
|
79
90
|
* @pattern `^arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}::foundation-model/([a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}([.]?[a-z0-9-]{1,63})([:][a-z0-9-]{1,63}){0,2})|(arn:aws(|-us-gov|-cn|-iso|-iso-b):bedrock:(|[0-9a-z-]{1,20}):(|[0-9]{12}):(inference-profile|application-inference-profile)/[a-zA-Z0-9-:.]+)$`
|
|
80
91
|
*/
|
|
81
92
|
ModelArn: string;
|
|
93
|
+
/**
|
|
94
|
+
* Determine how will parsed content be stored.
|
|
95
|
+
*/
|
|
96
|
+
ParsingModality?: ParsingModality;
|
|
82
97
|
/**
|
|
83
98
|
* Instructions for interpreting the contents of a document.
|
|
84
99
|
*/
|
|
@@ -246,7 +261,7 @@ export type DataSourceStatus = "AVAILABLE" | "DELETING" | "DELETE_UNSUCCESSFUL";
|
|
|
246
261
|
* The type of the data source location.
|
|
247
262
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-datasourcetype.html}
|
|
248
263
|
*/
|
|
249
|
-
export type DataSourceType = "S3" | "CONFLUENCE" | "SALESFORCE" | "SHAREPOINT" | "WEB";
|
|
264
|
+
export type DataSourceType = "S3" | "CONFLUENCE" | "SALESFORCE" | "SHAREPOINT" | "WEB" | "CUSTOM";
|
|
250
265
|
/**
|
|
251
266
|
* Type definition for `AWS::Bedrock::DataSource.FixedSizeChunkingConfiguration`.
|
|
252
267
|
* Configurations for when you choose fixed-size chunking. If you set the chunkingStrategy as NONE, exclude this field.
|
|
@@ -313,6 +328,10 @@ export type IntermediateStorage = {
|
|
|
313
328
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-parsingconfiguration.html}
|
|
314
329
|
*/
|
|
315
330
|
export type ParsingConfiguration = {
|
|
331
|
+
/**
|
|
332
|
+
* Settings for a Bedrock Data Automation used to parse documents for a data source.
|
|
333
|
+
*/
|
|
334
|
+
BedrockDataAutomationConfiguration?: BedrockDataAutomationConfiguration;
|
|
316
335
|
/**
|
|
317
336
|
* Settings for a foundation model used to parse documents for a data source.
|
|
318
337
|
*/
|
|
@@ -322,6 +341,12 @@ export type ParsingConfiguration = {
|
|
|
322
341
|
*/
|
|
323
342
|
ParsingStrategy: ParsingStrategy;
|
|
324
343
|
};
|
|
344
|
+
/**
|
|
345
|
+
* Type definition for `AWS::Bedrock::DataSource.ParsingModality`.
|
|
346
|
+
* Determine how will parsed content be stored.
|
|
347
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-parsingmodality.html}
|
|
348
|
+
*/
|
|
349
|
+
export type ParsingModality = "MULTIMODAL";
|
|
325
350
|
/**
|
|
326
351
|
* Type definition for `AWS::Bedrock::DataSource.ParsingPrompt`.
|
|
327
352
|
* Instructions for interpreting the contents of a document.
|
|
@@ -340,7 +365,7 @@ export type ParsingPrompt = {
|
|
|
340
365
|
* The parsing strategy for the data source.
|
|
341
366
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-parsingstrategy.html}
|
|
342
367
|
*/
|
|
343
|
-
export type ParsingStrategy = "BEDROCK_FOUNDATION_MODEL";
|
|
368
|
+
export type ParsingStrategy = "BEDROCK_FOUNDATION_MODEL" | "BEDROCK_DATA_AUTOMATION";
|
|
344
369
|
/**
|
|
345
370
|
* Type definition for `AWS::Bedrock::DataSource.PatternObjectFilter`.
|
|
346
371
|
* The specific filters applied to your data source content. You can filter out or include certain content.
|
|
@@ -29,7 +29,7 @@ export type BedrockKnowledgeBaseProperties = {
|
|
|
29
29
|
/**
|
|
30
30
|
* The vector store service in which the knowledge base is stored.
|
|
31
31
|
*/
|
|
32
|
-
StorageConfiguration
|
|
32
|
+
StorageConfiguration?: StorageConfiguration;
|
|
33
33
|
/**
|
|
34
34
|
* A map of tag keys and values
|
|
35
35
|
*/
|
|
@@ -94,12 +94,28 @@ export type EmbeddingModelConfiguration = {
|
|
|
94
94
|
*/
|
|
95
95
|
BedrockEmbeddingModelConfiguration?: BedrockEmbeddingModelConfiguration;
|
|
96
96
|
};
|
|
97
|
+
/**
|
|
98
|
+
* Type definition for `AWS::Bedrock::KnowledgeBase.KendraKnowledgeBaseConfiguration`.
|
|
99
|
+
* Configurations for a Kendra knowledge base
|
|
100
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-kendraknowledgebaseconfiguration.html}
|
|
101
|
+
*/
|
|
102
|
+
export type KendraKnowledgeBaseConfiguration = {
|
|
103
|
+
/**
|
|
104
|
+
* Arn of a Kendra index
|
|
105
|
+
* @pattern `^arn:aws(|-cn|-us-gov):kendra:[a-z0-9-]{1,20}:([0-9]{12}|):index/([a-zA-Z0-9][a-zA-Z0-9-]{35}|[a-zA-Z0-9][a-zA-Z0-9-]{35}-[a-zA-Z0-9][a-zA-Z0-9-]{35})$`
|
|
106
|
+
*/
|
|
107
|
+
KendraIndexArn: string;
|
|
108
|
+
};
|
|
97
109
|
/**
|
|
98
110
|
* Type definition for `AWS::Bedrock::KnowledgeBase.KnowledgeBaseConfiguration`.
|
|
99
111
|
* Contains details about the embeddings model used for the knowledge base.
|
|
100
112
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-knowledgebaseconfiguration.html}
|
|
101
113
|
*/
|
|
102
114
|
export type KnowledgeBaseConfiguration = {
|
|
115
|
+
/**
|
|
116
|
+
* Configurations for a Kendra knowledge base
|
|
117
|
+
*/
|
|
118
|
+
KendraKnowledgeBaseConfiguration?: KendraKnowledgeBaseConfiguration;
|
|
103
119
|
/**
|
|
104
120
|
* The type of a knowledge base.
|
|
105
121
|
*/
|
|
@@ -107,7 +123,7 @@ export type KnowledgeBaseConfiguration = {
|
|
|
107
123
|
/**
|
|
108
124
|
* Contains details about the model used to create vector embeddings for the knowledge base.
|
|
109
125
|
*/
|
|
110
|
-
VectorKnowledgeBaseConfiguration
|
|
126
|
+
VectorKnowledgeBaseConfiguration?: VectorKnowledgeBaseConfiguration;
|
|
111
127
|
};
|
|
112
128
|
/**
|
|
113
129
|
* Type definition for `AWS::Bedrock::KnowledgeBase.KnowledgeBaseStatus`.
|
|
@@ -126,7 +142,7 @@ export type KnowledgeBaseStorageType = "OPENSEARCH_SERVERLESS" | "PINECONE" | "R
|
|
|
126
142
|
* The type of a knowledge base.
|
|
127
143
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-knowledgebasetype.html}
|
|
128
144
|
*/
|
|
129
|
-
export type KnowledgeBaseType = "VECTOR";
|
|
145
|
+
export type KnowledgeBaseType = "VECTOR" | "KENDRA";
|
|
130
146
|
/**
|
|
131
147
|
* Type definition for `AWS::Bedrock::KnowledgeBase.MongoDbAtlasConfiguration`.
|
|
132
148
|
* Contains the storage configuration of the knowledge base in MongoDb Atlas Cloud.
|
|
@@ -357,6 +373,20 @@ export type RdsFieldMapping = {
|
|
|
357
373
|
*/
|
|
358
374
|
VectorField: string;
|
|
359
375
|
};
|
|
376
|
+
/**
|
|
377
|
+
* Type definition for `AWS::Bedrock::KnowledgeBase.S3Location`.
|
|
378
|
+
* An Amazon S3 location.
|
|
379
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-s3location.html}
|
|
380
|
+
*/
|
|
381
|
+
export type S3Location = {
|
|
382
|
+
/**
|
|
383
|
+
* The location's URI
|
|
384
|
+
* @minLength `1`
|
|
385
|
+
* @maxLength `2048`
|
|
386
|
+
* @pattern `^s3://.{1,128}$`
|
|
387
|
+
*/
|
|
388
|
+
URI: string;
|
|
389
|
+
};
|
|
360
390
|
/**
|
|
361
391
|
* Type definition for `AWS::Bedrock::KnowledgeBase.StorageConfiguration`.
|
|
362
392
|
* The vector store service in which the knowledge base is stored.
|
|
@@ -384,6 +414,40 @@ export type StorageConfiguration = {
|
|
|
384
414
|
*/
|
|
385
415
|
Type: KnowledgeBaseStorageType;
|
|
386
416
|
};
|
|
417
|
+
/**
|
|
418
|
+
* Type definition for `AWS::Bedrock::KnowledgeBase.SupplementalDataStorageConfiguration`.
|
|
419
|
+
* Configurations for supplemental data storage.
|
|
420
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-supplementaldatastorageconfiguration.html}
|
|
421
|
+
*/
|
|
422
|
+
export type SupplementalDataStorageConfiguration = {
|
|
423
|
+
/**
|
|
424
|
+
* List of supplemental data storage locations.
|
|
425
|
+
* @minLength `1`
|
|
426
|
+
* @maxLength `1`
|
|
427
|
+
*/
|
|
428
|
+
SupplementalDataStorageLocations: SupplementalDataStorageLocation[];
|
|
429
|
+
};
|
|
430
|
+
/**
|
|
431
|
+
* Type definition for `AWS::Bedrock::KnowledgeBase.SupplementalDataStorageLocation`.
|
|
432
|
+
* Supplemental data storage location.
|
|
433
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-supplementaldatastoragelocation.html}
|
|
434
|
+
*/
|
|
435
|
+
export type SupplementalDataStorageLocation = {
|
|
436
|
+
/**
|
|
437
|
+
* An Amazon S3 location.
|
|
438
|
+
*/
|
|
439
|
+
S3Location?: S3Location;
|
|
440
|
+
/**
|
|
441
|
+
* Supplemental data storage location type.
|
|
442
|
+
*/
|
|
443
|
+
SupplementalDataStorageLocationType: SupplementalDataStorageLocationType;
|
|
444
|
+
};
|
|
445
|
+
/**
|
|
446
|
+
* Type definition for `AWS::Bedrock::KnowledgeBase.SupplementalDataStorageLocationType`.
|
|
447
|
+
* Supplemental data storage location type.
|
|
448
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-supplementaldatastoragelocationtype.html}
|
|
449
|
+
*/
|
|
450
|
+
export type SupplementalDataStorageLocationType = "S3";
|
|
387
451
|
/**
|
|
388
452
|
* Type definition for `AWS::Bedrock::KnowledgeBase.TagsMap`.
|
|
389
453
|
* A map of tag keys and values
|
|
@@ -407,6 +471,10 @@ export type VectorKnowledgeBaseConfiguration = {
|
|
|
407
471
|
* The embeddings model configuration details for the vector model used in Knowledge Base.
|
|
408
472
|
*/
|
|
409
473
|
EmbeddingModelConfiguration?: EmbeddingModelConfiguration;
|
|
474
|
+
/**
|
|
475
|
+
* Configurations for supplemental data storage.
|
|
476
|
+
*/
|
|
477
|
+
SupplementalDataStorageConfiguration?: SupplementalDataStorageConfiguration;
|
|
410
478
|
};
|
|
411
479
|
/**
|
|
412
480
|
* Definition of AWS::Bedrock::KnowledgeBase Resource Type
|
|
@@ -722,7 +722,7 @@ export type LaunchTemplateData = {
|
|
|
722
722
|
* The network interfaces for the instance.
|
|
723
723
|
*/
|
|
724
724
|
NetworkInterfaces?: NetworkInterface[];
|
|
725
|
-
NetworkPerformanceOptions?:
|
|
725
|
+
NetworkPerformanceOptions?: unknown;
|
|
726
726
|
/**
|
|
727
727
|
* The placement for the instance.
|
|
728
728
|
*/
|
|
@@ -10,6 +10,10 @@ export type EC2VPCEndpointServiceProperties = {
|
|
|
10
10
|
GatewayLoadBalancerArns?: string[];
|
|
11
11
|
NetworkLoadBalancerArns?: string[];
|
|
12
12
|
PayerResponsibility?: string;
|
|
13
|
+
/**
|
|
14
|
+
* The tags to add to the VPC endpoint service.
|
|
15
|
+
*/
|
|
16
|
+
Tags?: Tag[];
|
|
13
17
|
};
|
|
14
18
|
/**
|
|
15
19
|
* Attribute type definition for `AWS::EC2::VPCEndpointService`.
|
|
@@ -18,6 +22,14 @@ export type EC2VPCEndpointServiceProperties = {
|
|
|
18
22
|
export type EC2VPCEndpointServiceAttributes = {
|
|
19
23
|
ServiceId: string;
|
|
20
24
|
};
|
|
25
|
+
/**
|
|
26
|
+
* Type definition for `AWS::EC2::VPCEndpointService.Tag`.
|
|
27
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpcendpointservice-tag.html}
|
|
28
|
+
*/
|
|
29
|
+
export type Tag = {
|
|
30
|
+
Key: string;
|
|
31
|
+
Value: string;
|
|
32
|
+
};
|
|
21
33
|
/**
|
|
22
34
|
* Resource Type definition for AWS::EC2::VPCEndpointService
|
|
23
35
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html}
|
|
@@ -3217,7 +3217,7 @@ export type GeospatialLayerJoinDefinition = {
|
|
|
3217
3217
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatiallayermapconfiguration.html}
|
|
3218
3218
|
*/
|
|
3219
3219
|
export type GeospatialLayerMapConfiguration = {
|
|
3220
|
-
Interactions?:
|
|
3220
|
+
Interactions?: unknown;
|
|
3221
3221
|
Legend?: LegendOptions;
|
|
3222
3222
|
MapLayers?: GeospatialLayerItem[];
|
|
3223
3223
|
MapState?: GeospatialMapState;
|
|
@@ -3287,7 +3287,7 @@ export type GeospatialMapAggregatedFieldWells = {
|
|
|
3287
3287
|
*/
|
|
3288
3288
|
export type GeospatialMapConfiguration = {
|
|
3289
3289
|
FieldWells?: GeospatialMapFieldWells;
|
|
3290
|
-
Interactions?:
|
|
3290
|
+
Interactions?: unknown;
|
|
3291
3291
|
Legend?: LegendOptions;
|
|
3292
3292
|
MapStyleOptions?: GeospatialMapStyleOptions;
|
|
3293
3293
|
PointStyleOptions?: GeospatialPointStyleOptions;
|
|
@@ -3825,7 +3825,7 @@ export type ImageInteractionOptions = {
|
|
|
3825
3825
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-imagemenuoption.html}
|
|
3826
3826
|
*/
|
|
3827
3827
|
export type ImageMenuOption = {
|
|
3828
|
-
AvailabilityStatus?:
|
|
3828
|
+
AvailabilityStatus?: unknown;
|
|
3829
3829
|
};
|
|
3830
3830
|
/**
|
|
3831
3831
|
* Type definition for `AWS::QuickSight::Analysis.ImageStaticFile`.
|
|
@@ -1636,7 +1636,7 @@ export type DashboardPublishOptions = {
|
|
|
1636
1636
|
*/
|
|
1637
1637
|
SheetLayoutElementMaximizationOption?: SheetLayoutElementMaximizationOption;
|
|
1638
1638
|
VisualAxisSortOption?: VisualAxisSortOption;
|
|
1639
|
-
VisualMenuOption?:
|
|
1639
|
+
VisualMenuOption?: VisualMenuOption;
|
|
1640
1640
|
/**
|
|
1641
1641
|
* <p>The visual publish options of a visual in a dashboard</p>
|
|
1642
1642
|
*/
|
|
@@ -3620,7 +3620,7 @@ export type GeospatialLayerJoinDefinition = {
|
|
|
3620
3620
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallayermapconfiguration.html}
|
|
3621
3621
|
*/
|
|
3622
3622
|
export type GeospatialLayerMapConfiguration = {
|
|
3623
|
-
Interactions?:
|
|
3623
|
+
Interactions?: unknown;
|
|
3624
3624
|
Legend?: LegendOptions;
|
|
3625
3625
|
MapLayers?: GeospatialLayerItem[];
|
|
3626
3626
|
MapState?: GeospatialMapState;
|
|
@@ -3690,7 +3690,7 @@ export type GeospatialMapAggregatedFieldWells = {
|
|
|
3690
3690
|
*/
|
|
3691
3691
|
export type GeospatialMapConfiguration = {
|
|
3692
3692
|
FieldWells?: GeospatialMapFieldWells;
|
|
3693
|
-
Interactions?:
|
|
3693
|
+
Interactions?: unknown;
|
|
3694
3694
|
Legend?: LegendOptions;
|
|
3695
3695
|
MapStyleOptions?: GeospatialMapStyleOptions;
|
|
3696
3696
|
PointStyleOptions?: GeospatialPointStyleOptions;
|
|
@@ -8332,6 +8332,13 @@ export type VisualCustomActionOperation = {
|
|
|
8332
8332
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualcustomactiontrigger.html}
|
|
8333
8333
|
*/
|
|
8334
8334
|
export type VisualCustomActionTrigger = "DATA_POINT_CLICK" | "DATA_POINT_MENU";
|
|
8335
|
+
/**
|
|
8336
|
+
* Type definition for `AWS::QuickSight::Dashboard.VisualMenuOption`.
|
|
8337
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualmenuoption.html}
|
|
8338
|
+
*/
|
|
8339
|
+
export type VisualMenuOption = {
|
|
8340
|
+
AvailabilityStatus?: DashboardBehavior;
|
|
8341
|
+
};
|
|
8335
8342
|
/**
|
|
8336
8343
|
* Type definition for `AWS::QuickSight::Dashboard.VisualPalette`.
|
|
8337
8344
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualpalette.html}
|
|
@@ -465,6 +465,11 @@ export type FieldFolder = {
|
|
|
465
465
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-fieldfoldermap.html}
|
|
466
466
|
*/
|
|
467
467
|
export type FieldFolderMap = Record<string, FieldFolder>;
|
|
468
|
+
/**
|
|
469
|
+
* Type definition for `AWS::QuickSight::DataSet.FileFormat`.
|
|
470
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-fileformat.html}
|
|
471
|
+
*/
|
|
472
|
+
export type FileFormat = "CSV" | "TSV" | "CLF" | "ELF" | "XLSX" | "JSON";
|
|
468
473
|
/**
|
|
469
474
|
* Type definition for `AWS::QuickSight::DataSet.FilterOperation`.
|
|
470
475
|
* <p>A transform operation that filters rows based on a condition.</p>
|
|
@@ -1058,7 +1063,10 @@ export type S3Source = {
|
|
|
1058
1063
|
* @maxLength `2048`
|
|
1059
1064
|
*/
|
|
1060
1065
|
InputColumns: InputColumn[];
|
|
1061
|
-
|
|
1066
|
+
/**
|
|
1067
|
+
* <p>Information about the format for a source file or files.</p>
|
|
1068
|
+
*/
|
|
1069
|
+
UploadSettings?: UploadSettings;
|
|
1062
1070
|
};
|
|
1063
1071
|
/**
|
|
1064
1072
|
* Type definition for `AWS::QuickSight::DataSet.Status`.
|
|
@@ -1146,6 +1154,11 @@ export type TagColumnOperation = {
|
|
|
1146
1154
|
*/
|
|
1147
1155
|
Tags: ColumnTag[];
|
|
1148
1156
|
};
|
|
1157
|
+
/**
|
|
1158
|
+
* Type definition for `AWS::QuickSight::DataSet.TextQualifier`.
|
|
1159
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-textqualifier.html}
|
|
1160
|
+
*/
|
|
1161
|
+
export type TextQualifier = "DOUBLE_QUOTE" | "SINGLE_QUOTE";
|
|
1149
1162
|
/**
|
|
1150
1163
|
* Type definition for `AWS::QuickSight::DataSet.TimeGranularity`.
|
|
1151
1164
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-timegranularity.html}
|
|
@@ -1221,6 +1234,30 @@ export type UntagColumnOperation = {
|
|
|
1221
1234
|
*/
|
|
1222
1235
|
TagNames: ColumnTagName[];
|
|
1223
1236
|
};
|
|
1237
|
+
/**
|
|
1238
|
+
* Type definition for `AWS::QuickSight::DataSet.UploadSettings`.
|
|
1239
|
+
* <p>Information about the format for a source file or files.</p>
|
|
1240
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-uploadsettings.html}
|
|
1241
|
+
*/
|
|
1242
|
+
export type UploadSettings = {
|
|
1243
|
+
/**
|
|
1244
|
+
* <p>Whether the file has a header row, or the files each have a header row.</p>
|
|
1245
|
+
*/
|
|
1246
|
+
ContainsHeader?: boolean;
|
|
1247
|
+
/**
|
|
1248
|
+
* <p>The delimiter between values in the file.</p>
|
|
1249
|
+
* @minLength `1`
|
|
1250
|
+
* @maxLength `1`
|
|
1251
|
+
*/
|
|
1252
|
+
Delimiter?: string;
|
|
1253
|
+
Format?: FileFormat;
|
|
1254
|
+
/**
|
|
1255
|
+
* <p>A row number to start reading data from.</p>
|
|
1256
|
+
* @min `1`
|
|
1257
|
+
*/
|
|
1258
|
+
StartFromRow?: number;
|
|
1259
|
+
TextQualifier?: TextQualifier;
|
|
1260
|
+
};
|
|
1224
1261
|
/**
|
|
1225
1262
|
* Definition of the AWS::QuickSight::DataSet Resource Type.
|
|
1226
1263
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-dataset.html}
|
|
@@ -281,7 +281,7 @@ export type QuickSightTemplateAttributes = {
|
|
|
281
281
|
ImageContentAltText: string;
|
|
282
282
|
Interactions: {
|
|
283
283
|
ImageMenuOption: {
|
|
284
|
-
AvailabilityStatus:
|
|
284
|
+
AvailabilityStatus: unknown;
|
|
285
285
|
};
|
|
286
286
|
};
|
|
287
287
|
Scaling: {
|
|
@@ -311,7 +311,7 @@ export type QuickSightTemplateAttributes = {
|
|
|
311
311
|
*/
|
|
312
312
|
PlainText: string;
|
|
313
313
|
};
|
|
314
|
-
Visibility:
|
|
314
|
+
Visibility: Visibility;
|
|
315
315
|
};
|
|
316
316
|
}[];
|
|
317
317
|
/**
|
|
@@ -483,13 +483,13 @@ export type AxisDisplayMinMaxRange = {
|
|
|
483
483
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-axisdisplayoptions.html}
|
|
484
484
|
*/
|
|
485
485
|
export type AxisDisplayOptions = {
|
|
486
|
-
AxisLineVisibility?:
|
|
486
|
+
AxisLineVisibility?: Visibility;
|
|
487
487
|
/**
|
|
488
488
|
* String based length that is composed of value and unit in px
|
|
489
489
|
*/
|
|
490
490
|
AxisOffset?: string;
|
|
491
491
|
DataOptions?: AxisDataOptions;
|
|
492
|
-
GridLineVisibility?:
|
|
492
|
+
GridLineVisibility?: Visibility;
|
|
493
493
|
ScrollbarOptions?: ScrollBarOptions;
|
|
494
494
|
TickLabelOptions?: AxisTickLabelOptions;
|
|
495
495
|
};
|
|
@@ -786,8 +786,8 @@ export type BoxPlotFillStyle = "SOLID" | "TRANSPARENT";
|
|
|
786
786
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-boxplotoptions.html}
|
|
787
787
|
*/
|
|
788
788
|
export type BoxPlotOptions = {
|
|
789
|
-
AllDataPointsVisibility?:
|
|
790
|
-
OutlierVisibility?:
|
|
789
|
+
AllDataPointsVisibility?: Visibility;
|
|
790
|
+
OutlierVisibility?: Visibility;
|
|
791
791
|
StyleOptions?: BoxPlotStyleOptions;
|
|
792
792
|
};
|
|
793
793
|
/**
|
|
@@ -997,8 +997,8 @@ export type ChartAxisLabelOptions = {
|
|
|
997
997
|
* @maxLength `100`
|
|
998
998
|
*/
|
|
999
999
|
AxisLabelOptions?: AxisLabelOptions[];
|
|
1000
|
-
SortIconVisibility?:
|
|
1001
|
-
Visibility?:
|
|
1000
|
+
SortIconVisibility?: Visibility;
|
|
1001
|
+
Visibility?: Visibility;
|
|
1002
1002
|
};
|
|
1003
1003
|
/**
|
|
1004
1004
|
* Type definition for `AWS::QuickSight::Template.ClusterMarker`.
|
|
@@ -1148,7 +1148,7 @@ export type ColumnTooltipItem = {
|
|
|
1148
1148
|
Column: ColumnIdentifier;
|
|
1149
1149
|
Label?: string;
|
|
1150
1150
|
TooltipTarget?: TooltipTarget;
|
|
1151
|
-
Visibility?:
|
|
1151
|
+
Visibility?: Visibility;
|
|
1152
1152
|
};
|
|
1153
1153
|
/**
|
|
1154
1154
|
* Type definition for `AWS::QuickSight::Template.ComboChartAggregatedFieldWells`.
|
|
@@ -1686,7 +1686,7 @@ export type DataLabelContent = "VALUE" | "PERCENT" | "VALUE_AND_PERCENT";
|
|
|
1686
1686
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-datalabeloptions.html}
|
|
1687
1687
|
*/
|
|
1688
1688
|
export type DataLabelOptions = {
|
|
1689
|
-
CategoryLabelVisibility?:
|
|
1689
|
+
CategoryLabelVisibility?: Visibility;
|
|
1690
1690
|
/**
|
|
1691
1691
|
* @minLength `0`
|
|
1692
1692
|
* @maxLength `100`
|
|
@@ -1698,11 +1698,11 @@ export type DataLabelOptions = {
|
|
|
1698
1698
|
LabelColor?: string;
|
|
1699
1699
|
LabelContent?: DataLabelContent;
|
|
1700
1700
|
LabelFontConfiguration?: FontConfiguration;
|
|
1701
|
-
MeasureLabelVisibility?:
|
|
1701
|
+
MeasureLabelVisibility?: Visibility;
|
|
1702
1702
|
Overlap?: DataLabelOverlap;
|
|
1703
1703
|
Position?: DataLabelPosition;
|
|
1704
|
-
TotalsVisibility?:
|
|
1705
|
-
Visibility?:
|
|
1704
|
+
TotalsVisibility?: Visibility;
|
|
1705
|
+
Visibility?: Visibility;
|
|
1706
1706
|
};
|
|
1707
1707
|
/**
|
|
1708
1708
|
* Type definition for `AWS::QuickSight::Template.DataLabelOverlap`.
|
|
@@ -1752,7 +1752,7 @@ export type DataPathLabelType = {
|
|
|
1752
1752
|
* @maxLength `2048`
|
|
1753
1753
|
*/
|
|
1754
1754
|
FieldValue?: string;
|
|
1755
|
-
Visibility?:
|
|
1755
|
+
Visibility?: Visibility;
|
|
1756
1756
|
};
|
|
1757
1757
|
/**
|
|
1758
1758
|
* Type definition for `AWS::QuickSight::Template.DataPathSort`.
|
|
@@ -1850,7 +1850,7 @@ export type DateAggregationFunction = "COUNT" | "DISTINCT_COUNT" | "MIN" | "MAX"
|
|
|
1850
1850
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-dateaxisoptions.html}
|
|
1851
1851
|
*/
|
|
1852
1852
|
export type DateAxisOptions = {
|
|
1853
|
-
MissingDateVisibility?:
|
|
1853
|
+
MissingDateVisibility?: Visibility;
|
|
1854
1854
|
};
|
|
1855
1855
|
/**
|
|
1856
1856
|
* Type definition for `AWS::QuickSight::Template.DateDimensionField`.
|
|
@@ -2189,7 +2189,7 @@ export type DimensionField = {
|
|
|
2189
2189
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-donutcenteroptions.html}
|
|
2190
2190
|
*/
|
|
2191
2191
|
export type DonutCenterOptions = {
|
|
2192
|
-
LabelVisibility?:
|
|
2192
|
+
LabelVisibility?: Visibility;
|
|
2193
2193
|
};
|
|
2194
2194
|
/**
|
|
2195
2195
|
* Type definition for `AWS::QuickSight::Template.DonutOptions`.
|
|
@@ -2293,7 +2293,7 @@ export type ExplicitHierarchy = {
|
|
|
2293
2293
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-fieldbasedtooltip.html}
|
|
2294
2294
|
*/
|
|
2295
2295
|
export type FieldBasedTooltip = {
|
|
2296
|
-
AggregationVisibility?:
|
|
2296
|
+
AggregationVisibility?: Visibility;
|
|
2297
2297
|
/**
|
|
2298
2298
|
* @minLength `0`
|
|
2299
2299
|
* @maxLength `100`
|
|
@@ -2311,7 +2311,7 @@ export type FieldLabelType = {
|
|
|
2311
2311
|
* @maxLength `512`
|
|
2312
2312
|
*/
|
|
2313
2313
|
FieldId?: string;
|
|
2314
|
-
Visibility?:
|
|
2314
|
+
Visibility?: Visibility;
|
|
2315
2315
|
};
|
|
2316
2316
|
/**
|
|
2317
2317
|
* Type definition for `AWS::QuickSight::Template.FieldSeriesItem`.
|
|
@@ -2358,7 +2358,7 @@ export type FieldTooltipItem = {
|
|
|
2358
2358
|
FieldId: string;
|
|
2359
2359
|
Label?: string;
|
|
2360
2360
|
TooltipTarget?: TooltipTarget;
|
|
2361
|
-
Visibility?:
|
|
2361
|
+
Visibility?: Visibility;
|
|
2362
2362
|
};
|
|
2363
2363
|
/**
|
|
2364
2364
|
* Type definition for `AWS::QuickSight::Template.FilledMapAggregatedFieldWells`.
|
|
@@ -2944,7 +2944,7 @@ export type FreeFormLayoutElement = {
|
|
|
2944
2944
|
*/
|
|
2945
2945
|
RenderingRules?: SheetElementRenderingRule[];
|
|
2946
2946
|
SelectedBorderStyle?: FreeFormLayoutElementBorderStyle;
|
|
2947
|
-
Visibility?:
|
|
2947
|
+
Visibility?: Visibility;
|
|
2948
2948
|
/**
|
|
2949
2949
|
* String based length that is composed of value and unit in px
|
|
2950
2950
|
*/
|
|
@@ -2967,7 +2967,7 @@ export type FreeFormLayoutElementBackgroundStyle = {
|
|
|
2967
2967
|
* @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
|
|
2968
2968
|
*/
|
|
2969
2969
|
Color?: string;
|
|
2970
|
-
Visibility?:
|
|
2970
|
+
Visibility?: Visibility;
|
|
2971
2971
|
};
|
|
2972
2972
|
/**
|
|
2973
2973
|
* Type definition for `AWS::QuickSight::Template.FreeFormLayoutElementBorderStyle`.
|
|
@@ -2978,7 +2978,7 @@ export type FreeFormLayoutElementBorderStyle = {
|
|
|
2978
2978
|
* @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
|
|
2979
2979
|
*/
|
|
2980
2980
|
Color?: string;
|
|
2981
|
-
Visibility?:
|
|
2981
|
+
Visibility?: Visibility;
|
|
2982
2982
|
};
|
|
2983
2983
|
/**
|
|
2984
2984
|
* Type definition for `AWS::QuickSight::Template.FreeFormLayoutScreenCanvasSizeOptions`.
|
|
@@ -3035,16 +3035,16 @@ export type FunnelChartConfiguration = {
|
|
|
3035
3035
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-funnelchartdatalabeloptions.html}
|
|
3036
3036
|
*/
|
|
3037
3037
|
export type FunnelChartDataLabelOptions = {
|
|
3038
|
-
CategoryLabelVisibility?:
|
|
3038
|
+
CategoryLabelVisibility?: Visibility;
|
|
3039
3039
|
/**
|
|
3040
3040
|
* @pattern `^#[A-F0-9]{6}$`
|
|
3041
3041
|
*/
|
|
3042
3042
|
LabelColor?: string;
|
|
3043
3043
|
LabelFontConfiguration?: FontConfiguration;
|
|
3044
3044
|
MeasureDataLabelStyle?: FunnelChartMeasureDataLabelStyle;
|
|
3045
|
-
MeasureLabelVisibility?:
|
|
3045
|
+
MeasureLabelVisibility?: Visibility;
|
|
3046
3046
|
Position?: DataLabelPosition;
|
|
3047
|
-
Visibility?:
|
|
3047
|
+
Visibility?: Visibility;
|
|
3048
3048
|
};
|
|
3049
3049
|
/**
|
|
3050
3050
|
* Type definition for `AWS::QuickSight::Template.FunnelChartFieldWells`.
|
|
@@ -3702,7 +3702,7 @@ export type ImageInteractionOptions = {
|
|
|
3702
3702
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-imagemenuoption.html}
|
|
3703
3703
|
*/
|
|
3704
3704
|
export type ImageMenuOption = {
|
|
3705
|
-
AvailabilityStatus?:
|
|
3705
|
+
AvailabilityStatus?: unknown;
|
|
3706
3706
|
};
|
|
3707
3707
|
/**
|
|
3708
3708
|
* Type definition for `AWS::QuickSight::Template.InnerFilter`.
|
|
@@ -3918,9 +3918,9 @@ export type KPISparklineOptions = {
|
|
|
3918
3918
|
* @pattern `^#[A-F0-9]{6}$`
|
|
3919
3919
|
*/
|
|
3920
3920
|
Color?: string;
|
|
3921
|
-
TooltipVisibility?:
|
|
3921
|
+
TooltipVisibility?: Visibility;
|
|
3922
3922
|
Type: KPISparklineType;
|
|
3923
|
-
Visibility?:
|
|
3923
|
+
Visibility?: Visibility;
|
|
3924
3924
|
};
|
|
3925
3925
|
/**
|
|
3926
3926
|
* Type definition for `AWS::QuickSight::Template.KPISparklineType`.
|
|
@@ -3984,7 +3984,7 @@ export type KPIVisualStandardLayoutType = "CLASSIC" | "VERTICAL";
|
|
|
3984
3984
|
export type LabelOptions = {
|
|
3985
3985
|
CustomLabel?: string;
|
|
3986
3986
|
FontConfiguration?: FontConfiguration;
|
|
3987
|
-
Visibility?:
|
|
3987
|
+
Visibility?: Visibility;
|
|
3988
3988
|
};
|
|
3989
3989
|
/**
|
|
3990
3990
|
* Type definition for `AWS::QuickSight::Template.Layout`.
|
|
@@ -4019,7 +4019,7 @@ export type LegendOptions = {
|
|
|
4019
4019
|
Position?: LegendPosition;
|
|
4020
4020
|
Title?: LabelOptions;
|
|
4021
4021
|
ValueFontConfiguration?: FontConfiguration;
|
|
4022
|
-
Visibility?:
|
|
4022
|
+
Visibility?: Visibility;
|
|
4023
4023
|
/**
|
|
4024
4024
|
* String based length that is composed of value and unit in px
|
|
4025
4025
|
*/
|
|
@@ -4126,7 +4126,7 @@ export type LineChartLineStyle = "SOLID" | "DOTTED" | "DASHED";
|
|
|
4126
4126
|
export type LineChartLineStyleSettings = {
|
|
4127
4127
|
LineInterpolation?: LineInterpolation;
|
|
4128
4128
|
LineStyle?: LineChartLineStyle;
|
|
4129
|
-
LineVisibility?:
|
|
4129
|
+
LineVisibility?: Visibility;
|
|
4130
4130
|
/**
|
|
4131
4131
|
* String based length that is composed of value and unit in px
|
|
4132
4132
|
*/
|
|
@@ -4151,7 +4151,7 @@ export type LineChartMarkerStyleSettings = {
|
|
|
4151
4151
|
* String based length that is composed of value and unit in px
|
|
4152
4152
|
*/
|
|
4153
4153
|
MarkerSize?: string;
|
|
4154
|
-
MarkerVisibility?:
|
|
4154
|
+
MarkerVisibility?: Visibility;
|
|
4155
4155
|
};
|
|
4156
4156
|
/**
|
|
4157
4157
|
* Type definition for `AWS::QuickSight::Template.LineChartSeriesSettings`.
|
|
@@ -4247,21 +4247,21 @@ export type ListControlDisplayOptions = {
|
|
|
4247
4247
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-listcontrolsearchoptions.html}
|
|
4248
4248
|
*/
|
|
4249
4249
|
export type ListControlSearchOptions = {
|
|
4250
|
-
Visibility?:
|
|
4250
|
+
Visibility?: Visibility;
|
|
4251
4251
|
};
|
|
4252
4252
|
/**
|
|
4253
4253
|
* Type definition for `AWS::QuickSight::Template.ListControlSelectAllOptions`.
|
|
4254
4254
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-listcontrolselectalloptions.html}
|
|
4255
4255
|
*/
|
|
4256
4256
|
export type ListControlSelectAllOptions = {
|
|
4257
|
-
Visibility?:
|
|
4257
|
+
Visibility?: Visibility;
|
|
4258
4258
|
};
|
|
4259
4259
|
/**
|
|
4260
4260
|
* Type definition for `AWS::QuickSight::Template.LoadingAnimation`.
|
|
4261
4261
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-loadinganimation.html}
|
|
4262
4262
|
*/
|
|
4263
4263
|
export type LoadingAnimation = {
|
|
4264
|
-
Visibility?:
|
|
4264
|
+
Visibility?: Visibility;
|
|
4265
4265
|
};
|
|
4266
4266
|
/**
|
|
4267
4267
|
* Type definition for `AWS::QuickSight::Template.LocalNavigationConfiguration`.
|
|
@@ -4318,7 +4318,7 @@ export type MapZoomMode = "AUTO" | "MANUAL";
|
|
|
4318
4318
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-maximumlabeltype.html}
|
|
4319
4319
|
*/
|
|
4320
4320
|
export type MaximumLabelType = {
|
|
4321
|
-
Visibility?:
|
|
4321
|
+
Visibility?: Visibility;
|
|
4322
4322
|
};
|
|
4323
4323
|
/**
|
|
4324
4324
|
* Type definition for `AWS::QuickSight::Template.MaximumMinimumComputation`.
|
|
@@ -4372,7 +4372,7 @@ export type MetricComparisonComputation = {
|
|
|
4372
4372
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-minimumlabeltype.html}
|
|
4373
4373
|
*/
|
|
4374
4374
|
export type MinimumLabelType = {
|
|
4375
|
-
Visibility?:
|
|
4375
|
+
Visibility?: Visibility;
|
|
4376
4376
|
};
|
|
4377
4377
|
/**
|
|
4378
4378
|
* Type definition for `AWS::QuickSight::Template.MissingDataConfiguration`.
|
|
@@ -4634,7 +4634,7 @@ export type PanelConfiguration = {
|
|
|
4634
4634
|
* @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
|
|
4635
4635
|
*/
|
|
4636
4636
|
BackgroundColor?: string;
|
|
4637
|
-
BackgroundVisibility?:
|
|
4637
|
+
BackgroundVisibility?: Visibility;
|
|
4638
4638
|
/**
|
|
4639
4639
|
* @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
|
|
4640
4640
|
*/
|
|
@@ -4644,12 +4644,12 @@ export type PanelConfiguration = {
|
|
|
4644
4644
|
* String based length that is composed of value and unit in px
|
|
4645
4645
|
*/
|
|
4646
4646
|
BorderThickness?: string;
|
|
4647
|
-
BorderVisibility?:
|
|
4647
|
+
BorderVisibility?: Visibility;
|
|
4648
4648
|
/**
|
|
4649
4649
|
* String based length that is composed of value and unit in px
|
|
4650
4650
|
*/
|
|
4651
4651
|
GutterSpacing?: string;
|
|
4652
|
-
GutterVisibility?:
|
|
4652
|
+
GutterVisibility?: Visibility;
|
|
4653
4653
|
Title?: PanelTitleOptions;
|
|
4654
4654
|
};
|
|
4655
4655
|
/**
|
|
@@ -4659,7 +4659,7 @@ export type PanelConfiguration = {
|
|
|
4659
4659
|
export type PanelTitleOptions = {
|
|
4660
4660
|
FontConfiguration?: FontConfiguration;
|
|
4661
4661
|
HorizontalTextAlignment?: HorizontalTextAlignment;
|
|
4662
|
-
Visibility?:
|
|
4662
|
+
Visibility?: Visibility;
|
|
4663
4663
|
};
|
|
4664
4664
|
/**
|
|
4665
4665
|
* Type definition for `AWS::QuickSight::Template.PaperOrientation`.
|
|
@@ -5197,7 +5197,7 @@ export type PivotTableFieldOption = {
|
|
|
5197
5197
|
* @maxLength `512`
|
|
5198
5198
|
*/
|
|
5199
5199
|
FieldId: string;
|
|
5200
|
-
Visibility?:
|
|
5200
|
+
Visibility?: Visibility;
|
|
5201
5201
|
};
|
|
5202
5202
|
/**
|
|
5203
5203
|
* Type definition for `AWS::QuickSight::Template.PivotTableFieldOptions`.
|
|
@@ -5245,9 +5245,9 @@ export type PivotTableMetricPlacement = "ROW" | "COLUMN";
|
|
|
5245
5245
|
*/
|
|
5246
5246
|
export type PivotTableOptions = {
|
|
5247
5247
|
CellStyle?: TableCellStyle;
|
|
5248
|
-
CollapsedRowDimensionsVisibility?:
|
|
5248
|
+
CollapsedRowDimensionsVisibility?: Visibility;
|
|
5249
5249
|
ColumnHeaderStyle?: TableCellStyle;
|
|
5250
|
-
ColumnNamesVisibility?:
|
|
5250
|
+
ColumnNamesVisibility?: Visibility;
|
|
5251
5251
|
/**
|
|
5252
5252
|
* String based length that is composed of value and unit in px
|
|
5253
5253
|
*/
|
|
@@ -5258,16 +5258,16 @@ export type PivotTableOptions = {
|
|
|
5258
5258
|
RowHeaderStyle?: TableCellStyle;
|
|
5259
5259
|
RowsLabelOptions?: PivotTableRowsLabelOptions;
|
|
5260
5260
|
RowsLayout?: PivotTableRowsLayout;
|
|
5261
|
-
SingleMetricVisibility?:
|
|
5262
|
-
ToggleButtonsVisibility?:
|
|
5261
|
+
SingleMetricVisibility?: Visibility;
|
|
5262
|
+
ToggleButtonsVisibility?: Visibility;
|
|
5263
5263
|
};
|
|
5264
5264
|
/**
|
|
5265
5265
|
* Type definition for `AWS::QuickSight::Template.PivotTablePaginatedReportOptions`.
|
|
5266
5266
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-pivottablepaginatedreportoptions.html}
|
|
5267
5267
|
*/
|
|
5268
5268
|
export type PivotTablePaginatedReportOptions = {
|
|
5269
|
-
OverflowColumnHeaderVisibility?:
|
|
5270
|
-
VerticalOverflowVisibility?:
|
|
5269
|
+
OverflowColumnHeaderVisibility?: Visibility;
|
|
5270
|
+
VerticalOverflowVisibility?: Visibility;
|
|
5271
5271
|
};
|
|
5272
5272
|
/**
|
|
5273
5273
|
* Type definition for `AWS::QuickSight::Template.PivotTableRowsLabelOptions`.
|
|
@@ -5279,7 +5279,7 @@ export type PivotTableRowsLabelOptions = {
|
|
|
5279
5279
|
* @maxLength `1024`
|
|
5280
5280
|
*/
|
|
5281
5281
|
CustomLabel?: string;
|
|
5282
|
-
Visibility?:
|
|
5282
|
+
Visibility?: Visibility;
|
|
5283
5283
|
};
|
|
5284
5284
|
/**
|
|
5285
5285
|
* Type definition for `AWS::QuickSight::Template.PivotTableRowsLayout`.
|
|
@@ -5362,7 +5362,7 @@ export type PivotTotalOptions = {
|
|
|
5362
5362
|
*/
|
|
5363
5363
|
TotalAggregationOptions?: TotalAggregationOption[];
|
|
5364
5364
|
TotalCellStyle?: TableCellStyle;
|
|
5365
|
-
TotalsVisibility?:
|
|
5365
|
+
TotalsVisibility?: Visibility;
|
|
5366
5366
|
ValueCellStyle?: TableCellStyle;
|
|
5367
5367
|
};
|
|
5368
5368
|
/**
|
|
@@ -5498,7 +5498,7 @@ export type PrimaryValueDisplayType = "HIDDEN" | "COMPARISON" | "ACTUAL";
|
|
|
5498
5498
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-progressbaroptions.html}
|
|
5499
5499
|
*/
|
|
5500
5500
|
export type ProgressBarOptions = {
|
|
5501
|
-
Visibility?:
|
|
5501
|
+
Visibility?: Visibility;
|
|
5502
5502
|
};
|
|
5503
5503
|
/**
|
|
5504
5504
|
* Type definition for `AWS::QuickSight::Template.QueryExecutionMode`.
|
|
@@ -5538,7 +5538,7 @@ export type RadarChartAggregatedFieldWells = {
|
|
|
5538
5538
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-radarchartareastylesettings.html}
|
|
5539
5539
|
*/
|
|
5540
5540
|
export type RadarChartAreaStyleSettings = {
|
|
5541
|
-
Visibility?:
|
|
5541
|
+
Visibility?: Visibility;
|
|
5542
5542
|
};
|
|
5543
5543
|
/**
|
|
5544
5544
|
* Type definition for `AWS::QuickSight::Template.RadarChartAxesRangeScale`.
|
|
@@ -5550,7 +5550,7 @@ export type RadarChartAxesRangeScale = "AUTO" | "INDEPENDENT" | "SHARED";
|
|
|
5550
5550
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-radarchartconfiguration.html}
|
|
5551
5551
|
*/
|
|
5552
5552
|
export type RadarChartConfiguration = {
|
|
5553
|
-
AlternateBandColorsVisibility?:
|
|
5553
|
+
AlternateBandColorsVisibility?: Visibility;
|
|
5554
5554
|
/**
|
|
5555
5555
|
* @pattern `^#[A-F0-9]{6}$`
|
|
5556
5556
|
*/
|
|
@@ -5648,7 +5648,7 @@ export type RadarChartVisual = {
|
|
|
5648
5648
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-rangeendslabeltype.html}
|
|
5649
5649
|
*/
|
|
5650
5650
|
export type RangeEndsLabelType = {
|
|
5651
|
-
Visibility?:
|
|
5651
|
+
Visibility?: Visibility;
|
|
5652
5652
|
};
|
|
5653
5653
|
/**
|
|
5654
5654
|
* Type definition for `AWS::QuickSight::Template.ReferenceLine`.
|
|
@@ -6084,7 +6084,7 @@ export type ScatterPlotVisual = {
|
|
|
6084
6084
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-scrollbaroptions.html}
|
|
6085
6085
|
*/
|
|
6086
6086
|
export type ScrollBarOptions = {
|
|
6087
|
-
Visibility?:
|
|
6087
|
+
Visibility?: Visibility;
|
|
6088
6088
|
VisibleRange?: VisibleRangeOptions;
|
|
6089
6089
|
};
|
|
6090
6090
|
/**
|
|
@@ -6092,7 +6092,7 @@ export type ScrollBarOptions = {
|
|
|
6092
6092
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-secondaryvalueoptions.html}
|
|
6093
6093
|
*/
|
|
6094
6094
|
export type SecondaryValueOptions = {
|
|
6095
|
-
Visibility?:
|
|
6095
|
+
Visibility?: Visibility;
|
|
6096
6096
|
};
|
|
6097
6097
|
/**
|
|
6098
6098
|
* Type definition for `AWS::QuickSight::Template.SectionAfterPageBreak`.
|
|
@@ -6273,7 +6273,7 @@ export type SheetControlInfoIconLabelOptions = {
|
|
|
6273
6273
|
* @maxLength `100`
|
|
6274
6274
|
*/
|
|
6275
6275
|
InfoIconText?: string;
|
|
6276
|
-
Visibility?:
|
|
6276
|
+
Visibility?: Visibility;
|
|
6277
6277
|
};
|
|
6278
6278
|
/**
|
|
6279
6279
|
* Type definition for `AWS::QuickSight::Template.SheetControlLayout`.
|
|
@@ -6367,7 +6367,7 @@ export type SheetDefinition = {
|
|
|
6367
6367
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-sheetelementconfigurationoverrides.html}
|
|
6368
6368
|
*/
|
|
6369
6369
|
export type SheetElementConfigurationOverrides = {
|
|
6370
|
-
Visibility?:
|
|
6370
|
+
Visibility?: Visibility;
|
|
6371
6371
|
};
|
|
6372
6372
|
/**
|
|
6373
6373
|
* Type definition for `AWS::QuickSight::Template.SheetElementRenderingRule`.
|
|
@@ -6444,7 +6444,7 @@ export type SheetImageStaticFileSource = {
|
|
|
6444
6444
|
*/
|
|
6445
6445
|
export type SheetImageTooltipConfiguration = {
|
|
6446
6446
|
TooltipText?: SheetImageTooltipText;
|
|
6447
|
-
Visibility?:
|
|
6447
|
+
Visibility?: Visibility;
|
|
6448
6448
|
};
|
|
6449
6449
|
/**
|
|
6450
6450
|
* Type definition for `AWS::QuickSight::Template.SheetImageTooltipText`.
|
|
@@ -6694,7 +6694,7 @@ export type SubtotalOptions = {
|
|
|
6694
6694
|
*/
|
|
6695
6695
|
StyleTargets?: TableStyleTarget[];
|
|
6696
6696
|
TotalCellStyle?: TableCellStyle;
|
|
6697
|
-
TotalsVisibility?:
|
|
6697
|
+
TotalsVisibility?: Visibility;
|
|
6698
6698
|
ValueCellStyle?: TableCellStyle;
|
|
6699
6699
|
};
|
|
6700
6700
|
/**
|
|
@@ -6777,7 +6777,7 @@ export type TableCellStyle = {
|
|
|
6777
6777
|
HorizontalTextAlignment?: HorizontalTextAlignment;
|
|
6778
6778
|
TextWrap?: TextWrap;
|
|
6779
6779
|
VerticalTextAlignment?: VerticalTextAlignment;
|
|
6780
|
-
Visibility?:
|
|
6780
|
+
Visibility?: Visibility;
|
|
6781
6781
|
};
|
|
6782
6782
|
/**
|
|
6783
6783
|
* Type definition for `AWS::QuickSight::Template.TableConditionalFormatting`.
|
|
@@ -6874,7 +6874,7 @@ export type TableFieldOption = {
|
|
|
6874
6874
|
*/
|
|
6875
6875
|
FieldId: string;
|
|
6876
6876
|
URLStyling?: TableFieldURLConfiguration;
|
|
6877
|
-
Visibility?:
|
|
6877
|
+
Visibility?: Visibility;
|
|
6878
6878
|
/**
|
|
6879
6879
|
* String based length that is composed of value and unit in px
|
|
6880
6880
|
*/
|
|
@@ -6940,8 +6940,8 @@ export type TableOrientation = "VERTICAL" | "HORIZONTAL";
|
|
|
6940
6940
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-tablepaginatedreportoptions.html}
|
|
6941
6941
|
*/
|
|
6942
6942
|
export type TablePaginatedReportOptions = {
|
|
6943
|
-
OverflowColumnHeaderVisibility?:
|
|
6944
|
-
VerticalOverflowVisibility?:
|
|
6943
|
+
OverflowColumnHeaderVisibility?: Visibility;
|
|
6944
|
+
VerticalOverflowVisibility?: Visibility;
|
|
6945
6945
|
};
|
|
6946
6946
|
/**
|
|
6947
6947
|
* Type definition for `AWS::QuickSight::Template.TablePinnedFieldOptions`.
|
|
@@ -7245,7 +7245,7 @@ export type TextConditionalFormat = {
|
|
|
7245
7245
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-textcontrolplaceholderoptions.html}
|
|
7246
7246
|
*/
|
|
7247
7247
|
export type TextControlPlaceholderOptions = {
|
|
7248
|
-
Visibility?:
|
|
7248
|
+
Visibility?: Visibility;
|
|
7249
7249
|
};
|
|
7250
7250
|
/**
|
|
7251
7251
|
* Type definition for `AWS::QuickSight::Template.TextFieldControlDisplayOptions`.
|
|
@@ -7267,7 +7267,7 @@ export type TextWrap = "NONE" | "WRAP";
|
|
|
7267
7267
|
*/
|
|
7268
7268
|
export type ThousandSeparatorOptions = {
|
|
7269
7269
|
Symbol?: NumericSeparatorSymbol;
|
|
7270
|
-
Visibility?:
|
|
7270
|
+
Visibility?: Visibility;
|
|
7271
7271
|
};
|
|
7272
7272
|
/**
|
|
7273
7273
|
* Type definition for `AWS::QuickSight::Template.TimeBasedForecastProperties`.
|
|
@@ -7385,7 +7385,7 @@ export type TooltipItem = {
|
|
|
7385
7385
|
export type TooltipOptions = {
|
|
7386
7386
|
FieldBasedTooltip?: FieldBasedTooltip;
|
|
7387
7387
|
SelectedTooltipType?: SelectedTooltipType;
|
|
7388
|
-
TooltipVisibility?:
|
|
7388
|
+
TooltipVisibility?: Visibility;
|
|
7389
7389
|
};
|
|
7390
7390
|
/**
|
|
7391
7391
|
* Type definition for `AWS::QuickSight::Template.TooltipTarget`.
|
|
@@ -7525,7 +7525,7 @@ export type TotalOptions = {
|
|
|
7525
7525
|
*/
|
|
7526
7526
|
TotalAggregationOptions?: TotalAggregationOption[];
|
|
7527
7527
|
TotalCellStyle?: TableCellStyle;
|
|
7528
|
-
TotalsVisibility?:
|
|
7528
|
+
TotalsVisibility?: Visibility;
|
|
7529
7529
|
};
|
|
7530
7530
|
/**
|
|
7531
7531
|
* Type definition for `AWS::QuickSight::Template.TreeMapAggregatedFieldWells`.
|
|
@@ -7617,7 +7617,7 @@ export type TreeMapVisual = {
|
|
|
7617
7617
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-trendarrowoptions.html}
|
|
7618
7618
|
*/
|
|
7619
7619
|
export type TrendArrowOptions = {
|
|
7620
|
-
Visibility?:
|
|
7620
|
+
Visibility?: Visibility;
|
|
7621
7621
|
};
|
|
7622
7622
|
/**
|
|
7623
7623
|
* Type definition for `AWS::QuickSight::Template.UnaggregatedField`.
|
|
@@ -7674,6 +7674,11 @@ export type ValueWhenUnsetOption = "RECOMMENDED_VALUE" | "NULL";
|
|
|
7674
7674
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-verticaltextalignment.html}
|
|
7675
7675
|
*/
|
|
7676
7676
|
export type VerticalTextAlignment = "TOP" | "MIDDLE" | "BOTTOM" | "AUTO";
|
|
7677
|
+
/**
|
|
7678
|
+
* Type definition for `AWS::QuickSight::Template.Visibility`.
|
|
7679
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-visibility.html}
|
|
7680
|
+
*/
|
|
7681
|
+
export type Visibility = "HIDDEN" | "VISIBLE";
|
|
7677
7682
|
/**
|
|
7678
7683
|
* Type definition for `AWS::QuickSight::Template.VisibleRangeOptions`.
|
|
7679
7684
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-visiblerangeoptions.html}
|
|
@@ -7771,7 +7776,7 @@ export type VisualPalette = {
|
|
|
7771
7776
|
*/
|
|
7772
7777
|
export type VisualSubtitleLabelOptions = {
|
|
7773
7778
|
FormatText?: LongFormatText;
|
|
7774
|
-
Visibility?:
|
|
7779
|
+
Visibility?: Visibility;
|
|
7775
7780
|
};
|
|
7776
7781
|
/**
|
|
7777
7782
|
* Type definition for `AWS::QuickSight::Template.VisualTitleLabelOptions`.
|
|
@@ -7779,7 +7784,7 @@ export type VisualSubtitleLabelOptions = {
|
|
|
7779
7784
|
*/
|
|
7780
7785
|
export type VisualTitleLabelOptions = {
|
|
7781
7786
|
FormatText?: ShortFormatText;
|
|
7782
|
-
Visibility?:
|
|
7787
|
+
Visibility?: Visibility;
|
|
7783
7788
|
};
|
|
7784
7789
|
/**
|
|
7785
7790
|
* Type definition for `AWS::QuickSight::Template.WaterfallChartAggregatedFieldWells`.
|
|
@@ -162,6 +162,7 @@ export type CodeRepository = {
|
|
|
162
162
|
*/
|
|
163
163
|
export type CustomFileSystemConfig = {
|
|
164
164
|
EFSFileSystemConfig?: EFSFileSystemConfig;
|
|
165
|
+
FSxLustreFileSystemConfig?: FSxLustreFileSystemConfig;
|
|
165
166
|
};
|
|
166
167
|
/**
|
|
167
168
|
* Type definition for `AWS::SageMaker::Domain.CustomImage`.
|
|
@@ -338,6 +339,24 @@ export type EFSFileSystemConfig = {
|
|
|
338
339
|
*/
|
|
339
340
|
FileSystemPath?: string;
|
|
340
341
|
};
|
|
342
|
+
/**
|
|
343
|
+
* Type definition for `AWS::SageMaker::Domain.FSxLustreFileSystemConfig`.
|
|
344
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-fsxlustrefilesystemconfig.html}
|
|
345
|
+
*/
|
|
346
|
+
export type FSxLustreFileSystemConfig = {
|
|
347
|
+
/**
|
|
348
|
+
* @minLength `11`
|
|
349
|
+
* @maxLength `21`
|
|
350
|
+
* @pattern `^(fs-[0-9a-f]{8,})$`
|
|
351
|
+
*/
|
|
352
|
+
FileSystemId: string;
|
|
353
|
+
/**
|
|
354
|
+
* @minLength `1`
|
|
355
|
+
* @maxLength `256`
|
|
356
|
+
* @pattern `^\/\S*$`
|
|
357
|
+
*/
|
|
358
|
+
FileSystemPath?: string;
|
|
359
|
+
};
|
|
341
360
|
/**
|
|
342
361
|
* Type definition for `AWS::SageMaker::Domain.IdleSettings`.
|
|
343
362
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-idlesettings.html}
|
|
@@ -74,6 +74,7 @@ export type CodeRepository = {
|
|
|
74
74
|
*/
|
|
75
75
|
export type CustomFileSystem = {
|
|
76
76
|
EFSFileSystem?: EFSFileSystem;
|
|
77
|
+
FSxLustreFileSystem?: FSxLustreFileSystem;
|
|
77
78
|
};
|
|
78
79
|
/**
|
|
79
80
|
* Type definition for `AWS::SageMaker::Space.CustomImage`.
|
|
@@ -124,6 +125,18 @@ export type EFSFileSystem = {
|
|
|
124
125
|
*/
|
|
125
126
|
FileSystemId: string;
|
|
126
127
|
};
|
|
128
|
+
/**
|
|
129
|
+
* Type definition for `AWS::SageMaker::Space.FSxLustreFileSystem`.
|
|
130
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-space-fsxlustrefilesystem.html}
|
|
131
|
+
*/
|
|
132
|
+
export type FSxLustreFileSystem = {
|
|
133
|
+
/**
|
|
134
|
+
* @minLength `11`
|
|
135
|
+
* @maxLength `21`
|
|
136
|
+
* @pattern `^(fs-[0-9a-f]{8,})$`
|
|
137
|
+
*/
|
|
138
|
+
FileSystemId: string;
|
|
139
|
+
};
|
|
127
140
|
/**
|
|
128
141
|
* Type definition for `AWS::SageMaker::Space.JupyterServerAppSettings`.
|
|
129
142
|
* The JupyterServer app settings.
|
|
@@ -105,6 +105,7 @@ export type CodeRepository = {
|
|
|
105
105
|
*/
|
|
106
106
|
export type CustomFileSystemConfig = {
|
|
107
107
|
EFSFileSystemConfig?: EFSFileSystemConfig;
|
|
108
|
+
FSxLustreFileSystemConfig?: FSxLustreFileSystemConfig;
|
|
108
109
|
};
|
|
109
110
|
/**
|
|
110
111
|
* Type definition for `AWS::SageMaker::UserProfile.CustomImage`.
|
|
@@ -194,6 +195,24 @@ export type EFSFileSystemConfig = {
|
|
|
194
195
|
*/
|
|
195
196
|
FileSystemPath?: string;
|
|
196
197
|
};
|
|
198
|
+
/**
|
|
199
|
+
* Type definition for `AWS::SageMaker::UserProfile.FSxLustreFileSystemConfig`.
|
|
200
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-fsxlustrefilesystemconfig.html}
|
|
201
|
+
*/
|
|
202
|
+
export type FSxLustreFileSystemConfig = {
|
|
203
|
+
/**
|
|
204
|
+
* @minLength `11`
|
|
205
|
+
* @maxLength `21`
|
|
206
|
+
* @pattern `^(fs-[0-9a-f]{8,})$`
|
|
207
|
+
*/
|
|
208
|
+
FileSystemId: string;
|
|
209
|
+
/**
|
|
210
|
+
* @minLength `1`
|
|
211
|
+
* @maxLength `256`
|
|
212
|
+
* @pattern `^\/\S*$`
|
|
213
|
+
*/
|
|
214
|
+
FileSystemPath?: string;
|
|
215
|
+
};
|
|
197
216
|
/**
|
|
198
217
|
* Type definition for `AWS::SageMaker::UserProfile.IdleSettings`.
|
|
199
218
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-idlesettings.html}
|