@awboost/cfntypes 0.100.76 → 0.100.78
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.
@@ -17871,6 +17871,17 @@ export type BedrockDataSourceAttributes = {
|
|
17871
17871
|
*/
|
17872
17872
|
UpdatedAt: string;
|
17873
17873
|
};
|
17874
|
+
/**
|
17875
|
+
* Type definition for `AWS::Bedrock::DataSource.BedrockDataAutomationConfiguration`.
|
17876
|
+
* Settings for a Bedrock Data Automation used to parse documents for a data source.
|
17877
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-bedrockdataautomationconfiguration.html}
|
17878
|
+
*/
|
17879
|
+
export type BedrockDataSourceBedrockDataAutomationConfiguration = {
|
17880
|
+
/**
|
17881
|
+
* Determine how will parsed content be stored.
|
17882
|
+
*/
|
17883
|
+
ParsingModality?: BedrockDataSourceParsingModality;
|
17884
|
+
};
|
17874
17885
|
/**
|
17875
17886
|
* Type definition for `AWS::Bedrock::DataSource.BedrockFoundationModelConfiguration`.
|
17876
17887
|
* Settings for a foundation model used to parse documents for a data source.
|
@@ -17884,6 +17895,10 @@ export type BedrockDataSourceBedrockFoundationModelConfiguration = {
|
|
17884
17895
|
* @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-:.]+)$`
|
17885
17896
|
*/
|
17886
17897
|
ModelArn: string;
|
17898
|
+
/**
|
17899
|
+
* Determine how will parsed content be stored.
|
17900
|
+
*/
|
17901
|
+
ParsingModality?: BedrockDataSourceParsingModality;
|
17887
17902
|
/**
|
17888
17903
|
* Instructions for interpreting the contents of a document.
|
17889
17904
|
*/
|
@@ -18051,7 +18066,7 @@ export type BedrockDataSourceDataSourceStatus = "AVAILABLE" | "DELETING" | "DELE
|
|
18051
18066
|
* The type of the data source location.
|
18052
18067
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-datasourcetype.html}
|
18053
18068
|
*/
|
18054
|
-
export type BedrockDataSourceDataSourceType = "S3" | "CONFLUENCE" | "SALESFORCE" | "SHAREPOINT" | "WEB";
|
18069
|
+
export type BedrockDataSourceDataSourceType = "S3" | "CONFLUENCE" | "SALESFORCE" | "SHAREPOINT" | "WEB" | "CUSTOM";
|
18055
18070
|
/**
|
18056
18071
|
* Type definition for `AWS::Bedrock::DataSource.FixedSizeChunkingConfiguration`.
|
18057
18072
|
* Configurations for when you choose fixed-size chunking. If you set the chunkingStrategy as NONE, exclude this field.
|
@@ -18118,6 +18133,10 @@ export type BedrockDataSourceIntermediateStorage = {
|
|
18118
18133
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-parsingconfiguration.html}
|
18119
18134
|
*/
|
18120
18135
|
export type BedrockDataSourceParsingConfiguration = {
|
18136
|
+
/**
|
18137
|
+
* Settings for a Bedrock Data Automation used to parse documents for a data source.
|
18138
|
+
*/
|
18139
|
+
BedrockDataAutomationConfiguration?: BedrockDataSourceBedrockDataAutomationConfiguration;
|
18121
18140
|
/**
|
18122
18141
|
* Settings for a foundation model used to parse documents for a data source.
|
18123
18142
|
*/
|
@@ -18127,6 +18146,12 @@ export type BedrockDataSourceParsingConfiguration = {
|
|
18127
18146
|
*/
|
18128
18147
|
ParsingStrategy: BedrockDataSourceParsingStrategy;
|
18129
18148
|
};
|
18149
|
+
/**
|
18150
|
+
* Type definition for `AWS::Bedrock::DataSource.ParsingModality`.
|
18151
|
+
* Determine how will parsed content be stored.
|
18152
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-parsingmodality.html}
|
18153
|
+
*/
|
18154
|
+
export type BedrockDataSourceParsingModality = "MULTIMODAL";
|
18130
18155
|
/**
|
18131
18156
|
* Type definition for `AWS::Bedrock::DataSource.ParsingPrompt`.
|
18132
18157
|
* Instructions for interpreting the contents of a document.
|
@@ -18145,7 +18170,7 @@ export type BedrockDataSourceParsingPrompt = {
|
|
18145
18170
|
* The parsing strategy for the data source.
|
18146
18171
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-parsingstrategy.html}
|
18147
18172
|
*/
|
18148
|
-
export type BedrockDataSourceParsingStrategy = "BEDROCK_FOUNDATION_MODEL";
|
18173
|
+
export type BedrockDataSourceParsingStrategy = "BEDROCK_FOUNDATION_MODEL" | "BEDROCK_DATA_AUTOMATION";
|
18149
18174
|
/**
|
18150
18175
|
* Type definition for `AWS::Bedrock::DataSource.PatternObjectFilter`.
|
18151
18176
|
* The specific filters applied to your data source content. You can filter out or include certain content.
|
@@ -20568,7 +20593,7 @@ export type BedrockKnowledgeBaseProps = {
|
|
20568
20593
|
/**
|
20569
20594
|
* The vector store service in which the knowledge base is stored.
|
20570
20595
|
*/
|
20571
|
-
StorageConfiguration
|
20596
|
+
StorageConfiguration?: BedrockKnowledgeBaseStorageConfiguration;
|
20572
20597
|
/**
|
20573
20598
|
* A map of tag keys and values
|
20574
20599
|
*/
|
@@ -20633,12 +20658,28 @@ export type BedrockKnowledgeBaseEmbeddingModelConfiguration = {
|
|
20633
20658
|
*/
|
20634
20659
|
BedrockEmbeddingModelConfiguration?: BedrockKnowledgeBaseBedrockEmbeddingModelConfiguration;
|
20635
20660
|
};
|
20661
|
+
/**
|
20662
|
+
* Type definition for `AWS::Bedrock::KnowledgeBase.KendraKnowledgeBaseConfiguration`.
|
20663
|
+
* Configurations for a Kendra knowledge base
|
20664
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-kendraknowledgebaseconfiguration.html}
|
20665
|
+
*/
|
20666
|
+
export type BedrockKnowledgeBaseKendraKnowledgeBaseConfiguration = {
|
20667
|
+
/**
|
20668
|
+
* Arn of a Kendra index
|
20669
|
+
* @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})$`
|
20670
|
+
*/
|
20671
|
+
KendraIndexArn: string;
|
20672
|
+
};
|
20636
20673
|
/**
|
20637
20674
|
* Type definition for `AWS::Bedrock::KnowledgeBase.KnowledgeBaseConfiguration`.
|
20638
20675
|
* Contains details about the embeddings model used for the knowledge base.
|
20639
20676
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-knowledgebaseconfiguration.html}
|
20640
20677
|
*/
|
20641
20678
|
export type BedrockKnowledgeBaseKnowledgeBaseConfiguration = {
|
20679
|
+
/**
|
20680
|
+
* Configurations for a Kendra knowledge base
|
20681
|
+
*/
|
20682
|
+
KendraKnowledgeBaseConfiguration?: BedrockKnowledgeBaseKendraKnowledgeBaseConfiguration;
|
20642
20683
|
/**
|
20643
20684
|
* The type of a knowledge base.
|
20644
20685
|
*/
|
@@ -20646,7 +20687,7 @@ export type BedrockKnowledgeBaseKnowledgeBaseConfiguration = {
|
|
20646
20687
|
/**
|
20647
20688
|
* Contains details about the model used to create vector embeddings for the knowledge base.
|
20648
20689
|
*/
|
20649
|
-
VectorKnowledgeBaseConfiguration
|
20690
|
+
VectorKnowledgeBaseConfiguration?: BedrockKnowledgeBaseVectorKnowledgeBaseConfiguration;
|
20650
20691
|
};
|
20651
20692
|
/**
|
20652
20693
|
* Type definition for `AWS::Bedrock::KnowledgeBase.KnowledgeBaseStatus`.
|
@@ -20665,7 +20706,7 @@ export type BedrockKnowledgeBaseKnowledgeBaseStorageType = "OPENSEARCH_SERVERLES
|
|
20665
20706
|
* The type of a knowledge base.
|
20666
20707
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-knowledgebasetype.html}
|
20667
20708
|
*/
|
20668
|
-
export type BedrockKnowledgeBaseKnowledgeBaseType = "VECTOR";
|
20709
|
+
export type BedrockKnowledgeBaseKnowledgeBaseType = "VECTOR" | "KENDRA";
|
20669
20710
|
/**
|
20670
20711
|
* Type definition for `AWS::Bedrock::KnowledgeBase.MongoDbAtlasConfiguration`.
|
20671
20712
|
* Contains the storage configuration of the knowledge base in MongoDb Atlas Cloud.
|
@@ -20896,6 +20937,20 @@ export type BedrockKnowledgeBaseRdsFieldMapping = {
|
|
20896
20937
|
*/
|
20897
20938
|
VectorField: string;
|
20898
20939
|
};
|
20940
|
+
/**
|
20941
|
+
* Type definition for `AWS::Bedrock::KnowledgeBase.S3Location`.
|
20942
|
+
* An Amazon S3 location.
|
20943
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-s3location.html}
|
20944
|
+
*/
|
20945
|
+
export type BedrockKnowledgeBaseS3Location = {
|
20946
|
+
/**
|
20947
|
+
* The location's URI
|
20948
|
+
* @minLength `1`
|
20949
|
+
* @maxLength `2048`
|
20950
|
+
* @pattern `^s3://.{1,128}$`
|
20951
|
+
*/
|
20952
|
+
URI: string;
|
20953
|
+
};
|
20899
20954
|
/**
|
20900
20955
|
* Type definition for `AWS::Bedrock::KnowledgeBase.StorageConfiguration`.
|
20901
20956
|
* The vector store service in which the knowledge base is stored.
|
@@ -20923,6 +20978,40 @@ export type BedrockKnowledgeBaseStorageConfiguration = {
|
|
20923
20978
|
*/
|
20924
20979
|
Type: BedrockKnowledgeBaseKnowledgeBaseStorageType;
|
20925
20980
|
};
|
20981
|
+
/**
|
20982
|
+
* Type definition for `AWS::Bedrock::KnowledgeBase.SupplementalDataStorageConfiguration`.
|
20983
|
+
* Configurations for supplemental data storage.
|
20984
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-supplementaldatastorageconfiguration.html}
|
20985
|
+
*/
|
20986
|
+
export type BedrockKnowledgeBaseSupplementalDataStorageConfiguration = {
|
20987
|
+
/**
|
20988
|
+
* List of supplemental data storage locations.
|
20989
|
+
* @minLength `1`
|
20990
|
+
* @maxLength `1`
|
20991
|
+
*/
|
20992
|
+
SupplementalDataStorageLocations: BedrockKnowledgeBaseSupplementalDataStorageLocation[];
|
20993
|
+
};
|
20994
|
+
/**
|
20995
|
+
* Type definition for `AWS::Bedrock::KnowledgeBase.SupplementalDataStorageLocation`.
|
20996
|
+
* Supplemental data storage location.
|
20997
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-supplementaldatastoragelocation.html}
|
20998
|
+
*/
|
20999
|
+
export type BedrockKnowledgeBaseSupplementalDataStorageLocation = {
|
21000
|
+
/**
|
21001
|
+
* An Amazon S3 location.
|
21002
|
+
*/
|
21003
|
+
S3Location?: BedrockKnowledgeBaseS3Location;
|
21004
|
+
/**
|
21005
|
+
* Supplemental data storage location type.
|
21006
|
+
*/
|
21007
|
+
SupplementalDataStorageLocationType: BedrockKnowledgeBaseSupplementalDataStorageLocationType;
|
21008
|
+
};
|
21009
|
+
/**
|
21010
|
+
* Type definition for `AWS::Bedrock::KnowledgeBase.SupplementalDataStorageLocationType`.
|
21011
|
+
* Supplemental data storage location type.
|
21012
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-supplementaldatastoragelocationtype.html}
|
21013
|
+
*/
|
21014
|
+
export type BedrockKnowledgeBaseSupplementalDataStorageLocationType = "S3";
|
20926
21015
|
/**
|
20927
21016
|
* Type definition for `AWS::Bedrock::KnowledgeBase.TagsMap`.
|
20928
21017
|
* A map of tag keys and values
|
@@ -20946,6 +21035,10 @@ export type BedrockKnowledgeBaseVectorKnowledgeBaseConfiguration = {
|
|
20946
21035
|
* The embeddings model configuration details for the vector model used in Knowledge Base.
|
20947
21036
|
*/
|
20948
21037
|
EmbeddingModelConfiguration?: BedrockKnowledgeBaseEmbeddingModelConfiguration;
|
21038
|
+
/**
|
21039
|
+
* Configurations for supplemental data storage.
|
21040
|
+
*/
|
21041
|
+
SupplementalDataStorageConfiguration?: BedrockKnowledgeBaseSupplementalDataStorageConfiguration;
|
20949
21042
|
};
|
20950
21043
|
/**
|
20951
21044
|
* Definition of AWS::Bedrock::Prompt Resource Type
|
@@ -49721,7 +49814,7 @@ export type EC2LaunchTemplateLaunchTemplateData = {
|
|
49721
49814
|
* The network interfaces for the instance.
|
49722
49815
|
*/
|
49723
49816
|
NetworkInterfaces?: EC2LaunchTemplateNetworkInterface[];
|
49724
|
-
NetworkPerformanceOptions?:
|
49817
|
+
NetworkPerformanceOptions?: unknown;
|
49725
49818
|
/**
|
49726
49819
|
* The placement for the instance.
|
49727
49820
|
*/
|
@@ -54863,6 +54956,10 @@ export type EC2VPCEndpointServiceProps = {
|
|
54863
54956
|
GatewayLoadBalancerArns?: string[];
|
54864
54957
|
NetworkLoadBalancerArns?: string[];
|
54865
54958
|
PayerResponsibility?: string;
|
54959
|
+
/**
|
54960
|
+
* The tags to add to the VPC endpoint service.
|
54961
|
+
*/
|
54962
|
+
Tags?: EC2VPCEndpointServiceTag[];
|
54866
54963
|
};
|
54867
54964
|
/**
|
54868
54965
|
* Attribute type definition for `AWS::EC2::VPCEndpointService`.
|
@@ -54871,6 +54968,14 @@ export type EC2VPCEndpointServiceProps = {
|
|
54871
54968
|
export type EC2VPCEndpointServiceAttributes = {
|
54872
54969
|
ServiceId: string;
|
54873
54970
|
};
|
54971
|
+
/**
|
54972
|
+
* Type definition for `AWS::EC2::VPCEndpointService.Tag`.
|
54973
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpcendpointservice-tag.html}
|
54974
|
+
*/
|
54975
|
+
export type EC2VPCEndpointServiceTag = {
|
54976
|
+
Key: string;
|
54977
|
+
Value: string;
|
54978
|
+
};
|
54874
54979
|
/**
|
54875
54980
|
* Resource Type definition for AWS::EC2::VPCEndpointServicePermissions
|
54876
54981
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservicepermissions.html}
|
@@ -124447,7 +124552,7 @@ export type QuickSightAnalysisGeospatialLayerJoinDefinition = {
|
|
124447
124552
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatiallayermapconfiguration.html}
|
124448
124553
|
*/
|
124449
124554
|
export type QuickSightAnalysisGeospatialLayerMapConfiguration = {
|
124450
|
-
Interactions?:
|
124555
|
+
Interactions?: unknown;
|
124451
124556
|
Legend?: QuickSightAnalysisLegendOptions;
|
124452
124557
|
MapLayers?: QuickSightAnalysisGeospatialLayerItem[];
|
124453
124558
|
MapState?: QuickSightAnalysisGeospatialMapState;
|
@@ -124517,7 +124622,7 @@ export type QuickSightAnalysisGeospatialMapAggregatedFieldWells = {
|
|
124517
124622
|
*/
|
124518
124623
|
export type QuickSightAnalysisGeospatialMapConfiguration = {
|
124519
124624
|
FieldWells?: QuickSightAnalysisGeospatialMapFieldWells;
|
124520
|
-
Interactions?:
|
124625
|
+
Interactions?: unknown;
|
124521
124626
|
Legend?: QuickSightAnalysisLegendOptions;
|
124522
124627
|
MapStyleOptions?: QuickSightAnalysisGeospatialMapStyleOptions;
|
124523
124628
|
PointStyleOptions?: QuickSightAnalysisGeospatialPointStyleOptions;
|
@@ -125055,7 +125160,7 @@ export type QuickSightAnalysisImageInteractionOptions = {
|
|
125055
125160
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-imagemenuoption.html}
|
125056
125161
|
*/
|
125057
125162
|
export type QuickSightAnalysisImageMenuOption = {
|
125058
|
-
AvailabilityStatus?:
|
125163
|
+
AvailabilityStatus?: unknown;
|
125059
125164
|
};
|
125060
125165
|
/**
|
125061
125166
|
* Type definition for `AWS::QuickSight::Analysis.ImageStaticFile`.
|
@@ -131147,7 +131252,7 @@ export type QuickSightDashboardDashboardPublishOptions = {
|
|
131147
131252
|
*/
|
131148
131253
|
SheetLayoutElementMaximizationOption?: QuickSightDashboardSheetLayoutElementMaximizationOption;
|
131149
131254
|
VisualAxisSortOption?: QuickSightDashboardVisualAxisSortOption;
|
131150
|
-
VisualMenuOption?:
|
131255
|
+
VisualMenuOption?: QuickSightDashboardVisualMenuOption;
|
131151
131256
|
/**
|
131152
131257
|
* <p>The visual publish options of a visual in a dashboard</p>
|
131153
131258
|
*/
|
@@ -133131,7 +133236,7 @@ export type QuickSightDashboardGeospatialLayerJoinDefinition = {
|
|
133131
133236
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallayermapconfiguration.html}
|
133132
133237
|
*/
|
133133
133238
|
export type QuickSightDashboardGeospatialLayerMapConfiguration = {
|
133134
|
-
Interactions?:
|
133239
|
+
Interactions?: unknown;
|
133135
133240
|
Legend?: QuickSightDashboardLegendOptions;
|
133136
133241
|
MapLayers?: QuickSightDashboardGeospatialLayerItem[];
|
133137
133242
|
MapState?: QuickSightDashboardGeospatialMapState;
|
@@ -133201,7 +133306,7 @@ export type QuickSightDashboardGeospatialMapAggregatedFieldWells = {
|
|
133201
133306
|
*/
|
133202
133307
|
export type QuickSightDashboardGeospatialMapConfiguration = {
|
133203
133308
|
FieldWells?: QuickSightDashboardGeospatialMapFieldWells;
|
133204
|
-
Interactions?:
|
133309
|
+
Interactions?: unknown;
|
133205
133310
|
Legend?: QuickSightDashboardLegendOptions;
|
133206
133311
|
MapStyleOptions?: QuickSightDashboardGeospatialMapStyleOptions;
|
133207
133312
|
PointStyleOptions?: QuickSightDashboardGeospatialPointStyleOptions;
|
@@ -137843,6 +137948,13 @@ export type QuickSightDashboardVisualCustomActionOperation = {
|
|
137843
137948
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualcustomactiontrigger.html}
|
137844
137949
|
*/
|
137845
137950
|
export type QuickSightDashboardVisualCustomActionTrigger = "DATA_POINT_CLICK" | "DATA_POINT_MENU";
|
137951
|
+
/**
|
137952
|
+
* Type definition for `AWS::QuickSight::Dashboard.VisualMenuOption`.
|
137953
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualmenuoption.html}
|
137954
|
+
*/
|
137955
|
+
export type QuickSightDashboardVisualMenuOption = {
|
137956
|
+
AvailabilityStatus?: QuickSightDashboardDashboardBehavior;
|
137957
|
+
};
|
137846
137958
|
/**
|
137847
137959
|
* Type definition for `AWS::QuickSight::Dashboard.VisualPalette`.
|
137848
137960
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualpalette.html}
|
@@ -138603,6 +138715,11 @@ export type QuickSightDataSetFieldFolder = {
|
|
138603
138715
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-fieldfoldermap.html}
|
138604
138716
|
*/
|
138605
138717
|
export type QuickSightDataSetFieldFolderMap = Record<string, QuickSightDataSetFieldFolder>;
|
138718
|
+
/**
|
138719
|
+
* Type definition for `AWS::QuickSight::DataSet.FileFormat`.
|
138720
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-fileformat.html}
|
138721
|
+
*/
|
138722
|
+
export type QuickSightDataSetFileFormat = "CSV" | "TSV" | "CLF" | "ELF" | "XLSX" | "JSON";
|
138606
138723
|
/**
|
138607
138724
|
* Type definition for `AWS::QuickSight::DataSet.FilterOperation`.
|
138608
138725
|
* <p>A transform operation that filters rows based on a condition.</p>
|
@@ -139196,7 +139313,10 @@ export type QuickSightDataSetS3Source = {
|
|
139196
139313
|
* @maxLength `2048`
|
139197
139314
|
*/
|
139198
139315
|
InputColumns: QuickSightDataSetInputColumn[];
|
139199
|
-
|
139316
|
+
/**
|
139317
|
+
* <p>Information about the format for a source file or files.</p>
|
139318
|
+
*/
|
139319
|
+
UploadSettings?: QuickSightDataSetUploadSettings;
|
139200
139320
|
};
|
139201
139321
|
/**
|
139202
139322
|
* Type definition for `AWS::QuickSight::DataSet.Status`.
|
@@ -139284,6 +139404,11 @@ export type QuickSightDataSetTagColumnOperation = {
|
|
139284
139404
|
*/
|
139285
139405
|
Tags: QuickSightDataSetColumnTag[];
|
139286
139406
|
};
|
139407
|
+
/**
|
139408
|
+
* Type definition for `AWS::QuickSight::DataSet.TextQualifier`.
|
139409
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-textqualifier.html}
|
139410
|
+
*/
|
139411
|
+
export type QuickSightDataSetTextQualifier = "DOUBLE_QUOTE" | "SINGLE_QUOTE";
|
139287
139412
|
/**
|
139288
139413
|
* Type definition for `AWS::QuickSight::DataSet.TimeGranularity`.
|
139289
139414
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-timegranularity.html}
|
@@ -139359,6 +139484,30 @@ export type QuickSightDataSetUntagColumnOperation = {
|
|
139359
139484
|
*/
|
139360
139485
|
TagNames: QuickSightDataSetColumnTagName[];
|
139361
139486
|
};
|
139487
|
+
/**
|
139488
|
+
* Type definition for `AWS::QuickSight::DataSet.UploadSettings`.
|
139489
|
+
* <p>Information about the format for a source file or files.</p>
|
139490
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-uploadsettings.html}
|
139491
|
+
*/
|
139492
|
+
export type QuickSightDataSetUploadSettings = {
|
139493
|
+
/**
|
139494
|
+
* <p>Whether the file has a header row, or the files each have a header row.</p>
|
139495
|
+
*/
|
139496
|
+
ContainsHeader?: boolean;
|
139497
|
+
/**
|
139498
|
+
* <p>The delimiter between values in the file.</p>
|
139499
|
+
* @minLength `1`
|
139500
|
+
* @maxLength `1`
|
139501
|
+
*/
|
139502
|
+
Delimiter?: string;
|
139503
|
+
Format?: QuickSightDataSetFileFormat;
|
139504
|
+
/**
|
139505
|
+
* <p>A row number to start reading data from.</p>
|
139506
|
+
* @min `1`
|
139507
|
+
*/
|
139508
|
+
StartFromRow?: number;
|
139509
|
+
TextQualifier?: QuickSightDataSetTextQualifier;
|
139510
|
+
};
|
139362
139511
|
/**
|
139363
139512
|
* Definition of the AWS::QuickSight::DataSource Resource Type.
|
139364
139513
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-datasource.html}
|
@@ -140756,7 +140905,7 @@ export type QuickSightTemplateAttributes = {
|
|
140756
140905
|
ImageContentAltText: string;
|
140757
140906
|
Interactions: {
|
140758
140907
|
ImageMenuOption: {
|
140759
|
-
AvailabilityStatus:
|
140908
|
+
AvailabilityStatus: unknown;
|
140760
140909
|
};
|
140761
140910
|
};
|
140762
140911
|
Scaling: {
|
@@ -140786,7 +140935,7 @@ export type QuickSightTemplateAttributes = {
|
|
140786
140935
|
*/
|
140787
140936
|
PlainText: string;
|
140788
140937
|
};
|
140789
|
-
Visibility:
|
140938
|
+
Visibility: QuickSightTemplateVisibility;
|
140790
140939
|
};
|
140791
140940
|
}[];
|
140792
140941
|
/**
|
@@ -140958,13 +141107,13 @@ export type QuickSightTemplateAxisDisplayMinMaxRange = {
|
|
140958
141107
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-axisdisplayoptions.html}
|
140959
141108
|
*/
|
140960
141109
|
export type QuickSightTemplateAxisDisplayOptions = {
|
140961
|
-
AxisLineVisibility?:
|
141110
|
+
AxisLineVisibility?: QuickSightTemplateVisibility;
|
140962
141111
|
/**
|
140963
141112
|
* String based length that is composed of value and unit in px
|
140964
141113
|
*/
|
140965
141114
|
AxisOffset?: string;
|
140966
141115
|
DataOptions?: QuickSightTemplateAxisDataOptions;
|
140967
|
-
GridLineVisibility?:
|
141116
|
+
GridLineVisibility?: QuickSightTemplateVisibility;
|
140968
141117
|
ScrollbarOptions?: QuickSightTemplateScrollBarOptions;
|
140969
141118
|
TickLabelOptions?: QuickSightTemplateAxisTickLabelOptions;
|
140970
141119
|
};
|
@@ -141261,8 +141410,8 @@ export type QuickSightTemplateBoxPlotFillStyle = "SOLID" | "TRANSPARENT";
|
|
141261
141410
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-boxplotoptions.html}
|
141262
141411
|
*/
|
141263
141412
|
export type QuickSightTemplateBoxPlotOptions = {
|
141264
|
-
AllDataPointsVisibility?:
|
141265
|
-
OutlierVisibility?:
|
141413
|
+
AllDataPointsVisibility?: QuickSightTemplateVisibility;
|
141414
|
+
OutlierVisibility?: QuickSightTemplateVisibility;
|
141266
141415
|
StyleOptions?: QuickSightTemplateBoxPlotStyleOptions;
|
141267
141416
|
};
|
141268
141417
|
/**
|
@@ -141472,8 +141621,8 @@ export type QuickSightTemplateChartAxisLabelOptions = {
|
|
141472
141621
|
* @maxLength `100`
|
141473
141622
|
*/
|
141474
141623
|
AxisLabelOptions?: QuickSightTemplateAxisLabelOptions[];
|
141475
|
-
SortIconVisibility?:
|
141476
|
-
Visibility?:
|
141624
|
+
SortIconVisibility?: QuickSightTemplateVisibility;
|
141625
|
+
Visibility?: QuickSightTemplateVisibility;
|
141477
141626
|
};
|
141478
141627
|
/**
|
141479
141628
|
* Type definition for `AWS::QuickSight::Template.ClusterMarker`.
|
@@ -141623,7 +141772,7 @@ export type QuickSightTemplateColumnTooltipItem = {
|
|
141623
141772
|
Column: QuickSightTemplateColumnIdentifier;
|
141624
141773
|
Label?: string;
|
141625
141774
|
TooltipTarget?: QuickSightTemplateTooltipTarget;
|
141626
|
-
Visibility?:
|
141775
|
+
Visibility?: QuickSightTemplateVisibility;
|
141627
141776
|
};
|
141628
141777
|
/**
|
141629
141778
|
* Type definition for `AWS::QuickSight::Template.ComboChartAggregatedFieldWells`.
|
@@ -142161,7 +142310,7 @@ export type QuickSightTemplateDataLabelContent = "VALUE" | "PERCENT" | "VALUE_AN
|
|
142161
142310
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-datalabeloptions.html}
|
142162
142311
|
*/
|
142163
142312
|
export type QuickSightTemplateDataLabelOptions = {
|
142164
|
-
CategoryLabelVisibility?:
|
142313
|
+
CategoryLabelVisibility?: QuickSightTemplateVisibility;
|
142165
142314
|
/**
|
142166
142315
|
* @minLength `0`
|
142167
142316
|
* @maxLength `100`
|
@@ -142173,11 +142322,11 @@ export type QuickSightTemplateDataLabelOptions = {
|
|
142173
142322
|
LabelColor?: string;
|
142174
142323
|
LabelContent?: QuickSightTemplateDataLabelContent;
|
142175
142324
|
LabelFontConfiguration?: QuickSightTemplateFontConfiguration;
|
142176
|
-
MeasureLabelVisibility?:
|
142325
|
+
MeasureLabelVisibility?: QuickSightTemplateVisibility;
|
142177
142326
|
Overlap?: QuickSightTemplateDataLabelOverlap;
|
142178
142327
|
Position?: QuickSightTemplateDataLabelPosition;
|
142179
|
-
TotalsVisibility?:
|
142180
|
-
Visibility?:
|
142328
|
+
TotalsVisibility?: QuickSightTemplateVisibility;
|
142329
|
+
Visibility?: QuickSightTemplateVisibility;
|
142181
142330
|
};
|
142182
142331
|
/**
|
142183
142332
|
* Type definition for `AWS::QuickSight::Template.DataLabelOverlap`.
|
@@ -142227,7 +142376,7 @@ export type QuickSightTemplateDataPathLabelType = {
|
|
142227
142376
|
* @maxLength `2048`
|
142228
142377
|
*/
|
142229
142378
|
FieldValue?: string;
|
142230
|
-
Visibility?:
|
142379
|
+
Visibility?: QuickSightTemplateVisibility;
|
142231
142380
|
};
|
142232
142381
|
/**
|
142233
142382
|
* Type definition for `AWS::QuickSight::Template.DataPathSort`.
|
@@ -142325,7 +142474,7 @@ export type QuickSightTemplateDateAggregationFunction = "COUNT" | "DISTINCT_COUN
|
|
142325
142474
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-dateaxisoptions.html}
|
142326
142475
|
*/
|
142327
142476
|
export type QuickSightTemplateDateAxisOptions = {
|
142328
|
-
MissingDateVisibility?:
|
142477
|
+
MissingDateVisibility?: QuickSightTemplateVisibility;
|
142329
142478
|
};
|
142330
142479
|
/**
|
142331
142480
|
* Type definition for `AWS::QuickSight::Template.DateDimensionField`.
|
@@ -142664,7 +142813,7 @@ export type QuickSightTemplateDimensionField = {
|
|
142664
142813
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-donutcenteroptions.html}
|
142665
142814
|
*/
|
142666
142815
|
export type QuickSightTemplateDonutCenterOptions = {
|
142667
|
-
LabelVisibility?:
|
142816
|
+
LabelVisibility?: QuickSightTemplateVisibility;
|
142668
142817
|
};
|
142669
142818
|
/**
|
142670
142819
|
* Type definition for `AWS::QuickSight::Template.DonutOptions`.
|
@@ -142768,7 +142917,7 @@ export type QuickSightTemplateExplicitHierarchy = {
|
|
142768
142917
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-fieldbasedtooltip.html}
|
142769
142918
|
*/
|
142770
142919
|
export type QuickSightTemplateFieldBasedTooltip = {
|
142771
|
-
AggregationVisibility?:
|
142920
|
+
AggregationVisibility?: QuickSightTemplateVisibility;
|
142772
142921
|
/**
|
142773
142922
|
* @minLength `0`
|
142774
142923
|
* @maxLength `100`
|
@@ -142786,7 +142935,7 @@ export type QuickSightTemplateFieldLabelType = {
|
|
142786
142935
|
* @maxLength `512`
|
142787
142936
|
*/
|
142788
142937
|
FieldId?: string;
|
142789
|
-
Visibility?:
|
142938
|
+
Visibility?: QuickSightTemplateVisibility;
|
142790
142939
|
};
|
142791
142940
|
/**
|
142792
142941
|
* Type definition for `AWS::QuickSight::Template.FieldSeriesItem`.
|
@@ -142833,7 +142982,7 @@ export type QuickSightTemplateFieldTooltipItem = {
|
|
142833
142982
|
FieldId: string;
|
142834
142983
|
Label?: string;
|
142835
142984
|
TooltipTarget?: QuickSightTemplateTooltipTarget;
|
142836
|
-
Visibility?:
|
142985
|
+
Visibility?: QuickSightTemplateVisibility;
|
142837
142986
|
};
|
142838
142987
|
/**
|
142839
142988
|
* Type definition for `AWS::QuickSight::Template.FilledMapAggregatedFieldWells`.
|
@@ -143419,7 +143568,7 @@ export type QuickSightTemplateFreeFormLayoutElement = {
|
|
143419
143568
|
*/
|
143420
143569
|
RenderingRules?: QuickSightTemplateSheetElementRenderingRule[];
|
143421
143570
|
SelectedBorderStyle?: QuickSightTemplateFreeFormLayoutElementBorderStyle;
|
143422
|
-
Visibility?:
|
143571
|
+
Visibility?: QuickSightTemplateVisibility;
|
143423
143572
|
/**
|
143424
143573
|
* String based length that is composed of value and unit in px
|
143425
143574
|
*/
|
@@ -143442,7 +143591,7 @@ export type QuickSightTemplateFreeFormLayoutElementBackgroundStyle = {
|
|
143442
143591
|
* @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
|
143443
143592
|
*/
|
143444
143593
|
Color?: string;
|
143445
|
-
Visibility?:
|
143594
|
+
Visibility?: QuickSightTemplateVisibility;
|
143446
143595
|
};
|
143447
143596
|
/**
|
143448
143597
|
* Type definition for `AWS::QuickSight::Template.FreeFormLayoutElementBorderStyle`.
|
@@ -143453,7 +143602,7 @@ export type QuickSightTemplateFreeFormLayoutElementBorderStyle = {
|
|
143453
143602
|
* @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
|
143454
143603
|
*/
|
143455
143604
|
Color?: string;
|
143456
|
-
Visibility?:
|
143605
|
+
Visibility?: QuickSightTemplateVisibility;
|
143457
143606
|
};
|
143458
143607
|
/**
|
143459
143608
|
* Type definition for `AWS::QuickSight::Template.FreeFormLayoutScreenCanvasSizeOptions`.
|
@@ -143510,16 +143659,16 @@ export type QuickSightTemplateFunnelChartConfiguration = {
|
|
143510
143659
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-funnelchartdatalabeloptions.html}
|
143511
143660
|
*/
|
143512
143661
|
export type QuickSightTemplateFunnelChartDataLabelOptions = {
|
143513
|
-
CategoryLabelVisibility?:
|
143662
|
+
CategoryLabelVisibility?: QuickSightTemplateVisibility;
|
143514
143663
|
/**
|
143515
143664
|
* @pattern `^#[A-F0-9]{6}$`
|
143516
143665
|
*/
|
143517
143666
|
LabelColor?: string;
|
143518
143667
|
LabelFontConfiguration?: QuickSightTemplateFontConfiguration;
|
143519
143668
|
MeasureDataLabelStyle?: QuickSightTemplateFunnelChartMeasureDataLabelStyle;
|
143520
|
-
MeasureLabelVisibility?:
|
143669
|
+
MeasureLabelVisibility?: QuickSightTemplateVisibility;
|
143521
143670
|
Position?: QuickSightTemplateDataLabelPosition;
|
143522
|
-
Visibility?:
|
143671
|
+
Visibility?: QuickSightTemplateVisibility;
|
143523
143672
|
};
|
143524
143673
|
/**
|
143525
143674
|
* Type definition for `AWS::QuickSight::Template.FunnelChartFieldWells`.
|
@@ -144177,7 +144326,7 @@ export type QuickSightTemplateImageInteractionOptions = {
|
|
144177
144326
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-imagemenuoption.html}
|
144178
144327
|
*/
|
144179
144328
|
export type QuickSightTemplateImageMenuOption = {
|
144180
|
-
AvailabilityStatus?:
|
144329
|
+
AvailabilityStatus?: unknown;
|
144181
144330
|
};
|
144182
144331
|
/**
|
144183
144332
|
* Type definition for `AWS::QuickSight::Template.InnerFilter`.
|
@@ -144393,9 +144542,9 @@ export type QuickSightTemplateKPISparklineOptions = {
|
|
144393
144542
|
* @pattern `^#[A-F0-9]{6}$`
|
144394
144543
|
*/
|
144395
144544
|
Color?: string;
|
144396
|
-
TooltipVisibility?:
|
144545
|
+
TooltipVisibility?: QuickSightTemplateVisibility;
|
144397
144546
|
Type: QuickSightTemplateKPISparklineType;
|
144398
|
-
Visibility?:
|
144547
|
+
Visibility?: QuickSightTemplateVisibility;
|
144399
144548
|
};
|
144400
144549
|
/**
|
144401
144550
|
* Type definition for `AWS::QuickSight::Template.KPISparklineType`.
|
@@ -144459,7 +144608,7 @@ export type QuickSightTemplateKPIVisualStandardLayoutType = "CLASSIC" | "VERTICA
|
|
144459
144608
|
export type QuickSightTemplateLabelOptions = {
|
144460
144609
|
CustomLabel?: string;
|
144461
144610
|
FontConfiguration?: QuickSightTemplateFontConfiguration;
|
144462
|
-
Visibility?:
|
144611
|
+
Visibility?: QuickSightTemplateVisibility;
|
144463
144612
|
};
|
144464
144613
|
/**
|
144465
144614
|
* Type definition for `AWS::QuickSight::Template.Layout`.
|
@@ -144494,7 +144643,7 @@ export type QuickSightTemplateLegendOptions = {
|
|
144494
144643
|
Position?: QuickSightTemplateLegendPosition;
|
144495
144644
|
Title?: QuickSightTemplateLabelOptions;
|
144496
144645
|
ValueFontConfiguration?: QuickSightTemplateFontConfiguration;
|
144497
|
-
Visibility?:
|
144646
|
+
Visibility?: QuickSightTemplateVisibility;
|
144498
144647
|
/**
|
144499
144648
|
* String based length that is composed of value and unit in px
|
144500
144649
|
*/
|
@@ -144601,7 +144750,7 @@ export type QuickSightTemplateLineChartLineStyle = "SOLID" | "DOTTED" | "DASHED"
|
|
144601
144750
|
export type QuickSightTemplateLineChartLineStyleSettings = {
|
144602
144751
|
LineInterpolation?: QuickSightTemplateLineInterpolation;
|
144603
144752
|
LineStyle?: QuickSightTemplateLineChartLineStyle;
|
144604
|
-
LineVisibility?:
|
144753
|
+
LineVisibility?: QuickSightTemplateVisibility;
|
144605
144754
|
/**
|
144606
144755
|
* String based length that is composed of value and unit in px
|
144607
144756
|
*/
|
@@ -144626,7 +144775,7 @@ export type QuickSightTemplateLineChartMarkerStyleSettings = {
|
|
144626
144775
|
* String based length that is composed of value and unit in px
|
144627
144776
|
*/
|
144628
144777
|
MarkerSize?: string;
|
144629
|
-
MarkerVisibility?:
|
144778
|
+
MarkerVisibility?: QuickSightTemplateVisibility;
|
144630
144779
|
};
|
144631
144780
|
/**
|
144632
144781
|
* Type definition for `AWS::QuickSight::Template.LineChartSeriesSettings`.
|
@@ -144722,21 +144871,21 @@ export type QuickSightTemplateListControlDisplayOptions = {
|
|
144722
144871
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-listcontrolsearchoptions.html}
|
144723
144872
|
*/
|
144724
144873
|
export type QuickSightTemplateListControlSearchOptions = {
|
144725
|
-
Visibility?:
|
144874
|
+
Visibility?: QuickSightTemplateVisibility;
|
144726
144875
|
};
|
144727
144876
|
/**
|
144728
144877
|
* Type definition for `AWS::QuickSight::Template.ListControlSelectAllOptions`.
|
144729
144878
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-listcontrolselectalloptions.html}
|
144730
144879
|
*/
|
144731
144880
|
export type QuickSightTemplateListControlSelectAllOptions = {
|
144732
|
-
Visibility?:
|
144881
|
+
Visibility?: QuickSightTemplateVisibility;
|
144733
144882
|
};
|
144734
144883
|
/**
|
144735
144884
|
* Type definition for `AWS::QuickSight::Template.LoadingAnimation`.
|
144736
144885
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-loadinganimation.html}
|
144737
144886
|
*/
|
144738
144887
|
export type QuickSightTemplateLoadingAnimation = {
|
144739
|
-
Visibility?:
|
144888
|
+
Visibility?: QuickSightTemplateVisibility;
|
144740
144889
|
};
|
144741
144890
|
/**
|
144742
144891
|
* Type definition for `AWS::QuickSight::Template.LocalNavigationConfiguration`.
|
@@ -144793,7 +144942,7 @@ export type QuickSightTemplateMapZoomMode = "AUTO" | "MANUAL";
|
|
144793
144942
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-maximumlabeltype.html}
|
144794
144943
|
*/
|
144795
144944
|
export type QuickSightTemplateMaximumLabelType = {
|
144796
|
-
Visibility?:
|
144945
|
+
Visibility?: QuickSightTemplateVisibility;
|
144797
144946
|
};
|
144798
144947
|
/**
|
144799
144948
|
* Type definition for `AWS::QuickSight::Template.MaximumMinimumComputation`.
|
@@ -144847,7 +144996,7 @@ export type QuickSightTemplateMetricComparisonComputation = {
|
|
144847
144996
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-minimumlabeltype.html}
|
144848
144997
|
*/
|
144849
144998
|
export type QuickSightTemplateMinimumLabelType = {
|
144850
|
-
Visibility?:
|
144999
|
+
Visibility?: QuickSightTemplateVisibility;
|
144851
145000
|
};
|
144852
145001
|
/**
|
144853
145002
|
* Type definition for `AWS::QuickSight::Template.MissingDataConfiguration`.
|
@@ -145109,7 +145258,7 @@ export type QuickSightTemplatePanelConfiguration = {
|
|
145109
145258
|
* @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
|
145110
145259
|
*/
|
145111
145260
|
BackgroundColor?: string;
|
145112
|
-
BackgroundVisibility?:
|
145261
|
+
BackgroundVisibility?: QuickSightTemplateVisibility;
|
145113
145262
|
/**
|
145114
145263
|
* @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
|
145115
145264
|
*/
|
@@ -145119,12 +145268,12 @@ export type QuickSightTemplatePanelConfiguration = {
|
|
145119
145268
|
* String based length that is composed of value and unit in px
|
145120
145269
|
*/
|
145121
145270
|
BorderThickness?: string;
|
145122
|
-
BorderVisibility?:
|
145271
|
+
BorderVisibility?: QuickSightTemplateVisibility;
|
145123
145272
|
/**
|
145124
145273
|
* String based length that is composed of value and unit in px
|
145125
145274
|
*/
|
145126
145275
|
GutterSpacing?: string;
|
145127
|
-
GutterVisibility?:
|
145276
|
+
GutterVisibility?: QuickSightTemplateVisibility;
|
145128
145277
|
Title?: QuickSightTemplatePanelTitleOptions;
|
145129
145278
|
};
|
145130
145279
|
/**
|
@@ -145134,7 +145283,7 @@ export type QuickSightTemplatePanelConfiguration = {
|
|
145134
145283
|
export type QuickSightTemplatePanelTitleOptions = {
|
145135
145284
|
FontConfiguration?: QuickSightTemplateFontConfiguration;
|
145136
145285
|
HorizontalTextAlignment?: QuickSightTemplateHorizontalTextAlignment;
|
145137
|
-
Visibility?:
|
145286
|
+
Visibility?: QuickSightTemplateVisibility;
|
145138
145287
|
};
|
145139
145288
|
/**
|
145140
145289
|
* Type definition for `AWS::QuickSight::Template.PaperOrientation`.
|
@@ -145672,7 +145821,7 @@ export type QuickSightTemplatePivotTableFieldOption = {
|
|
145672
145821
|
* @maxLength `512`
|
145673
145822
|
*/
|
145674
145823
|
FieldId: string;
|
145675
|
-
Visibility?:
|
145824
|
+
Visibility?: QuickSightTemplateVisibility;
|
145676
145825
|
};
|
145677
145826
|
/**
|
145678
145827
|
* Type definition for `AWS::QuickSight::Template.PivotTableFieldOptions`.
|
@@ -145720,9 +145869,9 @@ export type QuickSightTemplatePivotTableMetricPlacement = "ROW" | "COLUMN";
|
|
145720
145869
|
*/
|
145721
145870
|
export type QuickSightTemplatePivotTableOptions = {
|
145722
145871
|
CellStyle?: QuickSightTemplateTableCellStyle;
|
145723
|
-
CollapsedRowDimensionsVisibility?:
|
145872
|
+
CollapsedRowDimensionsVisibility?: QuickSightTemplateVisibility;
|
145724
145873
|
ColumnHeaderStyle?: QuickSightTemplateTableCellStyle;
|
145725
|
-
ColumnNamesVisibility?:
|
145874
|
+
ColumnNamesVisibility?: QuickSightTemplateVisibility;
|
145726
145875
|
/**
|
145727
145876
|
* String based length that is composed of value and unit in px
|
145728
145877
|
*/
|
@@ -145733,16 +145882,16 @@ export type QuickSightTemplatePivotTableOptions = {
|
|
145733
145882
|
RowHeaderStyle?: QuickSightTemplateTableCellStyle;
|
145734
145883
|
RowsLabelOptions?: QuickSightTemplatePivotTableRowsLabelOptions;
|
145735
145884
|
RowsLayout?: QuickSightTemplatePivotTableRowsLayout;
|
145736
|
-
SingleMetricVisibility?:
|
145737
|
-
ToggleButtonsVisibility?:
|
145885
|
+
SingleMetricVisibility?: QuickSightTemplateVisibility;
|
145886
|
+
ToggleButtonsVisibility?: QuickSightTemplateVisibility;
|
145738
145887
|
};
|
145739
145888
|
/**
|
145740
145889
|
* Type definition for `AWS::QuickSight::Template.PivotTablePaginatedReportOptions`.
|
145741
145890
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-pivottablepaginatedreportoptions.html}
|
145742
145891
|
*/
|
145743
145892
|
export type QuickSightTemplatePivotTablePaginatedReportOptions = {
|
145744
|
-
OverflowColumnHeaderVisibility?:
|
145745
|
-
VerticalOverflowVisibility?:
|
145893
|
+
OverflowColumnHeaderVisibility?: QuickSightTemplateVisibility;
|
145894
|
+
VerticalOverflowVisibility?: QuickSightTemplateVisibility;
|
145746
145895
|
};
|
145747
145896
|
/**
|
145748
145897
|
* Type definition for `AWS::QuickSight::Template.PivotTableRowsLabelOptions`.
|
@@ -145754,7 +145903,7 @@ export type QuickSightTemplatePivotTableRowsLabelOptions = {
|
|
145754
145903
|
* @maxLength `1024`
|
145755
145904
|
*/
|
145756
145905
|
CustomLabel?: string;
|
145757
|
-
Visibility?:
|
145906
|
+
Visibility?: QuickSightTemplateVisibility;
|
145758
145907
|
};
|
145759
145908
|
/**
|
145760
145909
|
* Type definition for `AWS::QuickSight::Template.PivotTableRowsLayout`.
|
@@ -145837,7 +145986,7 @@ export type QuickSightTemplatePivotTotalOptions = {
|
|
145837
145986
|
*/
|
145838
145987
|
TotalAggregationOptions?: QuickSightTemplateTotalAggregationOption[];
|
145839
145988
|
TotalCellStyle?: QuickSightTemplateTableCellStyle;
|
145840
|
-
TotalsVisibility?:
|
145989
|
+
TotalsVisibility?: QuickSightTemplateVisibility;
|
145841
145990
|
ValueCellStyle?: QuickSightTemplateTableCellStyle;
|
145842
145991
|
};
|
145843
145992
|
/**
|
@@ -145973,7 +146122,7 @@ export type QuickSightTemplatePrimaryValueDisplayType = "HIDDEN" | "COMPARISON"
|
|
145973
146122
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-progressbaroptions.html}
|
145974
146123
|
*/
|
145975
146124
|
export type QuickSightTemplateProgressBarOptions = {
|
145976
|
-
Visibility?:
|
146125
|
+
Visibility?: QuickSightTemplateVisibility;
|
145977
146126
|
};
|
145978
146127
|
/**
|
145979
146128
|
* Type definition for `AWS::QuickSight::Template.QueryExecutionMode`.
|
@@ -146013,7 +146162,7 @@ export type QuickSightTemplateRadarChartAggregatedFieldWells = {
|
|
146013
146162
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-radarchartareastylesettings.html}
|
146014
146163
|
*/
|
146015
146164
|
export type QuickSightTemplateRadarChartAreaStyleSettings = {
|
146016
|
-
Visibility?:
|
146165
|
+
Visibility?: QuickSightTemplateVisibility;
|
146017
146166
|
};
|
146018
146167
|
/**
|
146019
146168
|
* Type definition for `AWS::QuickSight::Template.RadarChartAxesRangeScale`.
|
@@ -146025,7 +146174,7 @@ export type QuickSightTemplateRadarChartAxesRangeScale = "AUTO" | "INDEPENDENT"
|
|
146025
146174
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-radarchartconfiguration.html}
|
146026
146175
|
*/
|
146027
146176
|
export type QuickSightTemplateRadarChartConfiguration = {
|
146028
|
-
AlternateBandColorsVisibility?:
|
146177
|
+
AlternateBandColorsVisibility?: QuickSightTemplateVisibility;
|
146029
146178
|
/**
|
146030
146179
|
* @pattern `^#[A-F0-9]{6}$`
|
146031
146180
|
*/
|
@@ -146123,7 +146272,7 @@ export type QuickSightTemplateRadarChartVisual = {
|
|
146123
146272
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-rangeendslabeltype.html}
|
146124
146273
|
*/
|
146125
146274
|
export type QuickSightTemplateRangeEndsLabelType = {
|
146126
|
-
Visibility?:
|
146275
|
+
Visibility?: QuickSightTemplateVisibility;
|
146127
146276
|
};
|
146128
146277
|
/**
|
146129
146278
|
* Type definition for `AWS::QuickSight::Template.ReferenceLine`.
|
@@ -146559,7 +146708,7 @@ export type QuickSightTemplateScatterPlotVisual = {
|
|
146559
146708
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-scrollbaroptions.html}
|
146560
146709
|
*/
|
146561
146710
|
export type QuickSightTemplateScrollBarOptions = {
|
146562
|
-
Visibility?:
|
146711
|
+
Visibility?: QuickSightTemplateVisibility;
|
146563
146712
|
VisibleRange?: QuickSightTemplateVisibleRangeOptions;
|
146564
146713
|
};
|
146565
146714
|
/**
|
@@ -146567,7 +146716,7 @@ export type QuickSightTemplateScrollBarOptions = {
|
|
146567
146716
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-secondaryvalueoptions.html}
|
146568
146717
|
*/
|
146569
146718
|
export type QuickSightTemplateSecondaryValueOptions = {
|
146570
|
-
Visibility?:
|
146719
|
+
Visibility?: QuickSightTemplateVisibility;
|
146571
146720
|
};
|
146572
146721
|
/**
|
146573
146722
|
* Type definition for `AWS::QuickSight::Template.SectionAfterPageBreak`.
|
@@ -146748,7 +146897,7 @@ export type QuickSightTemplateSheetControlInfoIconLabelOptions = {
|
|
146748
146897
|
* @maxLength `100`
|
146749
146898
|
*/
|
146750
146899
|
InfoIconText?: string;
|
146751
|
-
Visibility?:
|
146900
|
+
Visibility?: QuickSightTemplateVisibility;
|
146752
146901
|
};
|
146753
146902
|
/**
|
146754
146903
|
* Type definition for `AWS::QuickSight::Template.SheetControlLayout`.
|
@@ -146842,7 +146991,7 @@ export type QuickSightTemplateSheetDefinition = {
|
|
146842
146991
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-sheetelementconfigurationoverrides.html}
|
146843
146992
|
*/
|
146844
146993
|
export type QuickSightTemplateSheetElementConfigurationOverrides = {
|
146845
|
-
Visibility?:
|
146994
|
+
Visibility?: QuickSightTemplateVisibility;
|
146846
146995
|
};
|
146847
146996
|
/**
|
146848
146997
|
* Type definition for `AWS::QuickSight::Template.SheetElementRenderingRule`.
|
@@ -146919,7 +147068,7 @@ export type QuickSightTemplateSheetImageStaticFileSource = {
|
|
146919
147068
|
*/
|
146920
147069
|
export type QuickSightTemplateSheetImageTooltipConfiguration = {
|
146921
147070
|
TooltipText?: QuickSightTemplateSheetImageTooltipText;
|
146922
|
-
Visibility?:
|
147071
|
+
Visibility?: QuickSightTemplateVisibility;
|
146923
147072
|
};
|
146924
147073
|
/**
|
146925
147074
|
* Type definition for `AWS::QuickSight::Template.SheetImageTooltipText`.
|
@@ -147169,7 +147318,7 @@ export type QuickSightTemplateSubtotalOptions = {
|
|
147169
147318
|
*/
|
147170
147319
|
StyleTargets?: QuickSightTemplateTableStyleTarget[];
|
147171
147320
|
TotalCellStyle?: QuickSightTemplateTableCellStyle;
|
147172
|
-
TotalsVisibility?:
|
147321
|
+
TotalsVisibility?: QuickSightTemplateVisibility;
|
147173
147322
|
ValueCellStyle?: QuickSightTemplateTableCellStyle;
|
147174
147323
|
};
|
147175
147324
|
/**
|
@@ -147252,7 +147401,7 @@ export type QuickSightTemplateTableCellStyle = {
|
|
147252
147401
|
HorizontalTextAlignment?: QuickSightTemplateHorizontalTextAlignment;
|
147253
147402
|
TextWrap?: QuickSightTemplateTextWrap;
|
147254
147403
|
VerticalTextAlignment?: QuickSightTemplateVerticalTextAlignment;
|
147255
|
-
Visibility?:
|
147404
|
+
Visibility?: QuickSightTemplateVisibility;
|
147256
147405
|
};
|
147257
147406
|
/**
|
147258
147407
|
* Type definition for `AWS::QuickSight::Template.TableConditionalFormatting`.
|
@@ -147349,7 +147498,7 @@ export type QuickSightTemplateTableFieldOption = {
|
|
147349
147498
|
*/
|
147350
147499
|
FieldId: string;
|
147351
147500
|
URLStyling?: QuickSightTemplateTableFieldURLConfiguration;
|
147352
|
-
Visibility?:
|
147501
|
+
Visibility?: QuickSightTemplateVisibility;
|
147353
147502
|
/**
|
147354
147503
|
* String based length that is composed of value and unit in px
|
147355
147504
|
*/
|
@@ -147415,8 +147564,8 @@ export type QuickSightTemplateTableOrientation = "VERTICAL" | "HORIZONTAL";
|
|
147415
147564
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-tablepaginatedreportoptions.html}
|
147416
147565
|
*/
|
147417
147566
|
export type QuickSightTemplateTablePaginatedReportOptions = {
|
147418
|
-
OverflowColumnHeaderVisibility?:
|
147419
|
-
VerticalOverflowVisibility?:
|
147567
|
+
OverflowColumnHeaderVisibility?: QuickSightTemplateVisibility;
|
147568
|
+
VerticalOverflowVisibility?: QuickSightTemplateVisibility;
|
147420
147569
|
};
|
147421
147570
|
/**
|
147422
147571
|
* Type definition for `AWS::QuickSight::Template.TablePinnedFieldOptions`.
|
@@ -147720,7 +147869,7 @@ export type QuickSightTemplateTextConditionalFormat = {
|
|
147720
147869
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-textcontrolplaceholderoptions.html}
|
147721
147870
|
*/
|
147722
147871
|
export type QuickSightTemplateTextControlPlaceholderOptions = {
|
147723
|
-
Visibility?:
|
147872
|
+
Visibility?: QuickSightTemplateVisibility;
|
147724
147873
|
};
|
147725
147874
|
/**
|
147726
147875
|
* Type definition for `AWS::QuickSight::Template.TextFieldControlDisplayOptions`.
|
@@ -147742,7 +147891,7 @@ export type QuickSightTemplateTextWrap = "NONE" | "WRAP";
|
|
147742
147891
|
*/
|
147743
147892
|
export type QuickSightTemplateThousandSeparatorOptions = {
|
147744
147893
|
Symbol?: QuickSightTemplateNumericSeparatorSymbol;
|
147745
|
-
Visibility?:
|
147894
|
+
Visibility?: QuickSightTemplateVisibility;
|
147746
147895
|
};
|
147747
147896
|
/**
|
147748
147897
|
* Type definition for `AWS::QuickSight::Template.TimeBasedForecastProperties`.
|
@@ -147860,7 +148009,7 @@ export type QuickSightTemplateTooltipItem = {
|
|
147860
148009
|
export type QuickSightTemplateTooltipOptions = {
|
147861
148010
|
FieldBasedTooltip?: QuickSightTemplateFieldBasedTooltip;
|
147862
148011
|
SelectedTooltipType?: QuickSightTemplateSelectedTooltipType;
|
147863
|
-
TooltipVisibility?:
|
148012
|
+
TooltipVisibility?: QuickSightTemplateVisibility;
|
147864
148013
|
};
|
147865
148014
|
/**
|
147866
148015
|
* Type definition for `AWS::QuickSight::Template.TooltipTarget`.
|
@@ -148000,7 +148149,7 @@ export type QuickSightTemplateTotalOptions = {
|
|
148000
148149
|
*/
|
148001
148150
|
TotalAggregationOptions?: QuickSightTemplateTotalAggregationOption[];
|
148002
148151
|
TotalCellStyle?: QuickSightTemplateTableCellStyle;
|
148003
|
-
TotalsVisibility?:
|
148152
|
+
TotalsVisibility?: QuickSightTemplateVisibility;
|
148004
148153
|
};
|
148005
148154
|
/**
|
148006
148155
|
* Type definition for `AWS::QuickSight::Template.TreeMapAggregatedFieldWells`.
|
@@ -148092,7 +148241,7 @@ export type QuickSightTemplateTreeMapVisual = {
|
|
148092
148241
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-trendarrowoptions.html}
|
148093
148242
|
*/
|
148094
148243
|
export type QuickSightTemplateTrendArrowOptions = {
|
148095
|
-
Visibility?:
|
148244
|
+
Visibility?: QuickSightTemplateVisibility;
|
148096
148245
|
};
|
148097
148246
|
/**
|
148098
148247
|
* Type definition for `AWS::QuickSight::Template.UnaggregatedField`.
|
@@ -148149,6 +148298,11 @@ export type QuickSightTemplateValueWhenUnsetOption = "RECOMMENDED_VALUE" | "NULL
|
|
148149
148298
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-verticaltextalignment.html}
|
148150
148299
|
*/
|
148151
148300
|
export type QuickSightTemplateVerticalTextAlignment = "TOP" | "MIDDLE" | "BOTTOM" | "AUTO";
|
148301
|
+
/**
|
148302
|
+
* Type definition for `AWS::QuickSight::Template.Visibility`.
|
148303
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-visibility.html}
|
148304
|
+
*/
|
148305
|
+
export type QuickSightTemplateVisibility = "HIDDEN" | "VISIBLE";
|
148152
148306
|
/**
|
148153
148307
|
* Type definition for `AWS::QuickSight::Template.VisibleRangeOptions`.
|
148154
148308
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-visiblerangeoptions.html}
|
@@ -148246,7 +148400,7 @@ export type QuickSightTemplateVisualPalette = {
|
|
148246
148400
|
*/
|
148247
148401
|
export type QuickSightTemplateVisualSubtitleLabelOptions = {
|
148248
148402
|
FormatText?: QuickSightTemplateLongFormatText;
|
148249
|
-
Visibility?:
|
148403
|
+
Visibility?: QuickSightTemplateVisibility;
|
148250
148404
|
};
|
148251
148405
|
/**
|
148252
148406
|
* Type definition for `AWS::QuickSight::Template.VisualTitleLabelOptions`.
|
@@ -148254,7 +148408,7 @@ export type QuickSightTemplateVisualSubtitleLabelOptions = {
|
|
148254
148408
|
*/
|
148255
148409
|
export type QuickSightTemplateVisualTitleLabelOptions = {
|
148256
148410
|
FormatText?: QuickSightTemplateShortFormatText;
|
148257
|
-
Visibility?:
|
148411
|
+
Visibility?: QuickSightTemplateVisibility;
|
148258
148412
|
};
|
148259
148413
|
/**
|
148260
148414
|
* Type definition for `AWS::QuickSight::Template.WaterfallChartAggregatedFieldWells`.
|
@@ -162182,6 +162336,7 @@ export type SageMakerDomainCodeRepository = {
|
|
162182
162336
|
*/
|
162183
162337
|
export type SageMakerDomainCustomFileSystemConfig = {
|
162184
162338
|
EFSFileSystemConfig?: SageMakerDomainEFSFileSystemConfig;
|
162339
|
+
FSxLustreFileSystemConfig?: SageMakerDomainFSxLustreFileSystemConfig;
|
162185
162340
|
};
|
162186
162341
|
/**
|
162187
162342
|
* Type definition for `AWS::SageMaker::Domain.CustomImage`.
|
@@ -162358,6 +162513,24 @@ export type SageMakerDomainEFSFileSystemConfig = {
|
|
162358
162513
|
*/
|
162359
162514
|
FileSystemPath?: string;
|
162360
162515
|
};
|
162516
|
+
/**
|
162517
|
+
* Type definition for `AWS::SageMaker::Domain.FSxLustreFileSystemConfig`.
|
162518
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-fsxlustrefilesystemconfig.html}
|
162519
|
+
*/
|
162520
|
+
export type SageMakerDomainFSxLustreFileSystemConfig = {
|
162521
|
+
/**
|
162522
|
+
* @minLength `11`
|
162523
|
+
* @maxLength `21`
|
162524
|
+
* @pattern `^(fs-[0-9a-f]{8,})$`
|
162525
|
+
*/
|
162526
|
+
FileSystemId: string;
|
162527
|
+
/**
|
162528
|
+
* @minLength `1`
|
162529
|
+
* @maxLength `256`
|
162530
|
+
* @pattern `^\/\S*$`
|
162531
|
+
*/
|
162532
|
+
FileSystemPath?: string;
|
162533
|
+
};
|
162361
162534
|
/**
|
162362
162535
|
* Type definition for `AWS::SageMaker::Domain.IdleSettings`.
|
162363
162536
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-idlesettings.html}
|
@@ -168315,6 +168488,7 @@ export type SageMakerSpaceCodeRepository = {
|
|
168315
168488
|
*/
|
168316
168489
|
export type SageMakerSpaceCustomFileSystem = {
|
168317
168490
|
EFSFileSystem?: SageMakerSpaceEFSFileSystem;
|
168491
|
+
FSxLustreFileSystem?: SageMakerSpaceFSxLustreFileSystem;
|
168318
168492
|
};
|
168319
168493
|
/**
|
168320
168494
|
* Type definition for `AWS::SageMaker::Space.CustomImage`.
|
@@ -168365,6 +168539,18 @@ export type SageMakerSpaceEFSFileSystem = {
|
|
168365
168539
|
*/
|
168366
168540
|
FileSystemId: string;
|
168367
168541
|
};
|
168542
|
+
/**
|
168543
|
+
* Type definition for `AWS::SageMaker::Space.FSxLustreFileSystem`.
|
168544
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-space-fsxlustrefilesystem.html}
|
168545
|
+
*/
|
168546
|
+
export type SageMakerSpaceFSxLustreFileSystem = {
|
168547
|
+
/**
|
168548
|
+
* @minLength `11`
|
168549
|
+
* @maxLength `21`
|
168550
|
+
* @pattern `^(fs-[0-9a-f]{8,})$`
|
168551
|
+
*/
|
168552
|
+
FileSystemId: string;
|
168553
|
+
};
|
168368
168554
|
/**
|
168369
168555
|
* Type definition for `AWS::SageMaker::Space.JupyterServerAppSettings`.
|
168370
168556
|
* The JupyterServer app settings.
|
@@ -168714,6 +168900,7 @@ export type SageMakerUserProfileCodeRepository = {
|
|
168714
168900
|
*/
|
168715
168901
|
export type SageMakerUserProfileCustomFileSystemConfig = {
|
168716
168902
|
EFSFileSystemConfig?: SageMakerUserProfileEFSFileSystemConfig;
|
168903
|
+
FSxLustreFileSystemConfig?: SageMakerUserProfileFSxLustreFileSystemConfig;
|
168717
168904
|
};
|
168718
168905
|
/**
|
168719
168906
|
* Type definition for `AWS::SageMaker::UserProfile.CustomImage`.
|
@@ -168803,6 +168990,24 @@ export type SageMakerUserProfileEFSFileSystemConfig = {
|
|
168803
168990
|
*/
|
168804
168991
|
FileSystemPath?: string;
|
168805
168992
|
};
|
168993
|
+
/**
|
168994
|
+
* Type definition for `AWS::SageMaker::UserProfile.FSxLustreFileSystemConfig`.
|
168995
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-fsxlustrefilesystemconfig.html}
|
168996
|
+
*/
|
168997
|
+
export type SageMakerUserProfileFSxLustreFileSystemConfig = {
|
168998
|
+
/**
|
168999
|
+
* @minLength `11`
|
169000
|
+
* @maxLength `21`
|
169001
|
+
* @pattern `^(fs-[0-9a-f]{8,})$`
|
169002
|
+
*/
|
169003
|
+
FileSystemId: string;
|
169004
|
+
/**
|
169005
|
+
* @minLength `1`
|
169006
|
+
* @maxLength `256`
|
169007
|
+
* @pattern `^\/\S*$`
|
169008
|
+
*/
|
169009
|
+
FileSystemPath?: string;
|
169010
|
+
};
|
168806
169011
|
/**
|
168807
169012
|
* Type definition for `AWS::SageMaker::UserProfile.IdleSettings`.
|
168808
169013
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-idlesettings.html}
|