@awboost/cfntypes 0.100.55 → 0.100.56

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.
@@ -31178,6 +31178,62 @@ export type CognitoLogDeliveryConfigurationLogConfiguration = {
31178
31178
  export type CognitoLogDeliveryConfigurationS3Configuration = {
31179
31179
  BucketArn?: string;
31180
31180
  };
31181
+ /**
31182
+ * Resource Type definition for AWS::Cognito::ManagedLoginBranding
31183
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-managedloginbranding.html}
31184
+ */
31185
+ export type CognitoManagedLoginBrandingProps = {
31186
+ Assets?: CognitoManagedLoginBrandingAssetType[];
31187
+ ClientId?: string;
31188
+ ReturnMergedResources?: boolean;
31189
+ Settings?: Record<string, any>;
31190
+ UseCognitoProvidedValues?: boolean;
31191
+ UserPoolId: string;
31192
+ };
31193
+ /**
31194
+ * Attribute type definition for `AWS::Cognito::ManagedLoginBranding`.
31195
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-managedloginbranding.html#aws-resource-cognito-managedloginbranding-return-values}
31196
+ */
31197
+ export type CognitoManagedLoginBrandingAttributes = {
31198
+ /**
31199
+ * @pattern `^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[4][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$`
31200
+ */
31201
+ ManagedLoginBrandingId: string;
31202
+ };
31203
+ /**
31204
+ * Type definition for `AWS::Cognito::ManagedLoginBranding.AssetType`.
31205
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-managedloginbranding-assettype.html}
31206
+ */
31207
+ export type CognitoManagedLoginBrandingAssetType = {
31208
+ /**
31209
+ * @maxLength `1000000`
31210
+ */
31211
+ Bytes?: string;
31212
+ Category: CognitoManagedLoginBrandingCategoryType;
31213
+ ColorMode: CognitoManagedLoginBrandingColorModeType;
31214
+ Extension: CognitoManagedLoginBrandingExtensionType;
31215
+ /**
31216
+ * @minLength `1`
31217
+ * @maxLength `40`
31218
+ * @pattern `^[\w\- ]+$`
31219
+ */
31220
+ ResourceId?: string;
31221
+ };
31222
+ /**
31223
+ * Type definition for `AWS::Cognito::ManagedLoginBranding.CategoryType`.
31224
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-managedloginbranding-categorytype.html}
31225
+ */
31226
+ export type CognitoManagedLoginBrandingCategoryType = "FAVICON_ICO" | "FAVICON_SVG" | "EMAIL_GRAPHIC" | "SMS_GRAPHIC" | "AUTH_APP_GRAPHIC" | "PASSWORD_GRAPHIC" | "PASSKEY_GRAPHIC" | "PAGE_HEADER_LOGO" | "PAGE_HEADER_BACKGROUND" | "PAGE_FOOTER_LOGO" | "PAGE_FOOTER_BACKGROUND" | "PAGE_BACKGROUND" | "FORM_BACKGROUND" | "FORM_LOGO" | "IDP_BUTTON_ICON";
31227
+ /**
31228
+ * Type definition for `AWS::Cognito::ManagedLoginBranding.ColorModeType`.
31229
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-managedloginbranding-colormodetype.html}
31230
+ */
31231
+ export type CognitoManagedLoginBrandingColorModeType = "LIGHT" | "DARK" | "DYNAMIC";
31232
+ /**
31233
+ * Type definition for `AWS::Cognito::ManagedLoginBranding.ExtensionType`.
31234
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-managedloginbranding-extensiontype.html}
31235
+ */
31236
+ export type CognitoManagedLoginBrandingExtensionType = "ICO" | "JPEG" | "PNG" | "SVG" | "WEBP";
31181
31237
  /**
31182
31238
  * Definition of AWS::Cognito::UserPool Resource Type
31183
31239
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html}
@@ -31234,9 +31290,20 @@ export type CognitoUserPoolProps = {
31234
31290
  */
31235
31291
  UserPoolName?: string;
31236
31292
  UserPoolTags?: Record<string, string>;
31293
+ UserPoolTier?: "LITE" | "ESSENTIALS" | "PLUS";
31237
31294
  UsernameAttributes?: string[];
31238
31295
  UsernameConfiguration?: CognitoUserPoolUsernameConfiguration;
31239
31296
  VerificationMessageTemplate?: CognitoUserPoolVerificationMessageTemplate;
31297
+ /**
31298
+ * @minLength `1`
31299
+ * @maxLength `63`
31300
+ */
31301
+ WebAuthnRelyingPartyID?: string;
31302
+ /**
31303
+ * @minLength `1`
31304
+ * @maxLength `9`
31305
+ */
31306
+ WebAuthnUserVerification?: string;
31240
31307
  };
31241
31308
  /**
31242
31309
  * Attribute type definition for `AWS::Cognito::UserPool`.
@@ -31362,6 +31429,7 @@ export type CognitoUserPoolPasswordPolicy = {
31362
31429
  */
31363
31430
  export type CognitoUserPoolPolicies = {
31364
31431
  PasswordPolicy?: CognitoUserPoolPasswordPolicy;
31432
+ SignInPolicy?: CognitoUserPoolSignInPolicy;
31365
31433
  };
31366
31434
  /**
31367
31435
  * Type definition for `AWS::Cognito::UserPool.PreTokenGenerationConfig`.
@@ -31392,6 +31460,13 @@ export type CognitoUserPoolSchemaAttribute = {
31392
31460
  Required?: boolean;
31393
31461
  StringAttributeConstraints?: CognitoUserPoolStringAttributeConstraints;
31394
31462
  };
31463
+ /**
31464
+ * Type definition for `AWS::Cognito::UserPool.SignInPolicy`.
31465
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-signinpolicy.html}
31466
+ */
31467
+ export type CognitoUserPoolSignInPolicy = {
31468
+ AllowedFirstAuthFactors?: string[];
31469
+ };
31395
31470
  /**
31396
31471
  * Type definition for `AWS::Cognito::UserPool.SmsConfiguration`.
31397
31472
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-smsconfiguration.html}
@@ -118717,6 +118792,11 @@ export type QuickSightAnalysisAnalysisDefinition = {
118717
118792
  * @maxLength `20`
118718
118793
  */
118719
118794
  Sheets?: QuickSightAnalysisSheetDefinition[];
118795
+ /**
118796
+ * @minLength `0`
118797
+ * @maxLength `200`
118798
+ */
118799
+ StaticFiles?: QuickSightAnalysisStaticFile[];
118720
118800
  };
118721
118801
  /**
118722
118802
  * Type definition for `AWS::QuickSight::Analysis.AnalysisError`.
@@ -119055,6 +119135,11 @@ export type QuickSightAnalysisBarChartVisual = {
119055
119135
  ColumnHierarchies?: QuickSightAnalysisColumnHierarchy[];
119056
119136
  Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
119057
119137
  Title?: QuickSightAnalysisVisualTitleLabelOptions;
119138
+ /**
119139
+ * @minLength `1`
119140
+ * @maxLength `1024`
119141
+ */
119142
+ VisualContentAltText?: string;
119058
119143
  /**
119059
119144
  * @minLength `1`
119060
119145
  * @maxLength `512`
@@ -119214,6 +119299,11 @@ export type QuickSightAnalysisBoxPlotVisual = {
119214
119299
  ColumnHierarchies?: QuickSightAnalysisColumnHierarchy[];
119215
119300
  Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
119216
119301
  Title?: QuickSightAnalysisVisualTitleLabelOptions;
119302
+ /**
119303
+ * @minLength `1`
119304
+ * @maxLength `1024`
119305
+ */
119306
+ VisualContentAltText?: string;
119217
119307
  /**
119218
119308
  * @minLength `1`
119219
119309
  * @maxLength `512`
@@ -119581,6 +119671,11 @@ export type QuickSightAnalysisComboChartVisual = {
119581
119671
  ColumnHierarchies?: QuickSightAnalysisColumnHierarchy[];
119582
119672
  Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
119583
119673
  Title?: QuickSightAnalysisVisualTitleLabelOptions;
119674
+ /**
119675
+ * @minLength `1`
119676
+ * @maxLength `1024`
119677
+ */
119678
+ VisualContentAltText?: string;
119584
119679
  /**
119585
119680
  * @minLength `1`
119586
119681
  * @maxLength `512`
@@ -119871,6 +119966,11 @@ export type QuickSightAnalysisCustomContentVisual = {
119871
119966
  DataSetIdentifier: string;
119872
119967
  Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
119873
119968
  Title?: QuickSightAnalysisVisualTitleLabelOptions;
119969
+ /**
119970
+ * @minLength `1`
119971
+ * @maxLength `1024`
119972
+ */
119973
+ VisualContentAltText?: string;
119874
119974
  /**
119875
119975
  * @minLength `1`
119876
119976
  * @maxLength `512`
@@ -120790,6 +120890,11 @@ export type QuickSightAnalysisFilledMapVisual = {
120790
120890
  ConditionalFormatting?: QuickSightAnalysisFilledMapConditionalFormatting;
120791
120891
  Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
120792
120892
  Title?: QuickSightAnalysisVisualTitleLabelOptions;
120893
+ /**
120894
+ * @minLength `1`
120895
+ * @maxLength `1024`
120896
+ */
120897
+ VisualContentAltText?: string;
120793
120898
  /**
120794
120899
  * @minLength `1`
120795
120900
  * @maxLength `512`
@@ -121143,6 +121248,10 @@ export type QuickSightAnalysisFontDecoration = "UNDERLINE" | "NONE";
121143
121248
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-fontsize.html}
121144
121249
  */
121145
121250
  export type QuickSightAnalysisFontSize = {
121251
+ /**
121252
+ * String based length that is composed of value and unit in px
121253
+ */
121254
+ Absolute?: string;
121146
121255
  Relative?: QuickSightAnalysisRelativeFontSize;
121147
121256
  };
121148
121257
  /**
@@ -121418,6 +121527,11 @@ export type QuickSightAnalysisFunnelChartVisual = {
121418
121527
  ColumnHierarchies?: QuickSightAnalysisColumnHierarchy[];
121419
121528
  Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
121420
121529
  Title?: QuickSightAnalysisVisualTitleLabelOptions;
121530
+ /**
121531
+ * @minLength `1`
121532
+ * @maxLength `1024`
121533
+ */
121534
+ VisualContentAltText?: string;
121421
121535
  /**
121422
121536
  * @minLength `1`
121423
121537
  * @maxLength `512`
@@ -121511,6 +121625,11 @@ export type QuickSightAnalysisGaugeChartVisual = {
121511
121625
  ConditionalFormatting?: QuickSightAnalysisGaugeChartConditionalFormatting;
121512
121626
  Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
121513
121627
  Title?: QuickSightAnalysisVisualTitleLabelOptions;
121628
+ /**
121629
+ * @minLength `1`
121630
+ * @maxLength `1024`
121631
+ */
121632
+ VisualContentAltText?: string;
121514
121633
  /**
121515
121634
  * @minLength `1`
121516
121635
  * @maxLength `512`
@@ -121518,6 +121637,69 @@ export type QuickSightAnalysisGaugeChartVisual = {
121518
121637
  */
121519
121638
  VisualId: string;
121520
121639
  };
121640
+ /**
121641
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialCategoricalColor`.
121642
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialcategoricalcolor.html}
121643
+ */
121644
+ export type QuickSightAnalysisGeospatialCategoricalColor = {
121645
+ CategoryDataColors: QuickSightAnalysisGeospatialCategoricalDataColor[];
121646
+ /**
121647
+ * @min `0`
121648
+ * @max `1`
121649
+ */
121650
+ DefaultOpacity?: number;
121651
+ NullDataSettings?: QuickSightAnalysisGeospatialNullDataSettings;
121652
+ NullDataVisibility?: QuickSightAnalysisVisibility;
121653
+ };
121654
+ /**
121655
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialCategoricalDataColor`.
121656
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialcategoricaldatacolor.html}
121657
+ */
121658
+ export type QuickSightAnalysisGeospatialCategoricalDataColor = {
121659
+ /**
121660
+ * @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
121661
+ */
121662
+ Color: string;
121663
+ DataValue: string;
121664
+ };
121665
+ /**
121666
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialCircleRadius`.
121667
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialcircleradius.html}
121668
+ */
121669
+ export type QuickSightAnalysisGeospatialCircleRadius = {
121670
+ /**
121671
+ * @min `0`
121672
+ */
121673
+ Radius?: number;
121674
+ };
121675
+ /**
121676
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialCircleSymbolStyle`.
121677
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialcirclesymbolstyle.html}
121678
+ */
121679
+ export type QuickSightAnalysisGeospatialCircleSymbolStyle = {
121680
+ CircleRadius?: QuickSightAnalysisGeospatialCircleRadius;
121681
+ FillColor?: QuickSightAnalysisGeospatialColor;
121682
+ StrokeColor?: QuickSightAnalysisGeospatialColor;
121683
+ StrokeWidth?: QuickSightAnalysisGeospatialLineWidth;
121684
+ };
121685
+ /**
121686
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialColor`.
121687
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialcolor.html}
121688
+ */
121689
+ export type QuickSightAnalysisGeospatialColor = {
121690
+ Categorical?: QuickSightAnalysisGeospatialCategoricalColor;
121691
+ Gradient?: QuickSightAnalysisGeospatialGradientColor;
121692
+ /**
121693
+ * Describes the properties for a solid color
121694
+ */
121695
+ Solid?: QuickSightAnalysisGeospatialSolidColor;
121696
+ };
121697
+ /**
121698
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialColorState`.
121699
+ * Defines view state of the color
121700
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialcolorstate.html}
121701
+ */
121702
+ export type QuickSightAnalysisGeospatialColorState = "ENABLED" | "DISABLED";
121521
121703
  /**
121522
121704
  * Type definition for `AWS::QuickSight::Analysis.GeospatialCoordinateBounds`.
121523
121705
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialcoordinatebounds.html}
@@ -121544,6 +121726,42 @@ export type QuickSightAnalysisGeospatialCoordinateBounds = {
121544
121726
  */
121545
121727
  West: number;
121546
121728
  };
121729
+ /**
121730
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialDataSourceItem`.
121731
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialdatasourceitem.html}
121732
+ */
121733
+ export type QuickSightAnalysisGeospatialDataSourceItem = {
121734
+ StaticFileDataSource?: QuickSightAnalysisGeospatialStaticFileSource;
121735
+ };
121736
+ /**
121737
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialGradientColor`.
121738
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialgradientcolor.html}
121739
+ */
121740
+ export type QuickSightAnalysisGeospatialGradientColor = {
121741
+ /**
121742
+ * @min `0`
121743
+ * @max `1`
121744
+ */
121745
+ DefaultOpacity?: number;
121746
+ NullDataSettings?: QuickSightAnalysisGeospatialNullDataSettings;
121747
+ NullDataVisibility?: QuickSightAnalysisVisibility;
121748
+ /**
121749
+ * @minLength `2`
121750
+ * @maxLength `3`
121751
+ */
121752
+ StepColors: QuickSightAnalysisGeospatialGradientStepColor[];
121753
+ };
121754
+ /**
121755
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialGradientStepColor`.
121756
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialgradientstepcolor.html}
121757
+ */
121758
+ export type QuickSightAnalysisGeospatialGradientStepColor = {
121759
+ /**
121760
+ * @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
121761
+ */
121762
+ Color: string;
121763
+ DataValue: number;
121764
+ };
121547
121765
  /**
121548
121766
  * Type definition for `AWS::QuickSight::Analysis.GeospatialHeatmapColorScale`.
121549
121767
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialheatmapcolorscale.html}
@@ -121572,6 +121790,107 @@ export type QuickSightAnalysisGeospatialHeatmapDataColor = {
121572
121790
  */
121573
121791
  Color: string;
121574
121792
  };
121793
+ /**
121794
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialLayerColorField`.
121795
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatiallayercolorfield.html}
121796
+ */
121797
+ export type QuickSightAnalysisGeospatialLayerColorField = {
121798
+ /**
121799
+ * @minLength `0`
121800
+ * @maxLength `1`
121801
+ */
121802
+ ColorDimensionsFields?: QuickSightAnalysisDimensionField[];
121803
+ /**
121804
+ * @minLength `0`
121805
+ * @maxLength `1`
121806
+ */
121807
+ ColorValuesFields?: QuickSightAnalysisMeasureField[];
121808
+ };
121809
+ /**
121810
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialLayerDefinition`.
121811
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatiallayerdefinition.html}
121812
+ */
121813
+ export type QuickSightAnalysisGeospatialLayerDefinition = {
121814
+ LineLayer?: QuickSightAnalysisGeospatialLineLayer;
121815
+ PointLayer?: QuickSightAnalysisGeospatialPointLayer;
121816
+ PolygonLayer?: QuickSightAnalysisGeospatialPolygonLayer;
121817
+ };
121818
+ /**
121819
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialLayerItem`.
121820
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatiallayeritem.html}
121821
+ */
121822
+ export type QuickSightAnalysisGeospatialLayerItem = {
121823
+ /**
121824
+ * @minLength `0`
121825
+ * @maxLength `10`
121826
+ */
121827
+ Actions?: QuickSightAnalysisLayerCustomAction[];
121828
+ DataSource?: QuickSightAnalysisGeospatialDataSourceItem;
121829
+ JoinDefinition?: QuickSightAnalysisGeospatialLayerJoinDefinition;
121830
+ Label?: string;
121831
+ LayerDefinition?: QuickSightAnalysisGeospatialLayerDefinition;
121832
+ LayerId: string;
121833
+ LayerType?: QuickSightAnalysisGeospatialLayerType;
121834
+ Tooltip?: QuickSightAnalysisTooltipOptions;
121835
+ Visibility?: QuickSightAnalysisVisibility;
121836
+ };
121837
+ /**
121838
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialLayerJoinDefinition`.
121839
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatiallayerjoindefinition.html}
121840
+ */
121841
+ export type QuickSightAnalysisGeospatialLayerJoinDefinition = {
121842
+ ColorField?: QuickSightAnalysisGeospatialLayerColorField;
121843
+ DatasetKeyField?: QuickSightAnalysisUnaggregatedField;
121844
+ ShapeKeyField?: string;
121845
+ };
121846
+ /**
121847
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialLayerMapConfiguration`.
121848
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatiallayermapconfiguration.html}
121849
+ */
121850
+ export type QuickSightAnalysisGeospatialLayerMapConfiguration = {
121851
+ Interactions?: unknown;
121852
+ Legend?: QuickSightAnalysisLegendOptions;
121853
+ MapLayers?: QuickSightAnalysisGeospatialLayerItem[];
121854
+ MapState?: QuickSightAnalysisGeospatialMapState;
121855
+ MapStyle?: QuickSightAnalysisGeospatialMapStyle;
121856
+ };
121857
+ /**
121858
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialLayerType`.
121859
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatiallayertype.html}
121860
+ */
121861
+ export type QuickSightAnalysisGeospatialLayerType = "POINT" | "LINE" | "POLYGON";
121862
+ /**
121863
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialLineLayer`.
121864
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatiallinelayer.html}
121865
+ */
121866
+ export type QuickSightAnalysisGeospatialLineLayer = {
121867
+ Style: QuickSightAnalysisGeospatialLineStyle;
121868
+ };
121869
+ /**
121870
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialLineStyle`.
121871
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatiallinestyle.html}
121872
+ */
121873
+ export type QuickSightAnalysisGeospatialLineStyle = {
121874
+ LineSymbolStyle?: QuickSightAnalysisGeospatialLineSymbolStyle;
121875
+ };
121876
+ /**
121877
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialLineSymbolStyle`.
121878
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatiallinesymbolstyle.html}
121879
+ */
121880
+ export type QuickSightAnalysisGeospatialLineSymbolStyle = {
121881
+ FillColor?: QuickSightAnalysisGeospatialColor;
121882
+ LineWidth?: QuickSightAnalysisGeospatialLineWidth;
121883
+ };
121884
+ /**
121885
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialLineWidth`.
121886
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatiallinewidth.html}
121887
+ */
121888
+ export type QuickSightAnalysisGeospatialLineWidth = {
121889
+ /**
121890
+ * @min `0`
121891
+ */
121892
+ LineWidth?: number;
121893
+ };
121575
121894
  /**
121576
121895
  * Type definition for `AWS::QuickSight::Analysis.GeospatialMapAggregatedFieldWells`.
121577
121896
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialmapaggregatedfieldwells.html}
@@ -121599,6 +121918,7 @@ export type QuickSightAnalysisGeospatialMapAggregatedFieldWells = {
121599
121918
  */
121600
121919
  export type QuickSightAnalysisGeospatialMapConfiguration = {
121601
121920
  FieldWells?: QuickSightAnalysisGeospatialMapFieldWells;
121921
+ Interactions?: unknown;
121602
121922
  Legend?: QuickSightAnalysisLegendOptions;
121603
121923
  MapStyleOptions?: QuickSightAnalysisGeospatialMapStyleOptions;
121604
121924
  PointStyleOptions?: QuickSightAnalysisGeospatialPointStyleOptions;
@@ -121613,6 +121933,31 @@ export type QuickSightAnalysisGeospatialMapConfiguration = {
121613
121933
  export type QuickSightAnalysisGeospatialMapFieldWells = {
121614
121934
  GeospatialMapAggregatedFieldWells?: QuickSightAnalysisGeospatialMapAggregatedFieldWells;
121615
121935
  };
121936
+ /**
121937
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialMapNavigation`.
121938
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialmapnavigation.html}
121939
+ */
121940
+ export type QuickSightAnalysisGeospatialMapNavigation = "ENABLED" | "DISABLED";
121941
+ /**
121942
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialMapState`.
121943
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialmapstate.html}
121944
+ */
121945
+ export type QuickSightAnalysisGeospatialMapState = {
121946
+ Bounds?: QuickSightAnalysisGeospatialCoordinateBounds;
121947
+ MapNavigation?: QuickSightAnalysisGeospatialMapNavigation;
121948
+ };
121949
+ /**
121950
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialMapStyle`.
121951
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialmapstyle.html}
121952
+ */
121953
+ export type QuickSightAnalysisGeospatialMapStyle = {
121954
+ /**
121955
+ * @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
121956
+ */
121957
+ BackgroundColor?: string;
121958
+ BaseMapStyle?: QuickSightAnalysisBaseMapStyleType;
121959
+ BaseMapVisibility?: QuickSightAnalysisVisibility;
121960
+ };
121616
121961
  /**
121617
121962
  * Type definition for `AWS::QuickSight::Analysis.GeospatialMapStyleOptions`.
121618
121963
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialmapstyleoptions.html}
@@ -121638,6 +121983,11 @@ export type QuickSightAnalysisGeospatialMapVisual = {
121638
121983
  ColumnHierarchies?: QuickSightAnalysisColumnHierarchy[];
121639
121984
  Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
121640
121985
  Title?: QuickSightAnalysisVisualTitleLabelOptions;
121986
+ /**
121987
+ * @minLength `1`
121988
+ * @maxLength `1024`
121989
+ */
121990
+ VisualContentAltText?: string;
121641
121991
  /**
121642
121992
  * @minLength `1`
121643
121993
  * @maxLength `512`
@@ -121645,6 +121995,45 @@ export type QuickSightAnalysisGeospatialMapVisual = {
121645
121995
  */
121646
121996
  VisualId: string;
121647
121997
  };
121998
+ /**
121999
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialNullDataSettings`.
122000
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialnulldatasettings.html}
122001
+ */
122002
+ export type QuickSightAnalysisGeospatialNullDataSettings = {
122003
+ SymbolStyle: QuickSightAnalysisGeospatialNullSymbolStyle;
122004
+ };
122005
+ /**
122006
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialNullSymbolStyle`.
122007
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialnullsymbolstyle.html}
122008
+ */
122009
+ export type QuickSightAnalysisGeospatialNullSymbolStyle = {
122010
+ /**
122011
+ * @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
122012
+ */
122013
+ FillColor?: string;
122014
+ /**
122015
+ * @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
122016
+ */
122017
+ StrokeColor?: string;
122018
+ /**
122019
+ * @min `0`
122020
+ */
122021
+ StrokeWidth?: number;
122022
+ };
122023
+ /**
122024
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialPointLayer`.
122025
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialpointlayer.html}
122026
+ */
122027
+ export type QuickSightAnalysisGeospatialPointLayer = {
122028
+ Style: QuickSightAnalysisGeospatialPointStyle;
122029
+ };
122030
+ /**
122031
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialPointStyle`.
122032
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialpointstyle.html}
122033
+ */
122034
+ export type QuickSightAnalysisGeospatialPointStyle = {
122035
+ CircleSymbolStyle?: QuickSightAnalysisGeospatialCircleSymbolStyle;
122036
+ };
121648
122037
  /**
121649
122038
  * Type definition for `AWS::QuickSight::Analysis.GeospatialPointStyleOptions`.
121650
122039
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialpointstyleoptions.html}
@@ -121654,11 +122043,61 @@ export type QuickSightAnalysisGeospatialPointStyleOptions = {
121654
122043
  HeatmapConfiguration?: QuickSightAnalysisGeospatialHeatmapConfiguration;
121655
122044
  SelectedPointStyle?: QuickSightAnalysisGeospatialSelectedPointStyle;
121656
122045
  };
122046
+ /**
122047
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialPolygonLayer`.
122048
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialpolygonlayer.html}
122049
+ */
122050
+ export type QuickSightAnalysisGeospatialPolygonLayer = {
122051
+ Style: QuickSightAnalysisGeospatialPolygonStyle;
122052
+ };
122053
+ /**
122054
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialPolygonStyle`.
122055
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialpolygonstyle.html}
122056
+ */
122057
+ export type QuickSightAnalysisGeospatialPolygonStyle = {
122058
+ PolygonSymbolStyle?: QuickSightAnalysisGeospatialPolygonSymbolStyle;
122059
+ };
122060
+ /**
122061
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialPolygonSymbolStyle`.
122062
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialpolygonsymbolstyle.html}
122063
+ */
122064
+ export type QuickSightAnalysisGeospatialPolygonSymbolStyle = {
122065
+ FillColor?: QuickSightAnalysisGeospatialColor;
122066
+ StrokeColor?: QuickSightAnalysisGeospatialColor;
122067
+ StrokeWidth?: QuickSightAnalysisGeospatialLineWidth;
122068
+ };
121657
122069
  /**
121658
122070
  * Type definition for `AWS::QuickSight::Analysis.GeospatialSelectedPointStyle`.
121659
122071
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialselectedpointstyle.html}
121660
122072
  */
121661
122073
  export type QuickSightAnalysisGeospatialSelectedPointStyle = "POINT" | "CLUSTER" | "HEATMAP";
122074
+ /**
122075
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialSolidColor`.
122076
+ * Describes the properties for a solid color
122077
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialsolidcolor.html}
122078
+ */
122079
+ export type QuickSightAnalysisGeospatialSolidColor = {
122080
+ /**
122081
+ * @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
122082
+ */
122083
+ Color: string;
122084
+ /**
122085
+ * Defines view state of the color
122086
+ */
122087
+ State?: QuickSightAnalysisGeospatialColorState;
122088
+ };
122089
+ /**
122090
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialStaticFileSource`.
122091
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialstaticfilesource.html}
122092
+ */
122093
+ export type QuickSightAnalysisGeospatialStaticFileSource = {
122094
+ /**
122095
+ * @minLength `1`
122096
+ * @maxLength `512`
122097
+ * @pattern `^[\w\-]+$`
122098
+ */
122099
+ StaticFileId: string;
122100
+ };
121662
122101
  /**
121663
122102
  * Type definition for `AWS::QuickSight::Analysis.GeospatialWindowOptions`.
121664
122103
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialwindowoptions.html}
@@ -121873,6 +122312,11 @@ export type QuickSightAnalysisHeatMapVisual = {
121873
122312
  ColumnHierarchies?: QuickSightAnalysisColumnHierarchy[];
121874
122313
  Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
121875
122314
  Title?: QuickSightAnalysisVisualTitleLabelOptions;
122315
+ /**
122316
+ * @minLength `1`
122317
+ * @maxLength `1024`
122318
+ */
122319
+ VisualContentAltText?: string;
121876
122320
  /**
121877
122321
  * @minLength `1`
121878
122322
  * @maxLength `512`
@@ -121940,6 +122384,11 @@ export type QuickSightAnalysisHistogramVisual = {
121940
122384
  ChartConfiguration?: QuickSightAnalysisHistogramConfiguration;
121941
122385
  Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
121942
122386
  Title?: QuickSightAnalysisVisualTitleLabelOptions;
122387
+ /**
122388
+ * @minLength `1`
122389
+ * @maxLength `1024`
122390
+ */
122391
+ VisualContentAltText?: string;
121943
122392
  /**
121944
122393
  * @minLength `1`
121945
122394
  * @maxLength `512`
@@ -121957,6 +122406,71 @@ export type QuickSightAnalysisHorizontalTextAlignment = "LEFT" | "CENTER" | "RIG
121957
122406
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-icon.html}
121958
122407
  */
121959
122408
  export type QuickSightAnalysisIcon = "CARET_UP" | "CARET_DOWN" | "PLUS" | "MINUS" | "ARROW_UP" | "ARROW_DOWN" | "ARROW_LEFT" | "ARROW_UP_LEFT" | "ARROW_DOWN_LEFT" | "ARROW_RIGHT" | "ARROW_UP_RIGHT" | "ARROW_DOWN_RIGHT" | "FACE_UP" | "FACE_DOWN" | "FACE_FLAT" | "ONE_BAR" | "TWO_BAR" | "THREE_BAR" | "CIRCLE" | "TRIANGLE" | "SQUARE" | "FLAG" | "THUMBS_UP" | "THUMBS_DOWN" | "CHECKMARK" | "X";
122409
+ /**
122410
+ * Type definition for `AWS::QuickSight::Analysis.ImageCustomAction`.
122411
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-imagecustomaction.html}
122412
+ */
122413
+ export type QuickSightAnalysisImageCustomAction = {
122414
+ /**
122415
+ * @minLength `1`
122416
+ * @maxLength `2`
122417
+ */
122418
+ ActionOperations: QuickSightAnalysisImageCustomActionOperation[];
122419
+ /**
122420
+ * @minLength `1`
122421
+ * @maxLength `512`
122422
+ * @pattern `^[\w\-]+$`
122423
+ */
122424
+ CustomActionId: string;
122425
+ /**
122426
+ * @minLength `1`
122427
+ * @maxLength `256`
122428
+ */
122429
+ Name: string;
122430
+ Status?: QuickSightAnalysisWidgetStatus;
122431
+ Trigger: QuickSightAnalysisImageCustomActionTrigger;
122432
+ };
122433
+ /**
122434
+ * Type definition for `AWS::QuickSight::Analysis.ImageCustomActionOperation`.
122435
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-imagecustomactionoperation.html}
122436
+ */
122437
+ export type QuickSightAnalysisImageCustomActionOperation = {
122438
+ NavigationOperation?: QuickSightAnalysisCustomActionNavigationOperation;
122439
+ SetParametersOperation?: QuickSightAnalysisCustomActionSetParametersOperation;
122440
+ URLOperation?: QuickSightAnalysisCustomActionURLOperation;
122441
+ };
122442
+ /**
122443
+ * Type definition for `AWS::QuickSight::Analysis.ImageCustomActionTrigger`.
122444
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-imagecustomactiontrigger.html}
122445
+ */
122446
+ export type QuickSightAnalysisImageCustomActionTrigger = "CLICK" | "MENU";
122447
+ /**
122448
+ * Type definition for `AWS::QuickSight::Analysis.ImageInteractionOptions`.
122449
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-imageinteractionoptions.html}
122450
+ */
122451
+ export type QuickSightAnalysisImageInteractionOptions = {
122452
+ ImageMenuOption?: QuickSightAnalysisImageMenuOption;
122453
+ };
122454
+ /**
122455
+ * Type definition for `AWS::QuickSight::Analysis.ImageMenuOption`.
122456
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-imagemenuoption.html}
122457
+ */
122458
+ export type QuickSightAnalysisImageMenuOption = {
122459
+ AvailabilityStatus?: unknown;
122460
+ };
122461
+ /**
122462
+ * Type definition for `AWS::QuickSight::Analysis.ImageStaticFile`.
122463
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-imagestaticfile.html}
122464
+ */
122465
+ export type QuickSightAnalysisImageStaticFile = {
122466
+ Source?: QuickSightAnalysisStaticFileSource;
122467
+ /**
122468
+ * @minLength `1`
122469
+ * @maxLength `512`
122470
+ * @pattern `^[\w\-]+$`
122471
+ */
122472
+ StaticFileId: string;
122473
+ };
121960
122474
  /**
121961
122475
  * Type definition for `AWS::QuickSight::Analysis.InnerFilter`.
121962
122476
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-innerfilter.html}
@@ -121994,6 +122508,11 @@ export type QuickSightAnalysisInsightVisual = {
121994
122508
  InsightConfiguration?: QuickSightAnalysisInsightConfiguration;
121995
122509
  Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
121996
122510
  Title?: QuickSightAnalysisVisualTitleLabelOptions;
122511
+ /**
122512
+ * @minLength `1`
122513
+ * @maxLength `1024`
122514
+ */
122515
+ VisualContentAltText?: string;
121997
122516
  /**
121998
122517
  * @minLength `1`
121999
122518
  * @maxLength `512`
@@ -122210,6 +122729,11 @@ export type QuickSightAnalysisKPIVisual = {
122210
122729
  ConditionalFormatting?: QuickSightAnalysisKPIConditionalFormatting;
122211
122730
  Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
122212
122731
  Title?: QuickSightAnalysisVisualTitleLabelOptions;
122732
+ /**
122733
+ * @minLength `1`
122734
+ * @maxLength `1024`
122735
+ */
122736
+ VisualContentAltText?: string;
122213
122737
  /**
122214
122738
  * @minLength `1`
122215
122739
  * @maxLength `512`
@@ -122245,6 +122769,70 @@ export type QuickSightAnalysisLabelOptions = {
122245
122769
  FontConfiguration?: QuickSightAnalysisFontConfiguration;
122246
122770
  Visibility?: QuickSightAnalysisVisibility;
122247
122771
  };
122772
+ /**
122773
+ * Type definition for `AWS::QuickSight::Analysis.LayerCustomAction`.
122774
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-layercustomaction.html}
122775
+ */
122776
+ export type QuickSightAnalysisLayerCustomAction = {
122777
+ /**
122778
+ * @minLength `1`
122779
+ * @maxLength `2`
122780
+ */
122781
+ ActionOperations: QuickSightAnalysisLayerCustomActionOperation[];
122782
+ /**
122783
+ * @minLength `1`
122784
+ * @maxLength `512`
122785
+ * @pattern `^[\w\-]+$`
122786
+ */
122787
+ CustomActionId: string;
122788
+ /**
122789
+ * @minLength `1`
122790
+ * @maxLength `256`
122791
+ */
122792
+ Name: string;
122793
+ Status?: QuickSightAnalysisWidgetStatus;
122794
+ Trigger: QuickSightAnalysisLayerCustomActionTrigger;
122795
+ };
122796
+ /**
122797
+ * Type definition for `AWS::QuickSight::Analysis.LayerCustomActionOperation`.
122798
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-layercustomactionoperation.html}
122799
+ */
122800
+ export type QuickSightAnalysisLayerCustomActionOperation = {
122801
+ FilterOperation?: QuickSightAnalysisCustomActionFilterOperation;
122802
+ NavigationOperation?: QuickSightAnalysisCustomActionNavigationOperation;
122803
+ SetParametersOperation?: QuickSightAnalysisCustomActionSetParametersOperation;
122804
+ URLOperation?: QuickSightAnalysisCustomActionURLOperation;
122805
+ };
122806
+ /**
122807
+ * Type definition for `AWS::QuickSight::Analysis.LayerCustomActionTrigger`.
122808
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-layercustomactiontrigger.html}
122809
+ */
122810
+ export type QuickSightAnalysisLayerCustomActionTrigger = "DATA_POINT_CLICK" | "DATA_POINT_MENU";
122811
+ /**
122812
+ * Type definition for `AWS::QuickSight::Analysis.LayerMapVisual`.
122813
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-layermapvisual.html}
122814
+ */
122815
+ export type QuickSightAnalysisLayerMapVisual = {
122816
+ ChartConfiguration?: QuickSightAnalysisGeospatialLayerMapConfiguration;
122817
+ /**
122818
+ * @minLength `1`
122819
+ * @maxLength `2048`
122820
+ */
122821
+ DataSetIdentifier: string;
122822
+ Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
122823
+ Title?: QuickSightAnalysisVisualTitleLabelOptions;
122824
+ /**
122825
+ * @minLength `1`
122826
+ * @maxLength `1024`
122827
+ */
122828
+ VisualContentAltText?: string;
122829
+ /**
122830
+ * @minLength `1`
122831
+ * @maxLength `512`
122832
+ * @pattern `^[\w\-]+$`
122833
+ */
122834
+ VisualId: string;
122835
+ };
122248
122836
  /**
122249
122837
  * Type definition for `AWS::QuickSight::Analysis.Layout`.
122250
122838
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-layout.html}
@@ -122277,6 +122865,7 @@ export type QuickSightAnalysisLegendOptions = {
122277
122865
  Height?: string;
122278
122866
  Position?: QuickSightAnalysisLegendPosition;
122279
122867
  Title?: QuickSightAnalysisLabelOptions;
122868
+ ValueFontConfiguration?: QuickSightAnalysisFontConfiguration;
122280
122869
  Visibility?: QuickSightAnalysisVisibility;
122281
122870
  /**
122282
122871
  * String based length that is composed of value and unit in px
@@ -122461,6 +123050,11 @@ export type QuickSightAnalysisLineChartVisual = {
122461
123050
  ColumnHierarchies?: QuickSightAnalysisColumnHierarchy[];
122462
123051
  Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
122463
123052
  Title?: QuickSightAnalysisVisualTitleLabelOptions;
123053
+ /**
123054
+ * @minLength `1`
123055
+ * @maxLength `1024`
123056
+ */
123057
+ VisualContentAltText?: string;
122464
123058
  /**
122465
123059
  * @minLength `1`
122466
123060
  * @maxLength `512`
@@ -123316,6 +123910,11 @@ export type QuickSightAnalysisPieChartVisual = {
123316
123910
  ColumnHierarchies?: QuickSightAnalysisColumnHierarchy[];
123317
123911
  Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
123318
123912
  Title?: QuickSightAnalysisVisualTitleLabelOptions;
123913
+ /**
123914
+ * @minLength `1`
123915
+ * @maxLength `1024`
123916
+ */
123917
+ VisualContentAltText?: string;
123319
123918
  /**
123320
123919
  * @minLength `1`
123321
123920
  * @maxLength `512`
@@ -123614,6 +124213,11 @@ export type QuickSightAnalysisPivotTableVisual = {
123614
124213
  ConditionalFormatting?: QuickSightAnalysisPivotTableConditionalFormatting;
123615
124214
  Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
123616
124215
  Title?: QuickSightAnalysisVisualTitleLabelOptions;
124216
+ /**
124217
+ * @minLength `1`
124218
+ * @maxLength `1024`
124219
+ */
124220
+ VisualContentAltText?: string;
123617
124221
  /**
123618
124222
  * @minLength `1`
123619
124223
  * @maxLength `512`
@@ -123639,6 +124243,108 @@ export type QuickSightAnalysisPivotTotalOptions = {
123639
124243
  TotalsVisibility?: QuickSightAnalysisVisibility;
123640
124244
  ValueCellStyle?: QuickSightAnalysisTableCellStyle;
123641
124245
  };
124246
+ /**
124247
+ * Type definition for `AWS::QuickSight::Analysis.PluginVisual`.
124248
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-pluginvisual.html}
124249
+ */
124250
+ export type QuickSightAnalysisPluginVisual = {
124251
+ ChartConfiguration?: QuickSightAnalysisPluginVisualConfiguration;
124252
+ PluginArn: string;
124253
+ Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
124254
+ Title?: QuickSightAnalysisVisualTitleLabelOptions;
124255
+ /**
124256
+ * @minLength `1`
124257
+ * @maxLength `1024`
124258
+ */
124259
+ VisualContentAltText?: string;
124260
+ /**
124261
+ * @minLength `1`
124262
+ * @maxLength `512`
124263
+ * @pattern `^[\w\-]+$`
124264
+ */
124265
+ VisualId: string;
124266
+ };
124267
+ /**
124268
+ * Type definition for `AWS::QuickSight::Analysis.PluginVisualAxisName`.
124269
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-pluginvisualaxisname.html}
124270
+ */
124271
+ export type QuickSightAnalysisPluginVisualAxisName = "GROUP_BY" | "VALUE";
124272
+ /**
124273
+ * Type definition for `AWS::QuickSight::Analysis.PluginVisualConfiguration`.
124274
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-pluginvisualconfiguration.html}
124275
+ */
124276
+ export type QuickSightAnalysisPluginVisualConfiguration = {
124277
+ /**
124278
+ * @minLength `0`
124279
+ * @maxLength `10`
124280
+ */
124281
+ FieldWells?: QuickSightAnalysisPluginVisualFieldWell[];
124282
+ SortConfiguration?: QuickSightAnalysisPluginVisualSortConfiguration;
124283
+ VisualOptions?: QuickSightAnalysisPluginVisualOptions;
124284
+ };
124285
+ /**
124286
+ * Type definition for `AWS::QuickSight::Analysis.PluginVisualFieldWell`.
124287
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-pluginvisualfieldwell.html}
124288
+ */
124289
+ export type QuickSightAnalysisPluginVisualFieldWell = {
124290
+ AxisName?: QuickSightAnalysisPluginVisualAxisName;
124291
+ /**
124292
+ * @minLength `0`
124293
+ * @maxLength `200`
124294
+ */
124295
+ Dimensions?: QuickSightAnalysisDimensionField[];
124296
+ /**
124297
+ * @minLength `0`
124298
+ * @maxLength `200`
124299
+ */
124300
+ Measures?: QuickSightAnalysisMeasureField[];
124301
+ /**
124302
+ * @minLength `0`
124303
+ * @maxLength `200`
124304
+ */
124305
+ Unaggregated?: QuickSightAnalysisUnaggregatedField[];
124306
+ };
124307
+ /**
124308
+ * Type definition for `AWS::QuickSight::Analysis.PluginVisualItemsLimitConfiguration`.
124309
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-pluginvisualitemslimitconfiguration.html}
124310
+ */
124311
+ export type QuickSightAnalysisPluginVisualItemsLimitConfiguration = {
124312
+ ItemsLimit?: number;
124313
+ };
124314
+ /**
124315
+ * Type definition for `AWS::QuickSight::Analysis.PluginVisualOptions`.
124316
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-pluginvisualoptions.html}
124317
+ */
124318
+ export type QuickSightAnalysisPluginVisualOptions = {
124319
+ VisualProperties?: QuickSightAnalysisPluginVisualProperty[];
124320
+ };
124321
+ /**
124322
+ * Type definition for `AWS::QuickSight::Analysis.PluginVisualProperty`.
124323
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-pluginvisualproperty.html}
124324
+ */
124325
+ export type QuickSightAnalysisPluginVisualProperty = {
124326
+ Name?: string;
124327
+ Value?: string;
124328
+ };
124329
+ /**
124330
+ * Type definition for `AWS::QuickSight::Analysis.PluginVisualSortConfiguration`.
124331
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-pluginvisualsortconfiguration.html}
124332
+ */
124333
+ export type QuickSightAnalysisPluginVisualSortConfiguration = {
124334
+ PluginVisualTableQuerySort?: QuickSightAnalysisPluginVisualTableQuerySort;
124335
+ };
124336
+ /**
124337
+ * Type definition for `AWS::QuickSight::Analysis.PluginVisualTableQuerySort`.
124338
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-pluginvisualtablequerysort.html}
124339
+ */
124340
+ export type QuickSightAnalysisPluginVisualTableQuerySort = {
124341
+ ItemsLimitConfiguration?: QuickSightAnalysisPluginVisualItemsLimitConfiguration;
124342
+ /**
124343
+ * @minLength `0`
124344
+ * @maxLength `100`
124345
+ */
124346
+ RowSort?: QuickSightAnalysisFieldSortOptions[];
124347
+ };
123642
124348
  /**
123643
124349
  * Type definition for `AWS::QuickSight::Analysis.PredefinedHierarchy`.
123644
124350
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-predefinedhierarchy.html}
@@ -123803,6 +124509,11 @@ export type QuickSightAnalysisRadarChartVisual = {
123803
124509
  ColumnHierarchies?: QuickSightAnalysisColumnHierarchy[];
123804
124510
  Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
123805
124511
  Title?: QuickSightAnalysisVisualTitleLabelOptions;
124512
+ /**
124513
+ * @minLength `1`
124514
+ * @maxLength `1024`
124515
+ */
124516
+ VisualContentAltText?: string;
123806
124517
  /**
123807
124518
  * @minLength `1`
123808
124519
  * @maxLength `512`
@@ -124119,6 +124830,11 @@ export type QuickSightAnalysisSankeyDiagramVisual = {
124119
124830
  ChartConfiguration?: QuickSightAnalysisSankeyDiagramChartConfiguration;
124120
124831
  Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
124121
124832
  Title?: QuickSightAnalysisVisualTitleLabelOptions;
124833
+ /**
124834
+ * @minLength `1`
124835
+ * @maxLength `1024`
124836
+ */
124837
+ VisualContentAltText?: string;
124122
124838
  /**
124123
124839
  * @minLength `1`
124124
124840
  * @maxLength `512`
@@ -124229,6 +124945,11 @@ export type QuickSightAnalysisScatterPlotVisual = {
124229
124945
  ColumnHierarchies?: QuickSightAnalysisColumnHierarchy[];
124230
124946
  Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
124231
124947
  Title?: QuickSightAnalysisVisualTitleLabelOptions;
124948
+ /**
124949
+ * @minLength `1`
124950
+ * @maxLength `1024`
124951
+ */
124952
+ VisualContentAltText?: string;
124232
124953
  /**
124233
124954
  * @minLength `1`
124234
124955
  * @maxLength `512`
@@ -124390,6 +125111,11 @@ export type QuickSightAnalysisShapeConditionalFormat = {
124390
125111
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-sheet.html}
124391
125112
  */
124392
125113
  export type QuickSightAnalysisSheet = {
125114
+ /**
125115
+ * @minLength `0`
125116
+ * @maxLength `10`
125117
+ */
125118
+ Images?: QuickSightAnalysisSheetImage[];
124393
125119
  /**
124394
125120
  * <p>The name of a sheet. This name is displayed on the sheet's tab in the Amazon QuickSight
124395
125121
  console.</p>
@@ -124467,6 +125193,11 @@ export type QuickSightAnalysisSheetDefinition = {
124467
125193
  * @maxLength `200`
124468
125194
  */
124469
125195
  FilterControls?: QuickSightAnalysisFilterControl[];
125196
+ /**
125197
+ * @minLength `0`
125198
+ * @maxLength `10`
125199
+ */
125200
+ Images?: QuickSightAnalysisSheetImage[];
124470
125201
  /**
124471
125202
  * @minLength `1`
124472
125203
  * @maxLength `1`
@@ -124528,6 +125259,82 @@ export type QuickSightAnalysisSheetElementRenderingRule = {
124528
125259
  */
124529
125260
  Expression: string;
124530
125261
  };
125262
+ /**
125263
+ * Type definition for `AWS::QuickSight::Analysis.SheetImage`.
125264
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-sheetimage.html}
125265
+ */
125266
+ export type QuickSightAnalysisSheetImage = {
125267
+ /**
125268
+ * @minLength `0`
125269
+ * @maxLength `10`
125270
+ */
125271
+ Actions?: QuickSightAnalysisImageCustomAction[];
125272
+ /**
125273
+ * @minLength `1`
125274
+ * @maxLength `1024`
125275
+ */
125276
+ ImageContentAltText?: string;
125277
+ Interactions?: QuickSightAnalysisImageInteractionOptions;
125278
+ Scaling?: QuickSightAnalysisSheetImageScalingConfiguration;
125279
+ /**
125280
+ * @minLength `1`
125281
+ * @maxLength `512`
125282
+ * @pattern `^[\w\-]+$`
125283
+ */
125284
+ SheetImageId: string;
125285
+ Source: QuickSightAnalysisSheetImageSource;
125286
+ Tooltip?: QuickSightAnalysisSheetImageTooltipConfiguration;
125287
+ };
125288
+ /**
125289
+ * Type definition for `AWS::QuickSight::Analysis.SheetImageScalingConfiguration`.
125290
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-sheetimagescalingconfiguration.html}
125291
+ */
125292
+ export type QuickSightAnalysisSheetImageScalingConfiguration = {
125293
+ ScalingType?: QuickSightAnalysisSheetImageScalingType;
125294
+ };
125295
+ /**
125296
+ * Type definition for `AWS::QuickSight::Analysis.SheetImageScalingType`.
125297
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-sheetimagescalingtype.html}
125298
+ */
125299
+ export type QuickSightAnalysisSheetImageScalingType = "SCALE_TO_WIDTH" | "SCALE_TO_HEIGHT" | "SCALE_TO_CONTAINER" | "SCALE_NONE";
125300
+ /**
125301
+ * Type definition for `AWS::QuickSight::Analysis.SheetImageSource`.
125302
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-sheetimagesource.html}
125303
+ */
125304
+ export type QuickSightAnalysisSheetImageSource = {
125305
+ SheetImageStaticFileSource?: QuickSightAnalysisSheetImageStaticFileSource;
125306
+ };
125307
+ /**
125308
+ * Type definition for `AWS::QuickSight::Analysis.SheetImageStaticFileSource`.
125309
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-sheetimagestaticfilesource.html}
125310
+ */
125311
+ export type QuickSightAnalysisSheetImageStaticFileSource = {
125312
+ /**
125313
+ * @minLength `1`
125314
+ * @maxLength `512`
125315
+ * @pattern `^[\w\-]+$`
125316
+ */
125317
+ StaticFileId: string;
125318
+ };
125319
+ /**
125320
+ * Type definition for `AWS::QuickSight::Analysis.SheetImageTooltipConfiguration`.
125321
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-sheetimagetooltipconfiguration.html}
125322
+ */
125323
+ export type QuickSightAnalysisSheetImageTooltipConfiguration = {
125324
+ TooltipText?: QuickSightAnalysisSheetImageTooltipText;
125325
+ Visibility?: QuickSightAnalysisVisibility;
125326
+ };
125327
+ /**
125328
+ * Type definition for `AWS::QuickSight::Analysis.SheetImageTooltipText`.
125329
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-sheetimagetooltiptext.html}
125330
+ */
125331
+ export type QuickSightAnalysisSheetImageTooltipText = {
125332
+ /**
125333
+ * @minLength `1`
125334
+ * @maxLength `1024`
125335
+ */
125336
+ PlainText?: string;
125337
+ };
124531
125338
  /**
124532
125339
  * Type definition for `AWS::QuickSight::Analysis.SheetTextBox`.
124533
125340
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-sheettextbox.html}
@@ -124688,11 +125495,56 @@ export type QuickSightAnalysisSpacing = {
124688
125495
  */
124689
125496
  Top?: string;
124690
125497
  };
125498
+ /**
125499
+ * Type definition for `AWS::QuickSight::Analysis.SpatialStaticFile`.
125500
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-spatialstaticfile.html}
125501
+ */
125502
+ export type QuickSightAnalysisSpatialStaticFile = {
125503
+ Source?: QuickSightAnalysisStaticFileSource;
125504
+ /**
125505
+ * @minLength `1`
125506
+ * @maxLength `512`
125507
+ * @pattern `^[\w\-]+$`
125508
+ */
125509
+ StaticFileId: string;
125510
+ };
124691
125511
  /**
124692
125512
  * Type definition for `AWS::QuickSight::Analysis.SpecialValue`.
124693
125513
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-specialvalue.html}
124694
125514
  */
124695
125515
  export type QuickSightAnalysisSpecialValue = "EMPTY" | "NULL" | "OTHER";
125516
+ /**
125517
+ * Type definition for `AWS::QuickSight::Analysis.StaticFile`.
125518
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-staticfile.html}
125519
+ */
125520
+ export type QuickSightAnalysisStaticFile = {
125521
+ ImageStaticFile?: QuickSightAnalysisImageStaticFile;
125522
+ SpatialStaticFile?: QuickSightAnalysisSpatialStaticFile;
125523
+ };
125524
+ /**
125525
+ * Type definition for `AWS::QuickSight::Analysis.StaticFileS3SourceOptions`.
125526
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-staticfiles3sourceoptions.html}
125527
+ */
125528
+ export type QuickSightAnalysisStaticFileS3SourceOptions = {
125529
+ BucketName: string;
125530
+ ObjectKey: string;
125531
+ Region: string;
125532
+ };
125533
+ /**
125534
+ * Type definition for `AWS::QuickSight::Analysis.StaticFileSource`.
125535
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-staticfilesource.html}
125536
+ */
125537
+ export type QuickSightAnalysisStaticFileSource = {
125538
+ S3Options?: QuickSightAnalysisStaticFileS3SourceOptions;
125539
+ UrlOptions?: QuickSightAnalysisStaticFileUrlSourceOptions;
125540
+ };
125541
+ /**
125542
+ * Type definition for `AWS::QuickSight::Analysis.StaticFileUrlSourceOptions`.
125543
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-staticfileurlsourceoptions.html}
125544
+ */
125545
+ export type QuickSightAnalysisStaticFileUrlSourceOptions = {
125546
+ Url: string;
125547
+ };
124696
125548
  /**
124697
125549
  * Type definition for `AWS::QuickSight::Analysis.StringDefaultValues`.
124698
125550
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-stringdefaultvalues.html}
@@ -125115,6 +125967,11 @@ export type QuickSightAnalysisTableVisual = {
125115
125967
  ConditionalFormatting?: QuickSightAnalysisTableConditionalFormatting;
125116
125968
  Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
125117
125969
  Title?: QuickSightAnalysisVisualTitleLabelOptions;
125970
+ /**
125971
+ * @minLength `1`
125972
+ * @maxLength `1024`
125973
+ */
125974
+ VisualContentAltText?: string;
125118
125975
  /**
125119
125976
  * @minLength `1`
125120
125977
  * @maxLength `512`
@@ -125525,6 +126382,11 @@ export type QuickSightAnalysisTreeMapVisual = {
125525
126382
  ColumnHierarchies?: QuickSightAnalysisColumnHierarchy[];
125526
126383
  Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
125527
126384
  Title?: QuickSightAnalysisVisualTitleLabelOptions;
126385
+ /**
126386
+ * @minLength `1`
126387
+ * @maxLength `1024`
126388
+ */
126389
+ VisualContentAltText?: string;
125528
126390
  /**
125529
126391
  * @minLength `1`
125530
126392
  * @maxLength `512`
@@ -125624,9 +126486,11 @@ export type QuickSightAnalysisVisual = {
125624
126486
  HistogramVisual?: QuickSightAnalysisHistogramVisual;
125625
126487
  InsightVisual?: QuickSightAnalysisInsightVisual;
125626
126488
  KPIVisual?: QuickSightAnalysisKPIVisual;
126489
+ LayerMapVisual?: QuickSightAnalysisLayerMapVisual;
125627
126490
  LineChartVisual?: QuickSightAnalysisLineChartVisual;
125628
126491
  PieChartVisual?: QuickSightAnalysisPieChartVisual;
125629
126492
  PivotTableVisual?: QuickSightAnalysisPivotTableVisual;
126493
+ PluginVisual?: QuickSightAnalysisPluginVisual;
125630
126494
  RadarChartVisual?: QuickSightAnalysisRadarChartVisual;
125631
126495
  SankeyDiagramVisual?: QuickSightAnalysisSankeyDiagramVisual;
125632
126496
  ScatterPlotVisual?: QuickSightAnalysisScatterPlotVisual;
@@ -125812,6 +126676,11 @@ export type QuickSightAnalysisWaterfallVisual = {
125812
126676
  ColumnHierarchies?: QuickSightAnalysisColumnHierarchy[];
125813
126677
  Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
125814
126678
  Title?: QuickSightAnalysisVisualTitleLabelOptions;
126679
+ /**
126680
+ * @minLength `1`
126681
+ * @maxLength `1024`
126682
+ */
126683
+ VisualContentAltText?: string;
125815
126684
  /**
125816
126685
  * @minLength `1`
125817
126686
  * @maxLength `512`
@@ -125925,6 +126794,11 @@ export type QuickSightAnalysisWordCloudVisual = {
125925
126794
  ColumnHierarchies?: QuickSightAnalysisColumnHierarchy[];
125926
126795
  Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
125927
126796
  Title?: QuickSightAnalysisVisualTitleLabelOptions;
126797
+ /**
126798
+ * @minLength `1`
126799
+ * @maxLength `1024`
126800
+ */
126801
+ VisualContentAltText?: string;
125928
126802
  /**
125929
126803
  * @minLength `1`
125930
126804
  * @maxLength `512`
@@ -126101,6 +126975,154 @@ export type QuickSightDashboardAttributes = {
126101
126975
  * @maxLength `20`
126102
126976
  */
126103
126977
  Sheets: {
126978
+ /**
126979
+ * @minLength `0`
126980
+ * @maxLength `10`
126981
+ */
126982
+ Images: {
126983
+ /**
126984
+ * @minLength `0`
126985
+ * @maxLength `10`
126986
+ */
126987
+ Actions: {
126988
+ /**
126989
+ * @minLength `1`
126990
+ * @maxLength `2`
126991
+ */
126992
+ ActionOperations: {
126993
+ NavigationOperation: {
126994
+ LocalNavigationConfiguration: {
126995
+ /**
126996
+ * @minLength `1`
126997
+ * @maxLength `512`
126998
+ * @pattern `^[\w\-]+$`
126999
+ */
127000
+ TargetSheetId: string;
127001
+ };
127002
+ };
127003
+ SetParametersOperation: {
127004
+ /**
127005
+ * @minLength `1`
127006
+ * @maxLength `200`
127007
+ */
127008
+ ParameterValueConfigurations: {
127009
+ /**
127010
+ * @minLength `1`
127011
+ * @maxLength `2048`
127012
+ * @pattern `^[a-zA-Z0-9]+$`
127013
+ */
127014
+ DestinationParameterName: string;
127015
+ Value: {
127016
+ CustomValuesConfiguration: {
127017
+ CustomValues: {
127018
+ /**
127019
+ * @minLength `0`
127020
+ * @maxLength `50000`
127021
+ */
127022
+ DateTimeValues: string[];
127023
+ /**
127024
+ * @minLength `0`
127025
+ * @maxLength `50000`
127026
+ */
127027
+ DecimalValues: number[];
127028
+ /**
127029
+ * @minLength `0`
127030
+ * @maxLength `50000`
127031
+ */
127032
+ IntegerValues: number[];
127033
+ /**
127034
+ * @minLength `0`
127035
+ * @maxLength `50000`
127036
+ */
127037
+ StringValues: string[];
127038
+ };
127039
+ IncludeNullValue: boolean;
127040
+ };
127041
+ SelectAllValueOptions: QuickSightDashboardSelectAllValueOptions;
127042
+ SourceColumn: {
127043
+ /**
127044
+ * @minLength `1`
127045
+ * @maxLength `127`
127046
+ */
127047
+ ColumnName: string;
127048
+ /**
127049
+ * @minLength `1`
127050
+ * @maxLength `2048`
127051
+ */
127052
+ DataSetIdentifier: string;
127053
+ };
127054
+ /**
127055
+ * @minLength `1`
127056
+ * @maxLength `512`
127057
+ */
127058
+ SourceField: string;
127059
+ SourceParameterName: string;
127060
+ };
127061
+ }[];
127062
+ };
127063
+ URLOperation: {
127064
+ URLTarget: QuickSightDashboardURLTargetConfiguration;
127065
+ /**
127066
+ * @minLength `1`
127067
+ * @maxLength `2048`
127068
+ */
127069
+ URLTemplate: string;
127070
+ };
127071
+ }[];
127072
+ /**
127073
+ * @minLength `1`
127074
+ * @maxLength `512`
127075
+ * @pattern `^[\w\-]+$`
127076
+ */
127077
+ CustomActionId: string;
127078
+ /**
127079
+ * @minLength `1`
127080
+ * @maxLength `256`
127081
+ */
127082
+ Name: string;
127083
+ Status: QuickSightDashboardWidgetStatus;
127084
+ Trigger: QuickSightDashboardImageCustomActionTrigger;
127085
+ }[];
127086
+ /**
127087
+ * @minLength `1`
127088
+ * @maxLength `1024`
127089
+ */
127090
+ ImageContentAltText: string;
127091
+ Interactions: {
127092
+ ImageMenuOption: {
127093
+ AvailabilityStatus: QuickSightDashboardDashboardBehavior;
127094
+ };
127095
+ };
127096
+ Scaling: {
127097
+ ScalingType: QuickSightDashboardSheetImageScalingType;
127098
+ };
127099
+ /**
127100
+ * @minLength `1`
127101
+ * @maxLength `512`
127102
+ * @pattern `^[\w\-]+$`
127103
+ */
127104
+ SheetImageId: string;
127105
+ Source: {
127106
+ SheetImageStaticFileSource: {
127107
+ /**
127108
+ * @minLength `1`
127109
+ * @maxLength `512`
127110
+ * @pattern `^[\w\-]+$`
127111
+ */
127112
+ StaticFileId: string;
127113
+ };
127114
+ };
127115
+ Tooltip: {
127116
+ TooltipText: {
127117
+ /**
127118
+ * @minLength `1`
127119
+ * @maxLength `1024`
127120
+ */
127121
+ PlainText: string;
127122
+ };
127123
+ Visibility: QuickSightDashboardVisibility;
127124
+ };
127125
+ }[];
126104
127126
  /**
126105
127127
  * <p>The name of a sheet. This name is displayed on the sheet's tab in the Amazon QuickSight
126106
127128
  console.</p>
@@ -126457,6 +127479,11 @@ export type QuickSightDashboardBarChartVisual = {
126457
127479
  ColumnHierarchies?: QuickSightDashboardColumnHierarchy[];
126458
127480
  Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
126459
127481
  Title?: QuickSightDashboardVisualTitleLabelOptions;
127482
+ /**
127483
+ * @minLength `1`
127484
+ * @maxLength `1024`
127485
+ */
127486
+ VisualContentAltText?: string;
126460
127487
  /**
126461
127488
  * @minLength `1`
126462
127489
  * @maxLength `512`
@@ -126616,6 +127643,11 @@ export type QuickSightDashboardBoxPlotVisual = {
126616
127643
  ColumnHierarchies?: QuickSightDashboardColumnHierarchy[];
126617
127644
  Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
126618
127645
  Title?: QuickSightDashboardVisualTitleLabelOptions;
127646
+ /**
127647
+ * @minLength `1`
127648
+ * @maxLength `1024`
127649
+ */
127650
+ VisualContentAltText?: string;
126619
127651
  /**
126620
127652
  * @minLength `1`
126621
127653
  * @maxLength `512`
@@ -126983,6 +128015,11 @@ export type QuickSightDashboardComboChartVisual = {
126983
128015
  ColumnHierarchies?: QuickSightDashboardColumnHierarchy[];
126984
128016
  Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
126985
128017
  Title?: QuickSightDashboardVisualTitleLabelOptions;
128018
+ /**
128019
+ * @minLength `1`
128020
+ * @maxLength `1024`
128021
+ */
128022
+ VisualContentAltText?: string;
126986
128023
  /**
126987
128024
  * @minLength `1`
126988
128025
  * @maxLength `512`
@@ -127273,6 +128310,11 @@ export type QuickSightDashboardCustomContentVisual = {
127273
128310
  DataSetIdentifier: string;
127274
128311
  Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
127275
128312
  Title?: QuickSightDashboardVisualTitleLabelOptions;
128313
+ /**
128314
+ * @minLength `1`
128315
+ * @maxLength `1024`
128316
+ */
128317
+ VisualContentAltText?: string;
127276
128318
  /**
127277
128319
  * @minLength `1`
127278
128320
  * @maxLength `512`
@@ -127555,6 +128597,11 @@ export type QuickSightDashboardDashboardVersionDefinition = {
127555
128597
  * @maxLength `20`
127556
128598
  */
127557
128599
  Sheets?: QuickSightDashboardSheetDefinition[];
128600
+ /**
128601
+ * @minLength `0`
128602
+ * @maxLength `200`
128603
+ */
128604
+ StaticFiles?: QuickSightDashboardStaticFile[];
127558
128605
  };
127559
128606
  /**
127560
128607
  * Type definition for `AWS::QuickSight::Dashboard.DashboardVisualPublishOptions`.
@@ -128448,6 +129495,11 @@ export type QuickSightDashboardFilledMapVisual = {
128448
129495
  ConditionalFormatting?: QuickSightDashboardFilledMapConditionalFormatting;
128449
129496
  Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
128450
129497
  Title?: QuickSightDashboardVisualTitleLabelOptions;
129498
+ /**
129499
+ * @minLength `1`
129500
+ * @maxLength `1024`
129501
+ */
129502
+ VisualContentAltText?: string;
128451
129503
  /**
128452
129504
  * @minLength `1`
128453
129505
  * @maxLength `512`
@@ -128801,6 +129853,10 @@ export type QuickSightDashboardFontDecoration = "UNDERLINE" | "NONE";
128801
129853
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-fontsize.html}
128802
129854
  */
128803
129855
  export type QuickSightDashboardFontSize = {
129856
+ /**
129857
+ * String based length that is composed of value and unit in px
129858
+ */
129859
+ Absolute?: string;
128804
129860
  Relative?: QuickSightDashboardRelativeFontSize;
128805
129861
  };
128806
129862
  /**
@@ -129076,6 +130132,11 @@ export type QuickSightDashboardFunnelChartVisual = {
129076
130132
  ColumnHierarchies?: QuickSightDashboardColumnHierarchy[];
129077
130133
  Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
129078
130134
  Title?: QuickSightDashboardVisualTitleLabelOptions;
130135
+ /**
130136
+ * @minLength `1`
130137
+ * @maxLength `1024`
130138
+ */
130139
+ VisualContentAltText?: string;
129079
130140
  /**
129080
130141
  * @minLength `1`
129081
130142
  * @maxLength `512`
@@ -129169,6 +130230,11 @@ export type QuickSightDashboardGaugeChartVisual = {
129169
130230
  ConditionalFormatting?: QuickSightDashboardGaugeChartConditionalFormatting;
129170
130231
  Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
129171
130232
  Title?: QuickSightDashboardVisualTitleLabelOptions;
130233
+ /**
130234
+ * @minLength `1`
130235
+ * @maxLength `1024`
130236
+ */
130237
+ VisualContentAltText?: string;
129172
130238
  /**
129173
130239
  * @minLength `1`
129174
130240
  * @maxLength `512`
@@ -129176,6 +130242,69 @@ export type QuickSightDashboardGaugeChartVisual = {
129176
130242
  */
129177
130243
  VisualId: string;
129178
130244
  };
130245
+ /**
130246
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialCategoricalColor`.
130247
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialcategoricalcolor.html}
130248
+ */
130249
+ export type QuickSightDashboardGeospatialCategoricalColor = {
130250
+ CategoryDataColors: QuickSightDashboardGeospatialCategoricalDataColor[];
130251
+ /**
130252
+ * @min `0`
130253
+ * @max `1`
130254
+ */
130255
+ DefaultOpacity?: number;
130256
+ NullDataSettings?: QuickSightDashboardGeospatialNullDataSettings;
130257
+ NullDataVisibility?: QuickSightDashboardVisibility;
130258
+ };
130259
+ /**
130260
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialCategoricalDataColor`.
130261
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialcategoricaldatacolor.html}
130262
+ */
130263
+ export type QuickSightDashboardGeospatialCategoricalDataColor = {
130264
+ /**
130265
+ * @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
130266
+ */
130267
+ Color: string;
130268
+ DataValue: string;
130269
+ };
130270
+ /**
130271
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialCircleRadius`.
130272
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialcircleradius.html}
130273
+ */
130274
+ export type QuickSightDashboardGeospatialCircleRadius = {
130275
+ /**
130276
+ * @min `0`
130277
+ */
130278
+ Radius?: number;
130279
+ };
130280
+ /**
130281
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialCircleSymbolStyle`.
130282
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialcirclesymbolstyle.html}
130283
+ */
130284
+ export type QuickSightDashboardGeospatialCircleSymbolStyle = {
130285
+ CircleRadius?: QuickSightDashboardGeospatialCircleRadius;
130286
+ FillColor?: QuickSightDashboardGeospatialColor;
130287
+ StrokeColor?: QuickSightDashboardGeospatialColor;
130288
+ StrokeWidth?: QuickSightDashboardGeospatialLineWidth;
130289
+ };
130290
+ /**
130291
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialColor`.
130292
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialcolor.html}
130293
+ */
130294
+ export type QuickSightDashboardGeospatialColor = {
130295
+ Categorical?: QuickSightDashboardGeospatialCategoricalColor;
130296
+ Gradient?: QuickSightDashboardGeospatialGradientColor;
130297
+ /**
130298
+ * Describes the properties for a solid color
130299
+ */
130300
+ Solid?: QuickSightDashboardGeospatialSolidColor;
130301
+ };
130302
+ /**
130303
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialColorState`.
130304
+ * Defines view state of the color
130305
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialcolorstate.html}
130306
+ */
130307
+ export type QuickSightDashboardGeospatialColorState = "ENABLED" | "DISABLED";
129179
130308
  /**
129180
130309
  * Type definition for `AWS::QuickSight::Dashboard.GeospatialCoordinateBounds`.
129181
130310
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialcoordinatebounds.html}
@@ -129202,6 +130331,42 @@ export type QuickSightDashboardGeospatialCoordinateBounds = {
129202
130331
  */
129203
130332
  West: number;
129204
130333
  };
130334
+ /**
130335
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialDataSourceItem`.
130336
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialdatasourceitem.html}
130337
+ */
130338
+ export type QuickSightDashboardGeospatialDataSourceItem = {
130339
+ StaticFileDataSource?: QuickSightDashboardGeospatialStaticFileSource;
130340
+ };
130341
+ /**
130342
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialGradientColor`.
130343
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialgradientcolor.html}
130344
+ */
130345
+ export type QuickSightDashboardGeospatialGradientColor = {
130346
+ /**
130347
+ * @min `0`
130348
+ * @max `1`
130349
+ */
130350
+ DefaultOpacity?: number;
130351
+ NullDataSettings?: QuickSightDashboardGeospatialNullDataSettings;
130352
+ NullDataVisibility?: QuickSightDashboardVisibility;
130353
+ /**
130354
+ * @minLength `2`
130355
+ * @maxLength `3`
130356
+ */
130357
+ StepColors: QuickSightDashboardGeospatialGradientStepColor[];
130358
+ };
130359
+ /**
130360
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialGradientStepColor`.
130361
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialgradientstepcolor.html}
130362
+ */
130363
+ export type QuickSightDashboardGeospatialGradientStepColor = {
130364
+ /**
130365
+ * @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
130366
+ */
130367
+ Color: string;
130368
+ DataValue: number;
130369
+ };
129205
130370
  /**
129206
130371
  * Type definition for `AWS::QuickSight::Dashboard.GeospatialHeatmapColorScale`.
129207
130372
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialheatmapcolorscale.html}
@@ -129230,6 +130395,107 @@ export type QuickSightDashboardGeospatialHeatmapDataColor = {
129230
130395
  */
129231
130396
  Color: string;
129232
130397
  };
130398
+ /**
130399
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialLayerColorField`.
130400
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallayercolorfield.html}
130401
+ */
130402
+ export type QuickSightDashboardGeospatialLayerColorField = {
130403
+ /**
130404
+ * @minLength `0`
130405
+ * @maxLength `1`
130406
+ */
130407
+ ColorDimensionsFields?: QuickSightDashboardDimensionField[];
130408
+ /**
130409
+ * @minLength `0`
130410
+ * @maxLength `1`
130411
+ */
130412
+ ColorValuesFields?: QuickSightDashboardMeasureField[];
130413
+ };
130414
+ /**
130415
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialLayerDefinition`.
130416
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallayerdefinition.html}
130417
+ */
130418
+ export type QuickSightDashboardGeospatialLayerDefinition = {
130419
+ LineLayer?: QuickSightDashboardGeospatialLineLayer;
130420
+ PointLayer?: QuickSightDashboardGeospatialPointLayer;
130421
+ PolygonLayer?: QuickSightDashboardGeospatialPolygonLayer;
130422
+ };
130423
+ /**
130424
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialLayerItem`.
130425
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallayeritem.html}
130426
+ */
130427
+ export type QuickSightDashboardGeospatialLayerItem = {
130428
+ /**
130429
+ * @minLength `0`
130430
+ * @maxLength `10`
130431
+ */
130432
+ Actions?: QuickSightDashboardLayerCustomAction[];
130433
+ DataSource?: QuickSightDashboardGeospatialDataSourceItem;
130434
+ JoinDefinition?: QuickSightDashboardGeospatialLayerJoinDefinition;
130435
+ Label?: string;
130436
+ LayerDefinition?: QuickSightDashboardGeospatialLayerDefinition;
130437
+ LayerId: string;
130438
+ LayerType?: QuickSightDashboardGeospatialLayerType;
130439
+ Tooltip?: QuickSightDashboardTooltipOptions;
130440
+ Visibility?: QuickSightDashboardVisibility;
130441
+ };
130442
+ /**
130443
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialLayerJoinDefinition`.
130444
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallayerjoindefinition.html}
130445
+ */
130446
+ export type QuickSightDashboardGeospatialLayerJoinDefinition = {
130447
+ ColorField?: QuickSightDashboardGeospatialLayerColorField;
130448
+ DatasetKeyField?: QuickSightDashboardUnaggregatedField;
130449
+ ShapeKeyField?: string;
130450
+ };
130451
+ /**
130452
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialLayerMapConfiguration`.
130453
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallayermapconfiguration.html}
130454
+ */
130455
+ export type QuickSightDashboardGeospatialLayerMapConfiguration = {
130456
+ Interactions?: unknown;
130457
+ Legend?: QuickSightDashboardLegendOptions;
130458
+ MapLayers?: QuickSightDashboardGeospatialLayerItem[];
130459
+ MapState?: QuickSightDashboardGeospatialMapState;
130460
+ MapStyle?: QuickSightDashboardGeospatialMapStyle;
130461
+ };
130462
+ /**
130463
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialLayerType`.
130464
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallayertype.html}
130465
+ */
130466
+ export type QuickSightDashboardGeospatialLayerType = "POINT" | "LINE" | "POLYGON";
130467
+ /**
130468
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialLineLayer`.
130469
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallinelayer.html}
130470
+ */
130471
+ export type QuickSightDashboardGeospatialLineLayer = {
130472
+ Style: QuickSightDashboardGeospatialLineStyle;
130473
+ };
130474
+ /**
130475
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialLineStyle`.
130476
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallinestyle.html}
130477
+ */
130478
+ export type QuickSightDashboardGeospatialLineStyle = {
130479
+ LineSymbolStyle?: QuickSightDashboardGeospatialLineSymbolStyle;
130480
+ };
130481
+ /**
130482
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialLineSymbolStyle`.
130483
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallinesymbolstyle.html}
130484
+ */
130485
+ export type QuickSightDashboardGeospatialLineSymbolStyle = {
130486
+ FillColor?: QuickSightDashboardGeospatialColor;
130487
+ LineWidth?: QuickSightDashboardGeospatialLineWidth;
130488
+ };
130489
+ /**
130490
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialLineWidth`.
130491
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallinewidth.html}
130492
+ */
130493
+ export type QuickSightDashboardGeospatialLineWidth = {
130494
+ /**
130495
+ * @min `0`
130496
+ */
130497
+ LineWidth?: number;
130498
+ };
129233
130499
  /**
129234
130500
  * Type definition for `AWS::QuickSight::Dashboard.GeospatialMapAggregatedFieldWells`.
129235
130501
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialmapaggregatedfieldwells.html}
@@ -129257,6 +130523,7 @@ export type QuickSightDashboardGeospatialMapAggregatedFieldWells = {
129257
130523
  */
129258
130524
  export type QuickSightDashboardGeospatialMapConfiguration = {
129259
130525
  FieldWells?: QuickSightDashboardGeospatialMapFieldWells;
130526
+ Interactions?: unknown;
129260
130527
  Legend?: QuickSightDashboardLegendOptions;
129261
130528
  MapStyleOptions?: QuickSightDashboardGeospatialMapStyleOptions;
129262
130529
  PointStyleOptions?: QuickSightDashboardGeospatialPointStyleOptions;
@@ -129271,6 +130538,31 @@ export type QuickSightDashboardGeospatialMapConfiguration = {
129271
130538
  export type QuickSightDashboardGeospatialMapFieldWells = {
129272
130539
  GeospatialMapAggregatedFieldWells?: QuickSightDashboardGeospatialMapAggregatedFieldWells;
129273
130540
  };
130541
+ /**
130542
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialMapNavigation`.
130543
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialmapnavigation.html}
130544
+ */
130545
+ export type QuickSightDashboardGeospatialMapNavigation = "ENABLED" | "DISABLED";
130546
+ /**
130547
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialMapState`.
130548
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialmapstate.html}
130549
+ */
130550
+ export type QuickSightDashboardGeospatialMapState = {
130551
+ Bounds?: QuickSightDashboardGeospatialCoordinateBounds;
130552
+ MapNavigation?: QuickSightDashboardGeospatialMapNavigation;
130553
+ };
130554
+ /**
130555
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialMapStyle`.
130556
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialmapstyle.html}
130557
+ */
130558
+ export type QuickSightDashboardGeospatialMapStyle = {
130559
+ /**
130560
+ * @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
130561
+ */
130562
+ BackgroundColor?: string;
130563
+ BaseMapStyle?: QuickSightDashboardBaseMapStyleType;
130564
+ BaseMapVisibility?: QuickSightDashboardVisibility;
130565
+ };
129274
130566
  /**
129275
130567
  * Type definition for `AWS::QuickSight::Dashboard.GeospatialMapStyleOptions`.
129276
130568
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialmapstyleoptions.html}
@@ -129296,6 +130588,11 @@ export type QuickSightDashboardGeospatialMapVisual = {
129296
130588
  ColumnHierarchies?: QuickSightDashboardColumnHierarchy[];
129297
130589
  Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
129298
130590
  Title?: QuickSightDashboardVisualTitleLabelOptions;
130591
+ /**
130592
+ * @minLength `1`
130593
+ * @maxLength `1024`
130594
+ */
130595
+ VisualContentAltText?: string;
129299
130596
  /**
129300
130597
  * @minLength `1`
129301
130598
  * @maxLength `512`
@@ -129303,6 +130600,45 @@ export type QuickSightDashboardGeospatialMapVisual = {
129303
130600
  */
129304
130601
  VisualId: string;
129305
130602
  };
130603
+ /**
130604
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialNullDataSettings`.
130605
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialnulldatasettings.html}
130606
+ */
130607
+ export type QuickSightDashboardGeospatialNullDataSettings = {
130608
+ SymbolStyle: QuickSightDashboardGeospatialNullSymbolStyle;
130609
+ };
130610
+ /**
130611
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialNullSymbolStyle`.
130612
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialnullsymbolstyle.html}
130613
+ */
130614
+ export type QuickSightDashboardGeospatialNullSymbolStyle = {
130615
+ /**
130616
+ * @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
130617
+ */
130618
+ FillColor?: string;
130619
+ /**
130620
+ * @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
130621
+ */
130622
+ StrokeColor?: string;
130623
+ /**
130624
+ * @min `0`
130625
+ */
130626
+ StrokeWidth?: number;
130627
+ };
130628
+ /**
130629
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialPointLayer`.
130630
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialpointlayer.html}
130631
+ */
130632
+ export type QuickSightDashboardGeospatialPointLayer = {
130633
+ Style: QuickSightDashboardGeospatialPointStyle;
130634
+ };
130635
+ /**
130636
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialPointStyle`.
130637
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialpointstyle.html}
130638
+ */
130639
+ export type QuickSightDashboardGeospatialPointStyle = {
130640
+ CircleSymbolStyle?: QuickSightDashboardGeospatialCircleSymbolStyle;
130641
+ };
129306
130642
  /**
129307
130643
  * Type definition for `AWS::QuickSight::Dashboard.GeospatialPointStyleOptions`.
129308
130644
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialpointstyleoptions.html}
@@ -129312,11 +130648,61 @@ export type QuickSightDashboardGeospatialPointStyleOptions = {
129312
130648
  HeatmapConfiguration?: QuickSightDashboardGeospatialHeatmapConfiguration;
129313
130649
  SelectedPointStyle?: QuickSightDashboardGeospatialSelectedPointStyle;
129314
130650
  };
130651
+ /**
130652
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialPolygonLayer`.
130653
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialpolygonlayer.html}
130654
+ */
130655
+ export type QuickSightDashboardGeospatialPolygonLayer = {
130656
+ Style: QuickSightDashboardGeospatialPolygonStyle;
130657
+ };
130658
+ /**
130659
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialPolygonStyle`.
130660
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialpolygonstyle.html}
130661
+ */
130662
+ export type QuickSightDashboardGeospatialPolygonStyle = {
130663
+ PolygonSymbolStyle?: QuickSightDashboardGeospatialPolygonSymbolStyle;
130664
+ };
130665
+ /**
130666
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialPolygonSymbolStyle`.
130667
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialpolygonsymbolstyle.html}
130668
+ */
130669
+ export type QuickSightDashboardGeospatialPolygonSymbolStyle = {
130670
+ FillColor?: QuickSightDashboardGeospatialColor;
130671
+ StrokeColor?: QuickSightDashboardGeospatialColor;
130672
+ StrokeWidth?: QuickSightDashboardGeospatialLineWidth;
130673
+ };
129315
130674
  /**
129316
130675
  * Type definition for `AWS::QuickSight::Dashboard.GeospatialSelectedPointStyle`.
129317
130676
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialselectedpointstyle.html}
129318
130677
  */
129319
130678
  export type QuickSightDashboardGeospatialSelectedPointStyle = "POINT" | "CLUSTER" | "HEATMAP";
130679
+ /**
130680
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialSolidColor`.
130681
+ * Describes the properties for a solid color
130682
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialsolidcolor.html}
130683
+ */
130684
+ export type QuickSightDashboardGeospatialSolidColor = {
130685
+ /**
130686
+ * @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
130687
+ */
130688
+ Color: string;
130689
+ /**
130690
+ * Defines view state of the color
130691
+ */
130692
+ State?: QuickSightDashboardGeospatialColorState;
130693
+ };
130694
+ /**
130695
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialStaticFileSource`.
130696
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialstaticfilesource.html}
130697
+ */
130698
+ export type QuickSightDashboardGeospatialStaticFileSource = {
130699
+ /**
130700
+ * @minLength `1`
130701
+ * @maxLength `512`
130702
+ * @pattern `^[\w\-]+$`
130703
+ */
130704
+ StaticFileId: string;
130705
+ };
129320
130706
  /**
129321
130707
  * Type definition for `AWS::QuickSight::Dashboard.GeospatialWindowOptions`.
129322
130708
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialwindowoptions.html}
@@ -129531,6 +130917,11 @@ export type QuickSightDashboardHeatMapVisual = {
129531
130917
  ColumnHierarchies?: QuickSightDashboardColumnHierarchy[];
129532
130918
  Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
129533
130919
  Title?: QuickSightDashboardVisualTitleLabelOptions;
130920
+ /**
130921
+ * @minLength `1`
130922
+ * @maxLength `1024`
130923
+ */
130924
+ VisualContentAltText?: string;
129534
130925
  /**
129535
130926
  * @minLength `1`
129536
130927
  * @maxLength `512`
@@ -129598,6 +130989,11 @@ export type QuickSightDashboardHistogramVisual = {
129598
130989
  ChartConfiguration?: QuickSightDashboardHistogramConfiguration;
129599
130990
  Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
129600
130991
  Title?: QuickSightDashboardVisualTitleLabelOptions;
130992
+ /**
130993
+ * @minLength `1`
130994
+ * @maxLength `1024`
130995
+ */
130996
+ VisualContentAltText?: string;
129601
130997
  /**
129602
130998
  * @minLength `1`
129603
130999
  * @maxLength `512`
@@ -129615,6 +131011,71 @@ export type QuickSightDashboardHorizontalTextAlignment = "LEFT" | "CENTER" | "RI
129615
131011
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-icon.html}
129616
131012
  */
129617
131013
  export type QuickSightDashboardIcon = "CARET_UP" | "CARET_DOWN" | "PLUS" | "MINUS" | "ARROW_UP" | "ARROW_DOWN" | "ARROW_LEFT" | "ARROW_UP_LEFT" | "ARROW_DOWN_LEFT" | "ARROW_RIGHT" | "ARROW_UP_RIGHT" | "ARROW_DOWN_RIGHT" | "FACE_UP" | "FACE_DOWN" | "FACE_FLAT" | "ONE_BAR" | "TWO_BAR" | "THREE_BAR" | "CIRCLE" | "TRIANGLE" | "SQUARE" | "FLAG" | "THUMBS_UP" | "THUMBS_DOWN" | "CHECKMARK" | "X";
131014
+ /**
131015
+ * Type definition for `AWS::QuickSight::Dashboard.ImageCustomAction`.
131016
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-imagecustomaction.html}
131017
+ */
131018
+ export type QuickSightDashboardImageCustomAction = {
131019
+ /**
131020
+ * @minLength `1`
131021
+ * @maxLength `2`
131022
+ */
131023
+ ActionOperations: QuickSightDashboardImageCustomActionOperation[];
131024
+ /**
131025
+ * @minLength `1`
131026
+ * @maxLength `512`
131027
+ * @pattern `^[\w\-]+$`
131028
+ */
131029
+ CustomActionId: string;
131030
+ /**
131031
+ * @minLength `1`
131032
+ * @maxLength `256`
131033
+ */
131034
+ Name: string;
131035
+ Status?: QuickSightDashboardWidgetStatus;
131036
+ Trigger: QuickSightDashboardImageCustomActionTrigger;
131037
+ };
131038
+ /**
131039
+ * Type definition for `AWS::QuickSight::Dashboard.ImageCustomActionOperation`.
131040
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-imagecustomactionoperation.html}
131041
+ */
131042
+ export type QuickSightDashboardImageCustomActionOperation = {
131043
+ NavigationOperation?: QuickSightDashboardCustomActionNavigationOperation;
131044
+ SetParametersOperation?: QuickSightDashboardCustomActionSetParametersOperation;
131045
+ URLOperation?: QuickSightDashboardCustomActionURLOperation;
131046
+ };
131047
+ /**
131048
+ * Type definition for `AWS::QuickSight::Dashboard.ImageCustomActionTrigger`.
131049
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-imagecustomactiontrigger.html}
131050
+ */
131051
+ export type QuickSightDashboardImageCustomActionTrigger = "CLICK" | "MENU";
131052
+ /**
131053
+ * Type definition for `AWS::QuickSight::Dashboard.ImageInteractionOptions`.
131054
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-imageinteractionoptions.html}
131055
+ */
131056
+ export type QuickSightDashboardImageInteractionOptions = {
131057
+ ImageMenuOption?: QuickSightDashboardImageMenuOption;
131058
+ };
131059
+ /**
131060
+ * Type definition for `AWS::QuickSight::Dashboard.ImageMenuOption`.
131061
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-imagemenuoption.html}
131062
+ */
131063
+ export type QuickSightDashboardImageMenuOption = {
131064
+ AvailabilityStatus?: QuickSightDashboardDashboardBehavior;
131065
+ };
131066
+ /**
131067
+ * Type definition for `AWS::QuickSight::Dashboard.ImageStaticFile`.
131068
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-imagestaticfile.html}
131069
+ */
131070
+ export type QuickSightDashboardImageStaticFile = {
131071
+ Source?: QuickSightDashboardStaticFileSource;
131072
+ /**
131073
+ * @minLength `1`
131074
+ * @maxLength `512`
131075
+ * @pattern `^[\w\-]+$`
131076
+ */
131077
+ StaticFileId: string;
131078
+ };
129618
131079
  /**
129619
131080
  * Type definition for `AWS::QuickSight::Dashboard.InnerFilter`.
129620
131081
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-innerfilter.html}
@@ -129652,6 +131113,11 @@ export type QuickSightDashboardInsightVisual = {
129652
131113
  InsightConfiguration?: QuickSightDashboardInsightConfiguration;
129653
131114
  Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
129654
131115
  Title?: QuickSightDashboardVisualTitleLabelOptions;
131116
+ /**
131117
+ * @minLength `1`
131118
+ * @maxLength `1024`
131119
+ */
131120
+ VisualContentAltText?: string;
129655
131121
  /**
129656
131122
  * @minLength `1`
129657
131123
  * @maxLength `512`
@@ -129868,6 +131334,11 @@ export type QuickSightDashboardKPIVisual = {
129868
131334
  ConditionalFormatting?: QuickSightDashboardKPIConditionalFormatting;
129869
131335
  Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
129870
131336
  Title?: QuickSightDashboardVisualTitleLabelOptions;
131337
+ /**
131338
+ * @minLength `1`
131339
+ * @maxLength `1024`
131340
+ */
131341
+ VisualContentAltText?: string;
129871
131342
  /**
129872
131343
  * @minLength `1`
129873
131344
  * @maxLength `512`
@@ -129903,6 +131374,70 @@ export type QuickSightDashboardLabelOptions = {
129903
131374
  FontConfiguration?: QuickSightDashboardFontConfiguration;
129904
131375
  Visibility?: QuickSightDashboardVisibility;
129905
131376
  };
131377
+ /**
131378
+ * Type definition for `AWS::QuickSight::Dashboard.LayerCustomAction`.
131379
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-layercustomaction.html}
131380
+ */
131381
+ export type QuickSightDashboardLayerCustomAction = {
131382
+ /**
131383
+ * @minLength `1`
131384
+ * @maxLength `2`
131385
+ */
131386
+ ActionOperations: QuickSightDashboardLayerCustomActionOperation[];
131387
+ /**
131388
+ * @minLength `1`
131389
+ * @maxLength `512`
131390
+ * @pattern `^[\w\-]+$`
131391
+ */
131392
+ CustomActionId: string;
131393
+ /**
131394
+ * @minLength `1`
131395
+ * @maxLength `256`
131396
+ */
131397
+ Name: string;
131398
+ Status?: QuickSightDashboardWidgetStatus;
131399
+ Trigger: QuickSightDashboardLayerCustomActionTrigger;
131400
+ };
131401
+ /**
131402
+ * Type definition for `AWS::QuickSight::Dashboard.LayerCustomActionOperation`.
131403
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-layercustomactionoperation.html}
131404
+ */
131405
+ export type QuickSightDashboardLayerCustomActionOperation = {
131406
+ FilterOperation?: QuickSightDashboardCustomActionFilterOperation;
131407
+ NavigationOperation?: QuickSightDashboardCustomActionNavigationOperation;
131408
+ SetParametersOperation?: QuickSightDashboardCustomActionSetParametersOperation;
131409
+ URLOperation?: QuickSightDashboardCustomActionURLOperation;
131410
+ };
131411
+ /**
131412
+ * Type definition for `AWS::QuickSight::Dashboard.LayerCustomActionTrigger`.
131413
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-layercustomactiontrigger.html}
131414
+ */
131415
+ export type QuickSightDashboardLayerCustomActionTrigger = "DATA_POINT_CLICK" | "DATA_POINT_MENU";
131416
+ /**
131417
+ * Type definition for `AWS::QuickSight::Dashboard.LayerMapVisual`.
131418
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-layermapvisual.html}
131419
+ */
131420
+ export type QuickSightDashboardLayerMapVisual = {
131421
+ ChartConfiguration?: QuickSightDashboardGeospatialLayerMapConfiguration;
131422
+ /**
131423
+ * @minLength `1`
131424
+ * @maxLength `2048`
131425
+ */
131426
+ DataSetIdentifier: string;
131427
+ Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
131428
+ Title?: QuickSightDashboardVisualTitleLabelOptions;
131429
+ /**
131430
+ * @minLength `1`
131431
+ * @maxLength `1024`
131432
+ */
131433
+ VisualContentAltText?: string;
131434
+ /**
131435
+ * @minLength `1`
131436
+ * @maxLength `512`
131437
+ * @pattern `^[\w\-]+$`
131438
+ */
131439
+ VisualId: string;
131440
+ };
129906
131441
  /**
129907
131442
  * Type definition for `AWS::QuickSight::Dashboard.Layout`.
129908
131443
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-layout.html}
@@ -129935,6 +131470,7 @@ export type QuickSightDashboardLegendOptions = {
129935
131470
  Height?: string;
129936
131471
  Position?: QuickSightDashboardLegendPosition;
129937
131472
  Title?: QuickSightDashboardLabelOptions;
131473
+ ValueFontConfiguration?: QuickSightDashboardFontConfiguration;
129938
131474
  Visibility?: QuickSightDashboardVisibility;
129939
131475
  /**
129940
131476
  * String based length that is composed of value and unit in px
@@ -130119,6 +131655,11 @@ export type QuickSightDashboardLineChartVisual = {
130119
131655
  ColumnHierarchies?: QuickSightDashboardColumnHierarchy[];
130120
131656
  Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
130121
131657
  Title?: QuickSightDashboardVisualTitleLabelOptions;
131658
+ /**
131659
+ * @minLength `1`
131660
+ * @maxLength `1024`
131661
+ */
131662
+ VisualContentAltText?: string;
130122
131663
  /**
130123
131664
  * @minLength `1`
130124
131665
  * @maxLength `512`
@@ -130985,6 +132526,11 @@ export type QuickSightDashboardPieChartVisual = {
130985
132526
  ColumnHierarchies?: QuickSightDashboardColumnHierarchy[];
130986
132527
  Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
130987
132528
  Title?: QuickSightDashboardVisualTitleLabelOptions;
132529
+ /**
132530
+ * @minLength `1`
132531
+ * @maxLength `1024`
132532
+ */
132533
+ VisualContentAltText?: string;
130988
132534
  /**
130989
132535
  * @minLength `1`
130990
132536
  * @maxLength `512`
@@ -131283,6 +132829,11 @@ export type QuickSightDashboardPivotTableVisual = {
131283
132829
  ConditionalFormatting?: QuickSightDashboardPivotTableConditionalFormatting;
131284
132830
  Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
131285
132831
  Title?: QuickSightDashboardVisualTitleLabelOptions;
132832
+ /**
132833
+ * @minLength `1`
132834
+ * @maxLength `1024`
132835
+ */
132836
+ VisualContentAltText?: string;
131286
132837
  /**
131287
132838
  * @minLength `1`
131288
132839
  * @maxLength `512`
@@ -131308,6 +132859,108 @@ export type QuickSightDashboardPivotTotalOptions = {
131308
132859
  TotalsVisibility?: QuickSightDashboardVisibility;
131309
132860
  ValueCellStyle?: QuickSightDashboardTableCellStyle;
131310
132861
  };
132862
+ /**
132863
+ * Type definition for `AWS::QuickSight::Dashboard.PluginVisual`.
132864
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-pluginvisual.html}
132865
+ */
132866
+ export type QuickSightDashboardPluginVisual = {
132867
+ ChartConfiguration?: QuickSightDashboardPluginVisualConfiguration;
132868
+ PluginArn: string;
132869
+ Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
132870
+ Title?: QuickSightDashboardVisualTitleLabelOptions;
132871
+ /**
132872
+ * @minLength `1`
132873
+ * @maxLength `1024`
132874
+ */
132875
+ VisualContentAltText?: string;
132876
+ /**
132877
+ * @minLength `1`
132878
+ * @maxLength `512`
132879
+ * @pattern `^[\w\-]+$`
132880
+ */
132881
+ VisualId: string;
132882
+ };
132883
+ /**
132884
+ * Type definition for `AWS::QuickSight::Dashboard.PluginVisualAxisName`.
132885
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-pluginvisualaxisname.html}
132886
+ */
132887
+ export type QuickSightDashboardPluginVisualAxisName = "GROUP_BY" | "VALUE";
132888
+ /**
132889
+ * Type definition for `AWS::QuickSight::Dashboard.PluginVisualConfiguration`.
132890
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-pluginvisualconfiguration.html}
132891
+ */
132892
+ export type QuickSightDashboardPluginVisualConfiguration = {
132893
+ /**
132894
+ * @minLength `0`
132895
+ * @maxLength `10`
132896
+ */
132897
+ FieldWells?: QuickSightDashboardPluginVisualFieldWell[];
132898
+ SortConfiguration?: QuickSightDashboardPluginVisualSortConfiguration;
132899
+ VisualOptions?: QuickSightDashboardPluginVisualOptions;
132900
+ };
132901
+ /**
132902
+ * Type definition for `AWS::QuickSight::Dashboard.PluginVisualFieldWell`.
132903
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-pluginvisualfieldwell.html}
132904
+ */
132905
+ export type QuickSightDashboardPluginVisualFieldWell = {
132906
+ AxisName?: QuickSightDashboardPluginVisualAxisName;
132907
+ /**
132908
+ * @minLength `0`
132909
+ * @maxLength `200`
132910
+ */
132911
+ Dimensions?: QuickSightDashboardDimensionField[];
132912
+ /**
132913
+ * @minLength `0`
132914
+ * @maxLength `200`
132915
+ */
132916
+ Measures?: QuickSightDashboardMeasureField[];
132917
+ /**
132918
+ * @minLength `0`
132919
+ * @maxLength `200`
132920
+ */
132921
+ Unaggregated?: QuickSightDashboardUnaggregatedField[];
132922
+ };
132923
+ /**
132924
+ * Type definition for `AWS::QuickSight::Dashboard.PluginVisualItemsLimitConfiguration`.
132925
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-pluginvisualitemslimitconfiguration.html}
132926
+ */
132927
+ export type QuickSightDashboardPluginVisualItemsLimitConfiguration = {
132928
+ ItemsLimit?: number;
132929
+ };
132930
+ /**
132931
+ * Type definition for `AWS::QuickSight::Dashboard.PluginVisualOptions`.
132932
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-pluginvisualoptions.html}
132933
+ */
132934
+ export type QuickSightDashboardPluginVisualOptions = {
132935
+ VisualProperties?: QuickSightDashboardPluginVisualProperty[];
132936
+ };
132937
+ /**
132938
+ * Type definition for `AWS::QuickSight::Dashboard.PluginVisualProperty`.
132939
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-pluginvisualproperty.html}
132940
+ */
132941
+ export type QuickSightDashboardPluginVisualProperty = {
132942
+ Name?: string;
132943
+ Value?: string;
132944
+ };
132945
+ /**
132946
+ * Type definition for `AWS::QuickSight::Dashboard.PluginVisualSortConfiguration`.
132947
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-pluginvisualsortconfiguration.html}
132948
+ */
132949
+ export type QuickSightDashboardPluginVisualSortConfiguration = {
132950
+ PluginVisualTableQuerySort?: QuickSightDashboardPluginVisualTableQuerySort;
132951
+ };
132952
+ /**
132953
+ * Type definition for `AWS::QuickSight::Dashboard.PluginVisualTableQuerySort`.
132954
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-pluginvisualtablequerysort.html}
132955
+ */
132956
+ export type QuickSightDashboardPluginVisualTableQuerySort = {
132957
+ ItemsLimitConfiguration?: QuickSightDashboardPluginVisualItemsLimitConfiguration;
132958
+ /**
132959
+ * @minLength `0`
132960
+ * @maxLength `100`
132961
+ */
132962
+ RowSort?: QuickSightDashboardFieldSortOptions[];
132963
+ };
131311
132964
  /**
131312
132965
  * Type definition for `AWS::QuickSight::Dashboard.PredefinedHierarchy`.
131313
132966
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-predefinedhierarchy.html}
@@ -131460,6 +133113,11 @@ export type QuickSightDashboardRadarChartVisual = {
131460
133113
  ColumnHierarchies?: QuickSightDashboardColumnHierarchy[];
131461
133114
  Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
131462
133115
  Title?: QuickSightDashboardVisualTitleLabelOptions;
133116
+ /**
133117
+ * @minLength `1`
133118
+ * @maxLength `1024`
133119
+ */
133120
+ VisualContentAltText?: string;
131463
133121
  /**
131464
133122
  * @minLength `1`
131465
133123
  * @maxLength `512`
@@ -131776,6 +133434,11 @@ export type QuickSightDashboardSankeyDiagramVisual = {
131776
133434
  ChartConfiguration?: QuickSightDashboardSankeyDiagramChartConfiguration;
131777
133435
  Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
131778
133436
  Title?: QuickSightDashboardVisualTitleLabelOptions;
133437
+ /**
133438
+ * @minLength `1`
133439
+ * @maxLength `1024`
133440
+ */
133441
+ VisualContentAltText?: string;
131779
133442
  /**
131780
133443
  * @minLength `1`
131781
133444
  * @maxLength `512`
@@ -131886,6 +133549,11 @@ export type QuickSightDashboardScatterPlotVisual = {
131886
133549
  ColumnHierarchies?: QuickSightDashboardColumnHierarchy[];
131887
133550
  Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
131888
133551
  Title?: QuickSightDashboardVisualTitleLabelOptions;
133552
+ /**
133553
+ * @minLength `1`
133554
+ * @maxLength `1024`
133555
+ */
133556
+ VisualContentAltText?: string;
131889
133557
  /**
131890
133558
  * @minLength `1`
131891
133559
  * @maxLength `512`
@@ -132047,6 +133715,11 @@ export type QuickSightDashboardShapeConditionalFormat = {
132047
133715
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-sheet.html}
132048
133716
  */
132049
133717
  export type QuickSightDashboardSheet = {
133718
+ /**
133719
+ * @minLength `0`
133720
+ * @maxLength `10`
133721
+ */
133722
+ Images?: QuickSightDashboardSheetImage[];
132050
133723
  /**
132051
133724
  * <p>The name of a sheet. This name is displayed on the sheet's tab in the Amazon QuickSight
132052
133725
  console.</p>
@@ -132132,6 +133805,11 @@ export type QuickSightDashboardSheetDefinition = {
132132
133805
  * @maxLength `200`
132133
133806
  */
132134
133807
  FilterControls?: QuickSightDashboardFilterControl[];
133808
+ /**
133809
+ * @minLength `0`
133810
+ * @maxLength `10`
133811
+ */
133812
+ Images?: QuickSightDashboardSheetImage[];
132135
133813
  /**
132136
133814
  * @minLength `1`
132137
133815
  * @maxLength `1`
@@ -132193,6 +133871,82 @@ export type QuickSightDashboardSheetElementRenderingRule = {
132193
133871
  */
132194
133872
  Expression: string;
132195
133873
  };
133874
+ /**
133875
+ * Type definition for `AWS::QuickSight::Dashboard.SheetImage`.
133876
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-sheetimage.html}
133877
+ */
133878
+ export type QuickSightDashboardSheetImage = {
133879
+ /**
133880
+ * @minLength `0`
133881
+ * @maxLength `10`
133882
+ */
133883
+ Actions?: QuickSightDashboardImageCustomAction[];
133884
+ /**
133885
+ * @minLength `1`
133886
+ * @maxLength `1024`
133887
+ */
133888
+ ImageContentAltText?: string;
133889
+ Interactions?: QuickSightDashboardImageInteractionOptions;
133890
+ Scaling?: QuickSightDashboardSheetImageScalingConfiguration;
133891
+ /**
133892
+ * @minLength `1`
133893
+ * @maxLength `512`
133894
+ * @pattern `^[\w\-]+$`
133895
+ */
133896
+ SheetImageId: string;
133897
+ Source: QuickSightDashboardSheetImageSource;
133898
+ Tooltip?: QuickSightDashboardSheetImageTooltipConfiguration;
133899
+ };
133900
+ /**
133901
+ * Type definition for `AWS::QuickSight::Dashboard.SheetImageScalingConfiguration`.
133902
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-sheetimagescalingconfiguration.html}
133903
+ */
133904
+ export type QuickSightDashboardSheetImageScalingConfiguration = {
133905
+ ScalingType?: QuickSightDashboardSheetImageScalingType;
133906
+ };
133907
+ /**
133908
+ * Type definition for `AWS::QuickSight::Dashboard.SheetImageScalingType`.
133909
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-sheetimagescalingtype.html}
133910
+ */
133911
+ export type QuickSightDashboardSheetImageScalingType = "SCALE_TO_WIDTH" | "SCALE_TO_HEIGHT" | "SCALE_TO_CONTAINER" | "SCALE_NONE";
133912
+ /**
133913
+ * Type definition for `AWS::QuickSight::Dashboard.SheetImageSource`.
133914
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-sheetimagesource.html}
133915
+ */
133916
+ export type QuickSightDashboardSheetImageSource = {
133917
+ SheetImageStaticFileSource?: QuickSightDashboardSheetImageStaticFileSource;
133918
+ };
133919
+ /**
133920
+ * Type definition for `AWS::QuickSight::Dashboard.SheetImageStaticFileSource`.
133921
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-sheetimagestaticfilesource.html}
133922
+ */
133923
+ export type QuickSightDashboardSheetImageStaticFileSource = {
133924
+ /**
133925
+ * @minLength `1`
133926
+ * @maxLength `512`
133927
+ * @pattern `^[\w\-]+$`
133928
+ */
133929
+ StaticFileId: string;
133930
+ };
133931
+ /**
133932
+ * Type definition for `AWS::QuickSight::Dashboard.SheetImageTooltipConfiguration`.
133933
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-sheetimagetooltipconfiguration.html}
133934
+ */
133935
+ export type QuickSightDashboardSheetImageTooltipConfiguration = {
133936
+ TooltipText?: QuickSightDashboardSheetImageTooltipText;
133937
+ Visibility?: QuickSightDashboardVisibility;
133938
+ };
133939
+ /**
133940
+ * Type definition for `AWS::QuickSight::Dashboard.SheetImageTooltipText`.
133941
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-sheetimagetooltiptext.html}
133942
+ */
133943
+ export type QuickSightDashboardSheetImageTooltipText = {
133944
+ /**
133945
+ * @minLength `1`
133946
+ * @maxLength `1024`
133947
+ */
133948
+ PlainText?: string;
133949
+ };
132196
133950
  /**
132197
133951
  * Type definition for `AWS::QuickSight::Dashboard.SheetLayoutElementMaximizationOption`.
132198
133952
  * <p>The sheet layout maximization options of a dashbaord.</p>
@@ -132361,11 +134115,56 @@ export type QuickSightDashboardSpacing = {
132361
134115
  */
132362
134116
  Top?: string;
132363
134117
  };
134118
+ /**
134119
+ * Type definition for `AWS::QuickSight::Dashboard.SpatialStaticFile`.
134120
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-spatialstaticfile.html}
134121
+ */
134122
+ export type QuickSightDashboardSpatialStaticFile = {
134123
+ Source?: QuickSightDashboardStaticFileSource;
134124
+ /**
134125
+ * @minLength `1`
134126
+ * @maxLength `512`
134127
+ * @pattern `^[\w\-]+$`
134128
+ */
134129
+ StaticFileId: string;
134130
+ };
132364
134131
  /**
132365
134132
  * Type definition for `AWS::QuickSight::Dashboard.SpecialValue`.
132366
134133
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-specialvalue.html}
132367
134134
  */
132368
134135
  export type QuickSightDashboardSpecialValue = "EMPTY" | "NULL" | "OTHER";
134136
+ /**
134137
+ * Type definition for `AWS::QuickSight::Dashboard.StaticFile`.
134138
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-staticfile.html}
134139
+ */
134140
+ export type QuickSightDashboardStaticFile = {
134141
+ ImageStaticFile?: QuickSightDashboardImageStaticFile;
134142
+ SpatialStaticFile?: QuickSightDashboardSpatialStaticFile;
134143
+ };
134144
+ /**
134145
+ * Type definition for `AWS::QuickSight::Dashboard.StaticFileS3SourceOptions`.
134146
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-staticfiles3sourceoptions.html}
134147
+ */
134148
+ export type QuickSightDashboardStaticFileS3SourceOptions = {
134149
+ BucketName: string;
134150
+ ObjectKey: string;
134151
+ Region: string;
134152
+ };
134153
+ /**
134154
+ * Type definition for `AWS::QuickSight::Dashboard.StaticFileSource`.
134155
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-staticfilesource.html}
134156
+ */
134157
+ export type QuickSightDashboardStaticFileSource = {
134158
+ S3Options?: QuickSightDashboardStaticFileS3SourceOptions;
134159
+ UrlOptions?: QuickSightDashboardStaticFileUrlSourceOptions;
134160
+ };
134161
+ /**
134162
+ * Type definition for `AWS::QuickSight::Dashboard.StaticFileUrlSourceOptions`.
134163
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-staticfileurlsourceoptions.html}
134164
+ */
134165
+ export type QuickSightDashboardStaticFileUrlSourceOptions = {
134166
+ Url: string;
134167
+ };
132369
134168
  /**
132370
134169
  * Type definition for `AWS::QuickSight::Dashboard.StringDefaultValues`.
132371
134170
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-stringdefaultvalues.html}
@@ -132788,6 +134587,11 @@ export type QuickSightDashboardTableVisual = {
132788
134587
  ConditionalFormatting?: QuickSightDashboardTableConditionalFormatting;
132789
134588
  Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
132790
134589
  Title?: QuickSightDashboardVisualTitleLabelOptions;
134590
+ /**
134591
+ * @minLength `1`
134592
+ * @maxLength `1024`
134593
+ */
134594
+ VisualContentAltText?: string;
132791
134595
  /**
132792
134596
  * @minLength `1`
132793
134597
  * @maxLength `512`
@@ -133198,6 +135002,11 @@ export type QuickSightDashboardTreeMapVisual = {
133198
135002
  ColumnHierarchies?: QuickSightDashboardColumnHierarchy[];
133199
135003
  Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
133200
135004
  Title?: QuickSightDashboardVisualTitleLabelOptions;
135005
+ /**
135006
+ * @minLength `1`
135007
+ * @maxLength `1024`
135008
+ */
135009
+ VisualContentAltText?: string;
133201
135010
  /**
133202
135011
  * @minLength `1`
133203
135012
  * @maxLength `512`
@@ -133297,9 +135106,11 @@ export type QuickSightDashboardVisual = {
133297
135106
  HistogramVisual?: QuickSightDashboardHistogramVisual;
133298
135107
  InsightVisual?: QuickSightDashboardInsightVisual;
133299
135108
  KPIVisual?: QuickSightDashboardKPIVisual;
135109
+ LayerMapVisual?: QuickSightDashboardLayerMapVisual;
133300
135110
  LineChartVisual?: QuickSightDashboardLineChartVisual;
133301
135111
  PieChartVisual?: QuickSightDashboardPieChartVisual;
133302
135112
  PivotTableVisual?: QuickSightDashboardPivotTableVisual;
135113
+ PluginVisual?: QuickSightDashboardPluginVisual;
133303
135114
  RadarChartVisual?: QuickSightDashboardRadarChartVisual;
133304
135115
  SankeyDiagramVisual?: QuickSightDashboardSankeyDiagramVisual;
133305
135116
  ScatterPlotVisual?: QuickSightDashboardScatterPlotVisual;
@@ -133499,6 +135310,11 @@ export type QuickSightDashboardWaterfallVisual = {
133499
135310
  ColumnHierarchies?: QuickSightDashboardColumnHierarchy[];
133500
135311
  Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
133501
135312
  Title?: QuickSightDashboardVisualTitleLabelOptions;
135313
+ /**
135314
+ * @minLength `1`
135315
+ * @maxLength `1024`
135316
+ */
135317
+ VisualContentAltText?: string;
133502
135318
  /**
133503
135319
  * @minLength `1`
133504
135320
  * @maxLength `512`
@@ -133612,6 +135428,11 @@ export type QuickSightDashboardWordCloudVisual = {
133612
135428
  ColumnHierarchies?: QuickSightDashboardColumnHierarchy[];
133613
135429
  Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
133614
135430
  Title?: QuickSightDashboardVisualTitleLabelOptions;
135431
+ /**
135432
+ * @minLength `1`
135433
+ * @maxLength `1024`
135434
+ */
135435
+ VisualContentAltText?: string;
133615
135436
  /**
133616
135437
  * @minLength `1`
133617
135438
  * @maxLength `512`
@@ -136163,6 +137984,154 @@ export type QuickSightTemplateAttributes = {
136163
137984
  * @maxLength `20`
136164
137985
  */
136165
137986
  Sheets: {
137987
+ /**
137988
+ * @minLength `0`
137989
+ * @maxLength `10`
137990
+ */
137991
+ Images: {
137992
+ /**
137993
+ * @minLength `0`
137994
+ * @maxLength `10`
137995
+ */
137996
+ Actions: {
137997
+ /**
137998
+ * @minLength `1`
137999
+ * @maxLength `2`
138000
+ */
138001
+ ActionOperations: {
138002
+ NavigationOperation: {
138003
+ LocalNavigationConfiguration: {
138004
+ /**
138005
+ * @minLength `1`
138006
+ * @maxLength `512`
138007
+ * @pattern `^[\w\-]+$`
138008
+ */
138009
+ TargetSheetId: string;
138010
+ };
138011
+ };
138012
+ SetParametersOperation: {
138013
+ /**
138014
+ * @minLength `1`
138015
+ * @maxLength `200`
138016
+ */
138017
+ ParameterValueConfigurations: {
138018
+ /**
138019
+ * @minLength `1`
138020
+ * @maxLength `2048`
138021
+ * @pattern `^[a-zA-Z0-9]+$`
138022
+ */
138023
+ DestinationParameterName: string;
138024
+ Value: {
138025
+ CustomValuesConfiguration: {
138026
+ CustomValues: {
138027
+ /**
138028
+ * @minLength `0`
138029
+ * @maxLength `50000`
138030
+ */
138031
+ DateTimeValues: string[];
138032
+ /**
138033
+ * @minLength `0`
138034
+ * @maxLength `50000`
138035
+ */
138036
+ DecimalValues: number[];
138037
+ /**
138038
+ * @minLength `0`
138039
+ * @maxLength `50000`
138040
+ */
138041
+ IntegerValues: number[];
138042
+ /**
138043
+ * @minLength `0`
138044
+ * @maxLength `50000`
138045
+ */
138046
+ StringValues: string[];
138047
+ };
138048
+ IncludeNullValue: boolean;
138049
+ };
138050
+ SelectAllValueOptions: QuickSightTemplateSelectAllValueOptions;
138051
+ SourceColumn: {
138052
+ /**
138053
+ * @minLength `1`
138054
+ * @maxLength `127`
138055
+ */
138056
+ ColumnName: string;
138057
+ /**
138058
+ * @minLength `1`
138059
+ * @maxLength `2048`
138060
+ */
138061
+ DataSetIdentifier: string;
138062
+ };
138063
+ /**
138064
+ * @minLength `1`
138065
+ * @maxLength `512`
138066
+ */
138067
+ SourceField: string;
138068
+ SourceParameterName: string;
138069
+ };
138070
+ }[];
138071
+ };
138072
+ URLOperation: {
138073
+ URLTarget: QuickSightTemplateURLTargetConfiguration;
138074
+ /**
138075
+ * @minLength `1`
138076
+ * @maxLength `2048`
138077
+ */
138078
+ URLTemplate: string;
138079
+ };
138080
+ }[];
138081
+ /**
138082
+ * @minLength `1`
138083
+ * @maxLength `512`
138084
+ * @pattern `^[\w\-]+$`
138085
+ */
138086
+ CustomActionId: string;
138087
+ /**
138088
+ * @minLength `1`
138089
+ * @maxLength `256`
138090
+ */
138091
+ Name: string;
138092
+ Status: QuickSightTemplateWidgetStatus;
138093
+ Trigger: QuickSightTemplateImageCustomActionTrigger;
138094
+ }[];
138095
+ /**
138096
+ * @minLength `1`
138097
+ * @maxLength `1024`
138098
+ */
138099
+ ImageContentAltText: string;
138100
+ Interactions: {
138101
+ ImageMenuOption: {
138102
+ AvailabilityStatus: unknown;
138103
+ };
138104
+ };
138105
+ Scaling: {
138106
+ ScalingType: QuickSightTemplateSheetImageScalingType;
138107
+ };
138108
+ /**
138109
+ * @minLength `1`
138110
+ * @maxLength `512`
138111
+ * @pattern `^[\w\-]+$`
138112
+ */
138113
+ SheetImageId: string;
138114
+ Source: {
138115
+ SheetImageStaticFileSource: {
138116
+ /**
138117
+ * @minLength `1`
138118
+ * @maxLength `512`
138119
+ * @pattern `^[\w\-]+$`
138120
+ */
138121
+ StaticFileId: string;
138122
+ };
138123
+ };
138124
+ Tooltip: {
138125
+ TooltipText: {
138126
+ /**
138127
+ * @minLength `1`
138128
+ * @maxLength `1024`
138129
+ */
138130
+ PlainText: string;
138131
+ };
138132
+ Visibility: QuickSightTemplateVisibility;
138133
+ };
138134
+ }[];
136166
138135
  /**
136167
138136
  * <p>The name of a sheet. This name is displayed on the sheet's tab in the Amazon QuickSight
136168
138137
  console.</p>
@@ -136512,6 +138481,11 @@ export type QuickSightTemplateBarChartVisual = {
136512
138481
  ColumnHierarchies?: QuickSightTemplateColumnHierarchy[];
136513
138482
  Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
136514
138483
  Title?: QuickSightTemplateVisualTitleLabelOptions;
138484
+ /**
138485
+ * @minLength `1`
138486
+ * @maxLength `1024`
138487
+ */
138488
+ VisualContentAltText?: string;
136515
138489
  /**
136516
138490
  * @minLength `1`
136517
138491
  * @maxLength `512`
@@ -136671,6 +138645,11 @@ export type QuickSightTemplateBoxPlotVisual = {
136671
138645
  ColumnHierarchies?: QuickSightTemplateColumnHierarchy[];
136672
138646
  Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
136673
138647
  Title?: QuickSightTemplateVisualTitleLabelOptions;
138648
+ /**
138649
+ * @minLength `1`
138650
+ * @maxLength `1024`
138651
+ */
138652
+ VisualContentAltText?: string;
136674
138653
  /**
136675
138654
  * @minLength `1`
136676
138655
  * @maxLength `512`
@@ -137085,6 +139064,11 @@ export type QuickSightTemplateComboChartVisual = {
137085
139064
  ColumnHierarchies?: QuickSightTemplateColumnHierarchy[];
137086
139065
  Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
137087
139066
  Title?: QuickSightTemplateVisualTitleLabelOptions;
139067
+ /**
139068
+ * @minLength `1`
139069
+ * @maxLength `1024`
139070
+ */
139071
+ VisualContentAltText?: string;
137088
139072
  /**
137089
139073
  * @minLength `1`
137090
139074
  * @maxLength `512`
@@ -137375,6 +139359,11 @@ export type QuickSightTemplateCustomContentVisual = {
137375
139359
  DataSetIdentifier: string;
137376
139360
  Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
137377
139361
  Title?: QuickSightTemplateVisualTitleLabelOptions;
139362
+ /**
139363
+ * @minLength `1`
139364
+ * @maxLength `1024`
139365
+ */
139366
+ VisualContentAltText?: string;
137378
139367
  /**
137379
139368
  * @minLength `1`
137380
139369
  * @maxLength `512`
@@ -138284,6 +140273,11 @@ export type QuickSightTemplateFilledMapVisual = {
138284
140273
  ConditionalFormatting?: QuickSightTemplateFilledMapConditionalFormatting;
138285
140274
  Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
138286
140275
  Title?: QuickSightTemplateVisualTitleLabelOptions;
140276
+ /**
140277
+ * @minLength `1`
140278
+ * @maxLength `1024`
140279
+ */
140280
+ VisualContentAltText?: string;
138287
140281
  /**
138288
140282
  * @minLength `1`
138289
140283
  * @maxLength `512`
@@ -138912,6 +140906,11 @@ export type QuickSightTemplateFunnelChartVisual = {
138912
140906
  ColumnHierarchies?: QuickSightTemplateColumnHierarchy[];
138913
140907
  Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
138914
140908
  Title?: QuickSightTemplateVisualTitleLabelOptions;
140909
+ /**
140910
+ * @minLength `1`
140911
+ * @maxLength `1024`
140912
+ */
140913
+ VisualContentAltText?: string;
138915
140914
  /**
138916
140915
  * @minLength `1`
138917
140916
  * @maxLength `512`
@@ -139005,6 +141004,11 @@ export type QuickSightTemplateGaugeChartVisual = {
139005
141004
  ConditionalFormatting?: QuickSightTemplateGaugeChartConditionalFormatting;
139006
141005
  Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
139007
141006
  Title?: QuickSightTemplateVisualTitleLabelOptions;
141007
+ /**
141008
+ * @minLength `1`
141009
+ * @maxLength `1024`
141010
+ */
141011
+ VisualContentAltText?: string;
139008
141012
  /**
139009
141013
  * @minLength `1`
139010
141014
  * @maxLength `512`
@@ -139132,6 +141136,11 @@ export type QuickSightTemplateGeospatialMapVisual = {
139132
141136
  ColumnHierarchies?: QuickSightTemplateColumnHierarchy[];
139133
141137
  Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
139134
141138
  Title?: QuickSightTemplateVisualTitleLabelOptions;
141139
+ /**
141140
+ * @minLength `1`
141141
+ * @maxLength `1024`
141142
+ */
141143
+ VisualContentAltText?: string;
139135
141144
  /**
139136
141145
  * @minLength `1`
139137
141146
  * @maxLength `512`
@@ -139367,6 +141376,11 @@ export type QuickSightTemplateHeatMapVisual = {
139367
141376
  ColumnHierarchies?: QuickSightTemplateColumnHierarchy[];
139368
141377
  Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
139369
141378
  Title?: QuickSightTemplateVisualTitleLabelOptions;
141379
+ /**
141380
+ * @minLength `1`
141381
+ * @maxLength `1024`
141382
+ */
141383
+ VisualContentAltText?: string;
139370
141384
  /**
139371
141385
  * @minLength `1`
139372
141386
  * @maxLength `512`
@@ -139434,6 +141448,11 @@ export type QuickSightTemplateHistogramVisual = {
139434
141448
  ChartConfiguration?: QuickSightTemplateHistogramConfiguration;
139435
141449
  Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
139436
141450
  Title?: QuickSightTemplateVisualTitleLabelOptions;
141451
+ /**
141452
+ * @minLength `1`
141453
+ * @maxLength `1024`
141454
+ */
141455
+ VisualContentAltText?: string;
139437
141456
  /**
139438
141457
  * @minLength `1`
139439
141458
  * @maxLength `512`
@@ -139451,6 +141470,58 @@ export type QuickSightTemplateHorizontalTextAlignment = "LEFT" | "CENTER" | "RIG
139451
141470
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-icon.html}
139452
141471
  */
139453
141472
  export type QuickSightTemplateIcon = "CARET_UP" | "CARET_DOWN" | "PLUS" | "MINUS" | "ARROW_UP" | "ARROW_DOWN" | "ARROW_LEFT" | "ARROW_UP_LEFT" | "ARROW_DOWN_LEFT" | "ARROW_RIGHT" | "ARROW_UP_RIGHT" | "ARROW_DOWN_RIGHT" | "FACE_UP" | "FACE_DOWN" | "FACE_FLAT" | "ONE_BAR" | "TWO_BAR" | "THREE_BAR" | "CIRCLE" | "TRIANGLE" | "SQUARE" | "FLAG" | "THUMBS_UP" | "THUMBS_DOWN" | "CHECKMARK" | "X";
141473
+ /**
141474
+ * Type definition for `AWS::QuickSight::Template.ImageCustomAction`.
141475
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-imagecustomaction.html}
141476
+ */
141477
+ export type QuickSightTemplateImageCustomAction = {
141478
+ /**
141479
+ * @minLength `1`
141480
+ * @maxLength `2`
141481
+ */
141482
+ ActionOperations: QuickSightTemplateImageCustomActionOperation[];
141483
+ /**
141484
+ * @minLength `1`
141485
+ * @maxLength `512`
141486
+ * @pattern `^[\w\-]+$`
141487
+ */
141488
+ CustomActionId: string;
141489
+ /**
141490
+ * @minLength `1`
141491
+ * @maxLength `256`
141492
+ */
141493
+ Name: string;
141494
+ Status?: QuickSightTemplateWidgetStatus;
141495
+ Trigger: QuickSightTemplateImageCustomActionTrigger;
141496
+ };
141497
+ /**
141498
+ * Type definition for `AWS::QuickSight::Template.ImageCustomActionOperation`.
141499
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-imagecustomactionoperation.html}
141500
+ */
141501
+ export type QuickSightTemplateImageCustomActionOperation = {
141502
+ NavigationOperation?: QuickSightTemplateCustomActionNavigationOperation;
141503
+ SetParametersOperation?: QuickSightTemplateCustomActionSetParametersOperation;
141504
+ URLOperation?: QuickSightTemplateCustomActionURLOperation;
141505
+ };
141506
+ /**
141507
+ * Type definition for `AWS::QuickSight::Template.ImageCustomActionTrigger`.
141508
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-imagecustomactiontrigger.html}
141509
+ */
141510
+ export type QuickSightTemplateImageCustomActionTrigger = "CLICK" | "MENU";
141511
+ /**
141512
+ * Type definition for `AWS::QuickSight::Template.ImageInteractionOptions`.
141513
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-imageinteractionoptions.html}
141514
+ */
141515
+ export type QuickSightTemplateImageInteractionOptions = {
141516
+ ImageMenuOption?: QuickSightTemplateImageMenuOption;
141517
+ };
141518
+ /**
141519
+ * Type definition for `AWS::QuickSight::Template.ImageMenuOption`.
141520
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-imagemenuoption.html}
141521
+ */
141522
+ export type QuickSightTemplateImageMenuOption = {
141523
+ AvailabilityStatus?: unknown;
141524
+ };
139454
141525
  /**
139455
141526
  * Type definition for `AWS::QuickSight::Template.InnerFilter`.
139456
141527
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-innerfilter.html}
@@ -139488,6 +141559,11 @@ export type QuickSightTemplateInsightVisual = {
139488
141559
  InsightConfiguration?: QuickSightTemplateInsightConfiguration;
139489
141560
  Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
139490
141561
  Title?: QuickSightTemplateVisualTitleLabelOptions;
141562
+ /**
141563
+ * @minLength `1`
141564
+ * @maxLength `1024`
141565
+ */
141566
+ VisualContentAltText?: string;
139491
141567
  /**
139492
141568
  * @minLength `1`
139493
141569
  * @maxLength `512`
@@ -139688,6 +141764,11 @@ export type QuickSightTemplateKPIVisual = {
139688
141764
  ConditionalFormatting?: QuickSightTemplateKPIConditionalFormatting;
139689
141765
  Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
139690
141766
  Title?: QuickSightTemplateVisualTitleLabelOptions;
141767
+ /**
141768
+ * @minLength `1`
141769
+ * @maxLength `1024`
141770
+ */
141771
+ VisualContentAltText?: string;
139691
141772
  /**
139692
141773
  * @minLength `1`
139693
141774
  * @maxLength `512`
@@ -139755,6 +141836,7 @@ export type QuickSightTemplateLegendOptions = {
139755
141836
  Height?: string;
139756
141837
  Position?: QuickSightTemplateLegendPosition;
139757
141838
  Title?: QuickSightTemplateLabelOptions;
141839
+ ValueFontConfiguration?: QuickSightTemplateFontConfiguration;
139758
141840
  Visibility?: QuickSightTemplateVisibility;
139759
141841
  /**
139760
141842
  * String based length that is composed of value and unit in px
@@ -139939,6 +142021,11 @@ export type QuickSightTemplateLineChartVisual = {
139939
142021
  ColumnHierarchies?: QuickSightTemplateColumnHierarchy[];
139940
142022
  Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
139941
142023
  Title?: QuickSightTemplateVisualTitleLabelOptions;
142024
+ /**
142025
+ * @minLength `1`
142026
+ * @maxLength `1024`
142027
+ */
142028
+ VisualContentAltText?: string;
139942
142029
  /**
139943
142030
  * @minLength `1`
139944
142031
  * @maxLength `512`
@@ -140763,6 +142850,11 @@ export type QuickSightTemplatePieChartVisual = {
140763
142850
  ColumnHierarchies?: QuickSightTemplateColumnHierarchy[];
140764
142851
  Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
140765
142852
  Title?: QuickSightTemplateVisualTitleLabelOptions;
142853
+ /**
142854
+ * @minLength `1`
142855
+ * @maxLength `1024`
142856
+ */
142857
+ VisualContentAltText?: string;
140766
142858
  /**
140767
142859
  * @minLength `1`
140768
142860
  * @maxLength `512`
@@ -141061,6 +143153,11 @@ export type QuickSightTemplatePivotTableVisual = {
141061
143153
  ConditionalFormatting?: QuickSightTemplatePivotTableConditionalFormatting;
141062
143154
  Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
141063
143155
  Title?: QuickSightTemplateVisualTitleLabelOptions;
143156
+ /**
143157
+ * @minLength `1`
143158
+ * @maxLength `1024`
143159
+ */
143160
+ VisualContentAltText?: string;
141064
143161
  /**
141065
143162
  * @minLength `1`
141066
143163
  * @maxLength `512`
@@ -141086,6 +143183,108 @@ export type QuickSightTemplatePivotTotalOptions = {
141086
143183
  TotalsVisibility?: QuickSightTemplateVisibility;
141087
143184
  ValueCellStyle?: QuickSightTemplateTableCellStyle;
141088
143185
  };
143186
+ /**
143187
+ * Type definition for `AWS::QuickSight::Template.PluginVisual`.
143188
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-pluginvisual.html}
143189
+ */
143190
+ export type QuickSightTemplatePluginVisual = {
143191
+ ChartConfiguration?: QuickSightTemplatePluginVisualConfiguration;
143192
+ PluginArn: string;
143193
+ Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
143194
+ Title?: QuickSightTemplateVisualTitleLabelOptions;
143195
+ /**
143196
+ * @minLength `1`
143197
+ * @maxLength `1024`
143198
+ */
143199
+ VisualContentAltText?: string;
143200
+ /**
143201
+ * @minLength `1`
143202
+ * @maxLength `512`
143203
+ * @pattern `^[\w\-]+$`
143204
+ */
143205
+ VisualId: string;
143206
+ };
143207
+ /**
143208
+ * Type definition for `AWS::QuickSight::Template.PluginVisualAxisName`.
143209
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-pluginvisualaxisname.html}
143210
+ */
143211
+ export type QuickSightTemplatePluginVisualAxisName = "GROUP_BY" | "VALUE";
143212
+ /**
143213
+ * Type definition for `AWS::QuickSight::Template.PluginVisualConfiguration`.
143214
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-pluginvisualconfiguration.html}
143215
+ */
143216
+ export type QuickSightTemplatePluginVisualConfiguration = {
143217
+ /**
143218
+ * @minLength `0`
143219
+ * @maxLength `10`
143220
+ */
143221
+ FieldWells?: QuickSightTemplatePluginVisualFieldWell[];
143222
+ SortConfiguration?: QuickSightTemplatePluginVisualSortConfiguration;
143223
+ VisualOptions?: QuickSightTemplatePluginVisualOptions;
143224
+ };
143225
+ /**
143226
+ * Type definition for `AWS::QuickSight::Template.PluginVisualFieldWell`.
143227
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-pluginvisualfieldwell.html}
143228
+ */
143229
+ export type QuickSightTemplatePluginVisualFieldWell = {
143230
+ AxisName?: QuickSightTemplatePluginVisualAxisName;
143231
+ /**
143232
+ * @minLength `0`
143233
+ * @maxLength `200`
143234
+ */
143235
+ Dimensions?: QuickSightTemplateDimensionField[];
143236
+ /**
143237
+ * @minLength `0`
143238
+ * @maxLength `200`
143239
+ */
143240
+ Measures?: QuickSightTemplateMeasureField[];
143241
+ /**
143242
+ * @minLength `0`
143243
+ * @maxLength `200`
143244
+ */
143245
+ Unaggregated?: QuickSightTemplateUnaggregatedField[];
143246
+ };
143247
+ /**
143248
+ * Type definition for `AWS::QuickSight::Template.PluginVisualItemsLimitConfiguration`.
143249
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-pluginvisualitemslimitconfiguration.html}
143250
+ */
143251
+ export type QuickSightTemplatePluginVisualItemsLimitConfiguration = {
143252
+ ItemsLimit?: number;
143253
+ };
143254
+ /**
143255
+ * Type definition for `AWS::QuickSight::Template.PluginVisualOptions`.
143256
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-pluginvisualoptions.html}
143257
+ */
143258
+ export type QuickSightTemplatePluginVisualOptions = {
143259
+ VisualProperties?: QuickSightTemplatePluginVisualProperty[];
143260
+ };
143261
+ /**
143262
+ * Type definition for `AWS::QuickSight::Template.PluginVisualProperty`.
143263
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-pluginvisualproperty.html}
143264
+ */
143265
+ export type QuickSightTemplatePluginVisualProperty = {
143266
+ Name?: string;
143267
+ Value?: string;
143268
+ };
143269
+ /**
143270
+ * Type definition for `AWS::QuickSight::Template.PluginVisualSortConfiguration`.
143271
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-pluginvisualsortconfiguration.html}
143272
+ */
143273
+ export type QuickSightTemplatePluginVisualSortConfiguration = {
143274
+ PluginVisualTableQuerySort?: QuickSightTemplatePluginVisualTableQuerySort;
143275
+ };
143276
+ /**
143277
+ * Type definition for `AWS::QuickSight::Template.PluginVisualTableQuerySort`.
143278
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-pluginvisualtablequerysort.html}
143279
+ */
143280
+ export type QuickSightTemplatePluginVisualTableQuerySort = {
143281
+ ItemsLimitConfiguration?: QuickSightTemplatePluginVisualItemsLimitConfiguration;
143282
+ /**
143283
+ * @minLength `0`
143284
+ * @maxLength `100`
143285
+ */
143286
+ RowSort?: QuickSightTemplateFieldSortOptions[];
143287
+ };
141089
143288
  /**
141090
143289
  * Type definition for `AWS::QuickSight::Template.PredefinedHierarchy`.
141091
143290
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-predefinedhierarchy.html}
@@ -141250,6 +143449,11 @@ export type QuickSightTemplateRadarChartVisual = {
141250
143449
  ColumnHierarchies?: QuickSightTemplateColumnHierarchy[];
141251
143450
  Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
141252
143451
  Title?: QuickSightTemplateVisualTitleLabelOptions;
143452
+ /**
143453
+ * @minLength `1`
143454
+ * @maxLength `1024`
143455
+ */
143456
+ VisualContentAltText?: string;
141253
143457
  /**
141254
143458
  * @minLength `1`
141255
143459
  * @maxLength `512`
@@ -141566,6 +143770,11 @@ export type QuickSightTemplateSankeyDiagramVisual = {
141566
143770
  ChartConfiguration?: QuickSightTemplateSankeyDiagramChartConfiguration;
141567
143771
  Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
141568
143772
  Title?: QuickSightTemplateVisualTitleLabelOptions;
143773
+ /**
143774
+ * @minLength `1`
143775
+ * @maxLength `1024`
143776
+ */
143777
+ VisualContentAltText?: string;
141569
143778
  /**
141570
143779
  * @minLength `1`
141571
143780
  * @maxLength `512`
@@ -141676,6 +143885,11 @@ export type QuickSightTemplateScatterPlotVisual = {
141676
143885
  ColumnHierarchies?: QuickSightTemplateColumnHierarchy[];
141677
143886
  Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
141678
143887
  Title?: QuickSightTemplateVisualTitleLabelOptions;
143888
+ /**
143889
+ * @minLength `1`
143890
+ * @maxLength `1024`
143891
+ */
143892
+ VisualContentAltText?: string;
141679
143893
  /**
141680
143894
  * @minLength `1`
141681
143895
  * @maxLength `512`
@@ -141837,6 +144051,11 @@ export type QuickSightTemplateShapeConditionalFormat = {
141837
144051
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-sheet.html}
141838
144052
  */
141839
144053
  export type QuickSightTemplateSheet = {
144054
+ /**
144055
+ * @minLength `0`
144056
+ * @maxLength `10`
144057
+ */
144058
+ Images?: QuickSightTemplateSheetImage[];
141840
144059
  /**
141841
144060
  * <p>The name of a sheet. This name is displayed on the sheet's tab in the Amazon QuickSight
141842
144061
  console.</p>
@@ -141914,6 +144133,11 @@ export type QuickSightTemplateSheetDefinition = {
141914
144133
  * @maxLength `200`
141915
144134
  */
141916
144135
  FilterControls?: QuickSightTemplateFilterControl[];
144136
+ /**
144137
+ * @minLength `0`
144138
+ * @maxLength `10`
144139
+ */
144140
+ Images?: QuickSightTemplateSheetImage[];
141917
144141
  /**
141918
144142
  * @minLength `1`
141919
144143
  * @maxLength `1`
@@ -141975,6 +144199,82 @@ export type QuickSightTemplateSheetElementRenderingRule = {
141975
144199
  */
141976
144200
  Expression: string;
141977
144201
  };
144202
+ /**
144203
+ * Type definition for `AWS::QuickSight::Template.SheetImage`.
144204
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-sheetimage.html}
144205
+ */
144206
+ export type QuickSightTemplateSheetImage = {
144207
+ /**
144208
+ * @minLength `0`
144209
+ * @maxLength `10`
144210
+ */
144211
+ Actions?: QuickSightTemplateImageCustomAction[];
144212
+ /**
144213
+ * @minLength `1`
144214
+ * @maxLength `1024`
144215
+ */
144216
+ ImageContentAltText?: string;
144217
+ Interactions?: QuickSightTemplateImageInteractionOptions;
144218
+ Scaling?: QuickSightTemplateSheetImageScalingConfiguration;
144219
+ /**
144220
+ * @minLength `1`
144221
+ * @maxLength `512`
144222
+ * @pattern `^[\w\-]+$`
144223
+ */
144224
+ SheetImageId: string;
144225
+ Source: QuickSightTemplateSheetImageSource;
144226
+ Tooltip?: QuickSightTemplateSheetImageTooltipConfiguration;
144227
+ };
144228
+ /**
144229
+ * Type definition for `AWS::QuickSight::Template.SheetImageScalingConfiguration`.
144230
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-sheetimagescalingconfiguration.html}
144231
+ */
144232
+ export type QuickSightTemplateSheetImageScalingConfiguration = {
144233
+ ScalingType?: QuickSightTemplateSheetImageScalingType;
144234
+ };
144235
+ /**
144236
+ * Type definition for `AWS::QuickSight::Template.SheetImageScalingType`.
144237
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-sheetimagescalingtype.html}
144238
+ */
144239
+ export type QuickSightTemplateSheetImageScalingType = "SCALE_TO_WIDTH" | "SCALE_TO_HEIGHT" | "SCALE_TO_CONTAINER" | "SCALE_NONE";
144240
+ /**
144241
+ * Type definition for `AWS::QuickSight::Template.SheetImageSource`.
144242
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-sheetimagesource.html}
144243
+ */
144244
+ export type QuickSightTemplateSheetImageSource = {
144245
+ SheetImageStaticFileSource?: QuickSightTemplateSheetImageStaticFileSource;
144246
+ };
144247
+ /**
144248
+ * Type definition for `AWS::QuickSight::Template.SheetImageStaticFileSource`.
144249
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-sheetimagestaticfilesource.html}
144250
+ */
144251
+ export type QuickSightTemplateSheetImageStaticFileSource = {
144252
+ /**
144253
+ * @minLength `1`
144254
+ * @maxLength `512`
144255
+ * @pattern `^[\w\-]+$`
144256
+ */
144257
+ StaticFileId: string;
144258
+ };
144259
+ /**
144260
+ * Type definition for `AWS::QuickSight::Template.SheetImageTooltipConfiguration`.
144261
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-sheetimagetooltipconfiguration.html}
144262
+ */
144263
+ export type QuickSightTemplateSheetImageTooltipConfiguration = {
144264
+ TooltipText?: QuickSightTemplateSheetImageTooltipText;
144265
+ Visibility?: QuickSightTemplateVisibility;
144266
+ };
144267
+ /**
144268
+ * Type definition for `AWS::QuickSight::Template.SheetImageTooltipText`.
144269
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-sheetimagetooltiptext.html}
144270
+ */
144271
+ export type QuickSightTemplateSheetImageTooltipText = {
144272
+ /**
144273
+ * @minLength `1`
144274
+ * @maxLength `1024`
144275
+ */
144276
+ PlainText?: string;
144277
+ };
141978
144278
  /**
141979
144279
  * Type definition for `AWS::QuickSight::Template.SheetTextBox`.
141980
144280
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-sheettextbox.html}
@@ -142546,6 +144846,11 @@ export type QuickSightTemplateTableVisual = {
142546
144846
  ConditionalFormatting?: QuickSightTemplateTableConditionalFormatting;
142547
144847
  Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
142548
144848
  Title?: QuickSightTemplateVisualTitleLabelOptions;
144849
+ /**
144850
+ * @minLength `1`
144851
+ * @maxLength `1024`
144852
+ */
144853
+ VisualContentAltText?: string;
142549
144854
  /**
142550
144855
  * @minLength `1`
142551
144856
  * @maxLength `512`
@@ -143113,6 +145418,11 @@ export type QuickSightTemplateTreeMapVisual = {
143113
145418
  ColumnHierarchies?: QuickSightTemplateColumnHierarchy[];
143114
145419
  Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
143115
145420
  Title?: QuickSightTemplateVisualTitleLabelOptions;
145421
+ /**
145422
+ * @minLength `1`
145423
+ * @maxLength `1024`
145424
+ */
145425
+ VisualContentAltText?: string;
143116
145426
  /**
143117
145427
  * @minLength `1`
143118
145428
  * @maxLength `512`
@@ -143215,6 +145525,7 @@ export type QuickSightTemplateVisual = {
143215
145525
  LineChartVisual?: QuickSightTemplateLineChartVisual;
143216
145526
  PieChartVisual?: QuickSightTemplatePieChartVisual;
143217
145527
  PivotTableVisual?: QuickSightTemplatePivotTableVisual;
145528
+ PluginVisual?: QuickSightTemplatePluginVisual;
143218
145529
  RadarChartVisual?: QuickSightTemplateRadarChartVisual;
143219
145530
  SankeyDiagramVisual?: QuickSightTemplateSankeyDiagramVisual;
143220
145531
  ScatterPlotVisual?: QuickSightTemplateScatterPlotVisual;
@@ -143400,6 +145711,11 @@ export type QuickSightTemplateWaterfallVisual = {
143400
145711
  ColumnHierarchies?: QuickSightTemplateColumnHierarchy[];
143401
145712
  Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
143402
145713
  Title?: QuickSightTemplateVisualTitleLabelOptions;
145714
+ /**
145715
+ * @minLength `1`
145716
+ * @maxLength `1024`
145717
+ */
145718
+ VisualContentAltText?: string;
143403
145719
  /**
143404
145720
  * @minLength `1`
143405
145721
  * @maxLength `512`
@@ -143513,6 +145829,11 @@ export type QuickSightTemplateWordCloudVisual = {
143513
145829
  ColumnHierarchies?: QuickSightTemplateColumnHierarchy[];
143514
145830
  Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
143515
145831
  Title?: QuickSightTemplateVisualTitleLabelOptions;
145832
+ /**
145833
+ * @minLength `1`
145834
+ * @maxLength `1024`
145835
+ */
145836
+ VisualContentAltText?: string;
143516
145837
  /**
143517
145838
  * @minLength `1`
143518
145839
  * @maxLength `512`
@@ -179750,6 +182071,7 @@ export type WisdomKnowledgeBaseProps = {
179750
182071
  ServerSideEncryptionConfiguration?: WisdomKnowledgeBaseServerSideEncryptionConfiguration;
179751
182072
  SourceConfiguration?: WisdomKnowledgeBaseSourceConfiguration;
179752
182073
  Tags?: WisdomKnowledgeBaseTag[];
182074
+ VectorIngestionConfiguration?: WisdomKnowledgeBaseVectorIngestionConfiguration;
179753
182075
  };
179754
182076
  /**
179755
182077
  * Attribute type definition for `AWS::Wisdom::KnowledgeBase`.
@@ -179782,11 +182104,78 @@ export type WisdomKnowledgeBaseAppIntegrationsConfiguration = {
179782
182104
  */
179783
182105
  ObjectFields?: string[];
179784
182106
  };
182107
+ /**
182108
+ * Type definition for `AWS::Wisdom::KnowledgeBase.BedrockFoundationModelConfiguration`.
182109
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-bedrockfoundationmodelconfiguration.html}
182110
+ */
182111
+ export type WisdomKnowledgeBaseBedrockFoundationModelConfiguration = {
182112
+ /**
182113
+ * @minLength `1`
182114
+ * @maxLength `2048`
182115
+ * @pattern `^arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}::foundation-model\/anthropic.claude-3-haiku-20240307-v1:0$`
182116
+ */
182117
+ ModelArn: string;
182118
+ ParsingPrompt?: {
182119
+ /**
182120
+ * @minLength `1`
182121
+ * @maxLength `10000`
182122
+ */
182123
+ ParsingPromptText: string;
182124
+ };
182125
+ };
182126
+ /**
182127
+ * Type definition for `AWS::Wisdom::KnowledgeBase.FixedSizeChunkingConfiguration`.
182128
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-fixedsizechunkingconfiguration.html}
182129
+ */
182130
+ export type WisdomKnowledgeBaseFixedSizeChunkingConfiguration = {
182131
+ /**
182132
+ * @min `1`
182133
+ */
182134
+ MaxTokens: number;
182135
+ /**
182136
+ * @min `1`
182137
+ * @max `99`
182138
+ */
182139
+ OverlapPercentage: number;
182140
+ };
182141
+ /**
182142
+ * Type definition for `AWS::Wisdom::KnowledgeBase.HierarchicalChunkingConfiguration`.
182143
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-hierarchicalchunkingconfiguration.html}
182144
+ */
182145
+ export type WisdomKnowledgeBaseHierarchicalChunkingConfiguration = {
182146
+ /**
182147
+ * @minLength `2`
182148
+ * @maxLength `2`
182149
+ */
182150
+ LevelConfigurations: WisdomKnowledgeBaseHierarchicalChunkingLevelConfiguration[];
182151
+ /**
182152
+ * @min `1`
182153
+ */
182154
+ OverlapTokens: number;
182155
+ };
182156
+ /**
182157
+ * Type definition for `AWS::Wisdom::KnowledgeBase.HierarchicalChunkingLevelConfiguration`.
182158
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-hierarchicalchunkinglevelconfiguration.html}
182159
+ */
182160
+ export type WisdomKnowledgeBaseHierarchicalChunkingLevelConfiguration = {
182161
+ /**
182162
+ * @min `1`
182163
+ * @max `8192`
182164
+ */
182165
+ MaxTokens: number;
182166
+ };
179785
182167
  /**
179786
182168
  * Type definition for `AWS::Wisdom::KnowledgeBase.KnowledgeBaseType`.
179787
182169
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-knowledgebasetype.html}
179788
182170
  */
179789
- export type WisdomKnowledgeBaseKnowledgeBaseType = "EXTERNAL" | "CUSTOM" | "MESSAGE_TEMPLATES";
182171
+ export type WisdomKnowledgeBaseKnowledgeBaseType = "EXTERNAL" | "CUSTOM" | "MESSAGE_TEMPLATES" | "MANAGED";
182172
+ /**
182173
+ * Type definition for `AWS::Wisdom::KnowledgeBase.ManagedSourceConfiguration`.
182174
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-managedsourceconfiguration.html}
182175
+ */
182176
+ export type WisdomKnowledgeBaseManagedSourceConfiguration = {
182177
+ WebCrawlerConfiguration: WisdomKnowledgeBaseWebCrawlerConfiguration;
182178
+ };
179790
182179
  /**
179791
182180
  * Type definition for `AWS::Wisdom::KnowledgeBase.RenderingConfiguration`.
179792
182181
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-renderingconfiguration.html}
@@ -179798,6 +182187,36 @@ export type WisdomKnowledgeBaseRenderingConfiguration = {
179798
182187
  */
179799
182188
  TemplateUri?: string;
179800
182189
  };
182190
+ /**
182191
+ * Type definition for `AWS::Wisdom::KnowledgeBase.SeedUrl`.
182192
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-seedurl.html}
182193
+ */
182194
+ export type WisdomKnowledgeBaseSeedUrl = {
182195
+ /**
182196
+ * @pattern `^https?://[A-Za-z0-9][^\s]*$`
182197
+ */
182198
+ Url?: string;
182199
+ };
182200
+ /**
182201
+ * Type definition for `AWS::Wisdom::KnowledgeBase.SemanticChunkingConfiguration`.
182202
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-semanticchunkingconfiguration.html}
182203
+ */
182204
+ export type WisdomKnowledgeBaseSemanticChunkingConfiguration = {
182205
+ /**
182206
+ * @min `50`
182207
+ * @max `99`
182208
+ */
182209
+ BreakpointPercentileThreshold: number;
182210
+ /**
182211
+ * @min `0`
182212
+ * @max `1`
182213
+ */
182214
+ BufferSize: number;
182215
+ /**
182216
+ * @min `1`
182217
+ */
182218
+ MaxTokens: number;
182219
+ };
179801
182220
  /**
179802
182221
  * Type definition for `AWS::Wisdom::KnowledgeBase.ServerSideEncryptionConfiguration`.
179803
182222
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-serversideencryptionconfiguration.html}
@@ -179814,7 +182233,9 @@ export type WisdomKnowledgeBaseServerSideEncryptionConfiguration = {
179814
182233
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-sourceconfiguration.html}
179815
182234
  */
179816
182235
  export type WisdomKnowledgeBaseSourceConfiguration = {
179817
- AppIntegrations?: WisdomKnowledgeBaseAppIntegrationsConfiguration;
182236
+ AppIntegrations: WisdomKnowledgeBaseAppIntegrationsConfiguration;
182237
+ } | {
182238
+ ManagedSourceConfiguration: WisdomKnowledgeBaseManagedSourceConfiguration;
179818
182239
  };
179819
182240
  /**
179820
182241
  * Type definition for `AWS::Wisdom::KnowledgeBase.Tag`.
@@ -179833,6 +182254,53 @@ export type WisdomKnowledgeBaseTag = {
179833
182254
  */
179834
182255
  Value: string;
179835
182256
  };
182257
+ /**
182258
+ * Type definition for `AWS::Wisdom::KnowledgeBase.VectorIngestionConfiguration`.
182259
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-vectoringestionconfiguration.html}
182260
+ */
182261
+ export type WisdomKnowledgeBaseVectorIngestionConfiguration = {
182262
+ ChunkingConfiguration?: {
182263
+ ChunkingStrategy: "FIXED_SIZE" | "NONE" | "HIERARCHICAL" | "SEMANTIC";
182264
+ FixedSizeChunkingConfiguration?: WisdomKnowledgeBaseFixedSizeChunkingConfiguration;
182265
+ HierarchicalChunkingConfiguration?: WisdomKnowledgeBaseHierarchicalChunkingConfiguration;
182266
+ SemanticChunkingConfiguration?: WisdomKnowledgeBaseSemanticChunkingConfiguration;
182267
+ };
182268
+ ParsingConfiguration?: {
182269
+ BedrockFoundationModelConfiguration?: WisdomKnowledgeBaseBedrockFoundationModelConfiguration;
182270
+ ParsingStrategy: "BEDROCK_FOUNDATION_MODEL";
182271
+ };
182272
+ };
182273
+ /**
182274
+ * Type definition for `AWS::Wisdom::KnowledgeBase.WebCrawlerConfiguration`.
182275
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-webcrawlerconfiguration.html}
182276
+ */
182277
+ export type WisdomKnowledgeBaseWebCrawlerConfiguration = {
182278
+ CrawlerLimits?: {
182279
+ /**
182280
+ * @min `1`
182281
+ * @max `3000`
182282
+ */
182283
+ RateLimit?: number;
182284
+ };
182285
+ /**
182286
+ * @minLength `1`
182287
+ * @maxLength `25`
182288
+ */
182289
+ ExclusionFilters?: string[];
182290
+ /**
182291
+ * @minLength `1`
182292
+ * @maxLength `25`
182293
+ */
182294
+ InclusionFilters?: string[];
182295
+ Scope?: "HOST_ONLY" | "SUBDOMAINS";
182296
+ UrlConfiguration: {
182297
+ /**
182298
+ * @minLength `1`
182299
+ * @maxLength `100`
182300
+ */
182301
+ SeedUrls?: WisdomKnowledgeBaseSeedUrl[];
182302
+ };
182303
+ };
179836
182304
  /**
179837
182305
  * Definition of AWS::Wisdom::MessageTemplate Resource Type
179838
182306
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-messagetemplate.html}
@@ -182255,6 +184723,7 @@ export interface ResourceTypes {
182255
184723
  "AWS::Cognito::IdentityPoolPrincipalTag": CognitoIdentityPoolPrincipalTagProps;
182256
184724
  "AWS::Cognito::IdentityPoolRoleAttachment": CognitoIdentityPoolRoleAttachmentProps;
182257
184725
  "AWS::Cognito::LogDeliveryConfiguration": CognitoLogDeliveryConfigurationProps;
184726
+ "AWS::Cognito::ManagedLoginBranding": CognitoManagedLoginBrandingProps;
182258
184727
  "AWS::Cognito::UserPool": CognitoUserPoolProps;
182259
184728
  "AWS::Cognito::UserPoolClient": CognitoUserPoolClientProps;
182260
184729
  "AWS::Cognito::UserPoolDomain": CognitoUserPoolDomainProps;
@@ -183576,6 +186045,7 @@ export interface AttributeTypes {
183576
186045
  "AWS::Cognito::IdentityPool": CognitoIdentityPoolAttributes;
183577
186046
  "AWS::Cognito::IdentityPoolRoleAttachment": CognitoIdentityPoolRoleAttachmentAttributes;
183578
186047
  "AWS::Cognito::LogDeliveryConfiguration": CognitoLogDeliveryConfigurationAttributes;
186048
+ "AWS::Cognito::ManagedLoginBranding": CognitoManagedLoginBrandingAttributes;
183579
186049
  "AWS::Cognito::UserPool": CognitoUserPoolAttributes;
183580
186050
  "AWS::Cognito::UserPoolClient": CognitoUserPoolClientAttributes;
183581
186051
  "AWS::Cognito::UserPoolDomain": CognitoUserPoolDomainAttributes;
@@ -184803,6 +187273,7 @@ export declare const ResourceType: {
184803
187273
  readonly CognitoIdentityPoolPrincipalTag: "AWS::Cognito::IdentityPoolPrincipalTag";
184804
187274
  readonly CognitoIdentityPoolRoleAttachment: "AWS::Cognito::IdentityPoolRoleAttachment";
184805
187275
  readonly CognitoLogDeliveryConfiguration: "AWS::Cognito::LogDeliveryConfiguration";
187276
+ readonly CognitoManagedLoginBranding: "AWS::Cognito::ManagedLoginBranding";
184806
187277
  readonly CognitoUserPool: "AWS::Cognito::UserPool";
184807
187278
  readonly CognitoUserPoolClient: "AWS::Cognito::UserPoolClient";
184808
187279
  readonly CognitoUserPoolDomain: "AWS::Cognito::UserPoolDomain";