@awboost/cfntypes 0.100.132 → 0.100.133

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.
@@ -24312,8 +24312,7 @@ export type CEAnomalySubscriptionSubscriber = {
24312
24312
  Type: "EMAIL" | "SNS";
24313
24313
  };
24314
24314
  /**
24315
- * Resource type definition for `AWS::CE::CostCategory`.
24316
- * Cost Category enables you to map your cost and usage into meaningful categories. You can use Cost Category to organize your costs using a rule-based engine.
24315
+ * Resource Type definition for AWS::CE::CostCategory. Cost Category enables you to map your cost and usage into meaningful categories. You can use Cost Category to organize your costs using a rule-based engine.
24317
24316
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ce-costcategory.html}
24318
24317
  */
24319
24318
  export type CECostCategoryProps = {
@@ -24337,6 +24336,12 @@ export type CECostCategoryProps = {
24337
24336
  * Json array format of CostCategorySplitChargeRule in Billing and Cost Management API
24338
24337
  */
24339
24338
  SplitChargeRules?: string;
24339
+ /**
24340
+ * Tags to assign to the cost category.
24341
+ * @minLength `0`
24342
+ * @maxLength `200`
24343
+ */
24344
+ Tags?: CECostCategoryResourceTag[];
24340
24345
  };
24341
24346
  /**
24342
24347
  * Attribute type definition for `AWS::CE::CostCategory`.
@@ -24356,6 +24361,26 @@ export type CECostCategoryAttributes = {
24356
24361
  */
24357
24362
  EffectiveStart: string;
24358
24363
  };
24364
+ /**
24365
+ * Type definition for `AWS::CE::CostCategory.ResourceTag`.
24366
+ * A key-value pair to associate with a resource.
24367
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ce-costcategory-resourcetag.html}
24368
+ */
24369
+ export type CECostCategoryResourceTag = {
24370
+ /**
24371
+ * The key name for the tag.
24372
+ * @minLength `1`
24373
+ * @maxLength `128`
24374
+ * @pattern `^(?!aws:).*$`
24375
+ */
24376
+ Key: string;
24377
+ /**
24378
+ * The value for the tag.
24379
+ * @minLength `0`
24380
+ * @maxLength `256`
24381
+ */
24382
+ Value: string;
24383
+ };
24359
24384
  /**
24360
24385
  * Resource schema for AWS::CertificateManager::Account.
24361
24386
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-account.html}
@@ -47000,7 +47025,7 @@ export type DMSDataProviderProps = {
47000
47025
  /**
47001
47026
  * The property describes a data engine for the data provider.
47002
47027
  */
47003
- Engine: "aurora" | "aurora_postgresql" | "mysql" | "oracle" | "postgres" | "sqlserver" | "redshift" | "mariadb" | "mongodb" | "docdb";
47028
+ Engine: "aurora" | "aurora_postgresql" | "mysql" | "oracle" | "postgres" | "sqlserver" | "redshift" | "mariadb" | "mongodb" | "docdb" | "db2" | "db2_zos";
47004
47029
  /**
47005
47030
  * The property describes the exact settings which can be modified
47006
47031
  */
@@ -47019,6 +47044,26 @@ export type DMSDataProviderProps = {
47019
47044
  ServerName: string;
47020
47045
  SslMode?: DMSDataProviderMongoDbSslModeValue;
47021
47046
  };
47047
+ /**
47048
+ * IbmDb2LuwSettings property identifier.
47049
+ */
47050
+ IbmDb2LuwSettings?: {
47051
+ CertificateArn?: string;
47052
+ DatabaseName: string;
47053
+ Port: number;
47054
+ ServerName: string;
47055
+ SslMode: DMSDataProviderDb2SslModeValue;
47056
+ };
47057
+ /**
47058
+ * IbmDb2zOsSettings property identifier.
47059
+ */
47060
+ IbmDb2zOsSettings?: {
47061
+ CertificateArn?: string;
47062
+ DatabaseName: string;
47063
+ Port: number;
47064
+ ServerName: string;
47065
+ SslMode: DMSDataProviderDb2SslModeValue;
47066
+ };
47022
47067
  /**
47023
47068
  * MariaDbSettings property identifier.
47024
47069
  */
@@ -47117,6 +47162,11 @@ export type DMSDataProviderAttributes = {
47117
47162
  */
47118
47163
  DataProviderCreationTime: string;
47119
47164
  };
47165
+ /**
47166
+ * Type definition for `AWS::DMS::DataProvider.Db2SslModeValue`.
47167
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-dataprovider-db2sslmodevalue.html}
47168
+ */
47169
+ export type DMSDataProviderDb2SslModeValue = "none" | "verify-ca";
47120
47170
  /**
47121
47171
  * Type definition for `AWS::DMS::DataProvider.DmsSslModeValue`.
47122
47172
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-dataprovider-dmssslmodevalue.html}
@@ -80069,9 +80119,13 @@ export type IoTAccountAuditConfigurationAuditCheckConfigurations = {
80069
80119
  */
80070
80120
  ConflictingClientIdsCheck?: IoTAccountAuditConfigurationAuditCheckConfiguration;
80071
80121
  /**
80072
- * The configuration for a specific audit check.
80122
+ * A structure containing the configName and corresponding configValue for configuring DeviceCertAgeCheck.
80073
80123
  */
80074
- DeviceCertificateExpiringCheck?: IoTAccountAuditConfigurationAuditCheckConfiguration;
80124
+ DeviceCertificateAgeCheck?: IoTAccountAuditConfigurationDeviceCertAgeAuditCheckConfiguration;
80125
+ /**
80126
+ * A structure containing the configName and corresponding configValue for configuring DeviceCertExpirationCheck.
80127
+ */
80128
+ DeviceCertificateExpiringCheck?: IoTAccountAuditConfigurationDeviceCertExpirationAuditCheckConfiguration;
80075
80129
  /**
80076
80130
  * The configuration for a specific audit check.
80077
80131
  */
@@ -80146,6 +80200,62 @@ export type IoTAccountAuditConfigurationAuditNotificationTarget = {
80146
80200
  export type IoTAccountAuditConfigurationAuditNotificationTargetConfigurations = {
80147
80201
  Sns?: IoTAccountAuditConfigurationAuditNotificationTarget;
80148
80202
  };
80203
+ /**
80204
+ * Type definition for `AWS::IoT::AccountAuditConfiguration.CertAgeCheckCustomConfiguration`.
80205
+ * A structure containing the configName and corresponding configValue for configuring audit checks.
80206
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-accountauditconfiguration-certagecheckcustomconfiguration.html}
80207
+ */
80208
+ export type IoTAccountAuditConfigurationCertAgeCheckCustomConfiguration = {
80209
+ /**
80210
+ * The configValue for configuring audit checks.
80211
+ * @minLength `1`
80212
+ * @maxLength `64`
80213
+ */
80214
+ CertAgeThresholdInDays?: string;
80215
+ };
80216
+ /**
80217
+ * Type definition for `AWS::IoT::AccountAuditConfiguration.CertExpirationCheckCustomConfiguration`.
80218
+ * A structure containing the configName and corresponding configValue for configuring audit checks.
80219
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-accountauditconfiguration-certexpirationcheckcustomconfiguration.html}
80220
+ */
80221
+ export type IoTAccountAuditConfigurationCertExpirationCheckCustomConfiguration = {
80222
+ /**
80223
+ * The configValue for configuring audit checks.
80224
+ * @minLength `1`
80225
+ * @maxLength `64`
80226
+ */
80227
+ CertExpirationThresholdInDays?: string;
80228
+ };
80229
+ /**
80230
+ * Type definition for `AWS::IoT::AccountAuditConfiguration.DeviceCertAgeAuditCheckConfiguration`.
80231
+ * A structure containing the configName and corresponding configValue for configuring DeviceCertAgeCheck.
80232
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-accountauditconfiguration-devicecertageauditcheckconfiguration.html}
80233
+ */
80234
+ export type IoTAccountAuditConfigurationDeviceCertAgeAuditCheckConfiguration = {
80235
+ /**
80236
+ * A structure containing the configName and corresponding configValue for configuring audit checks.
80237
+ */
80238
+ Configuration?: IoTAccountAuditConfigurationCertAgeCheckCustomConfiguration;
80239
+ /**
80240
+ * True if the check is enabled.
80241
+ */
80242
+ Enabled?: boolean;
80243
+ };
80244
+ /**
80245
+ * Type definition for `AWS::IoT::AccountAuditConfiguration.DeviceCertExpirationAuditCheckConfiguration`.
80246
+ * A structure containing the configName and corresponding configValue for configuring DeviceCertExpirationCheck.
80247
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-accountauditconfiguration-devicecertexpirationauditcheckconfiguration.html}
80248
+ */
80249
+ export type IoTAccountAuditConfigurationDeviceCertExpirationAuditCheckConfiguration = {
80250
+ /**
80251
+ * A structure containing the configName and corresponding configValue for configuring audit checks.
80252
+ */
80253
+ Configuration?: IoTAccountAuditConfigurationCertExpirationCheckCustomConfiguration;
80254
+ /**
80255
+ * True if the check is enabled.
80256
+ */
80257
+ Enabled?: boolean;
80258
+ };
80149
80259
  /**
80150
80260
  * Resource type definition for `AWS::IoT::Authorizer`.
80151
80261
  * Creates an authorizer.
@@ -107601,7 +107711,7 @@ export type MediaLiveCloudWatchAlarmTemplateProps = {
107601
107711
  * A cloudwatch alarm template group's identifier. Can be either be its id or current name.
107602
107712
  * @pattern `^[^\s]+$`
107603
107713
  */
107604
- GroupIdentifier: string;
107714
+ GroupIdentifier?: string;
107605
107715
  /**
107606
107716
  * The name of the metric associated with the alarm. Must be compatible with targetResourceType.
107607
107717
  * @minLength `0`
@@ -107687,7 +107797,7 @@ export type MediaLiveCloudWatchAlarmTemplateCloudWatchAlarmTemplateStatistic = "
107687
107797
  * The resource type this template should dynamically generate cloudwatch metric alarms for.
107688
107798
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-cloudwatchalarmtemplate-cloudwatchalarmtemplatetargetresourcetype.html}
107689
107799
  */
107690
- export type MediaLiveCloudWatchAlarmTemplateCloudWatchAlarmTemplateTargetResourceType = "CLOUDFRONT_DISTRIBUTION" | "MEDIALIVE_MULTIPLEX" | "MEDIALIVE_CHANNEL" | "MEDIALIVE_INPUT_DEVICE" | "MEDIAPACKAGE_CHANNEL" | "MEDIAPACKAGE_ORIGIN_ENDPOINT" | "MEDIACONNECT_FLOW" | "S3_BUCKET";
107800
+ export type MediaLiveCloudWatchAlarmTemplateCloudWatchAlarmTemplateTargetResourceType = "CLOUDFRONT_DISTRIBUTION" | "MEDIALIVE_MULTIPLEX" | "MEDIALIVE_CHANNEL" | "MEDIALIVE_INPUT_DEVICE" | "MEDIAPACKAGE_CHANNEL" | "MEDIAPACKAGE_ORIGIN_ENDPOINT" | "MEDIACONNECT_FLOW" | "MEDIATAILOR_PLAYBACK_CONFIGURATION" | "S3_BUCKET";
107691
107801
  /**
107692
107802
  * Type definition for `AWS::MediaLive::CloudWatchAlarmTemplate.CloudWatchAlarmTemplateTreatMissingData`.
107693
107803
  * Specifies how missing data points are treated when evaluating the alarm's condition.
@@ -107874,7 +107984,7 @@ export type MediaLiveEventBridgeRuleTemplateProps = {
107874
107984
  * An eventbridge rule template group's identifier. Can be either be its id or current name.
107875
107985
  * @pattern `^[^\s]+$`
107876
107986
  */
107877
- GroupIdentifier: string;
107987
+ GroupIdentifier?: string;
107878
107988
  /**
107879
107989
  * A resource's name. Names must be unique within the scope of a resource type in a specific region.
107880
107990
  * @minLength `1`
@@ -108626,7 +108736,7 @@ export type MediaLiveSignalMapAttributes = {
108626
108736
  CreatedAt: string;
108627
108737
  /**
108628
108738
  * Error message associated with a failed creation or failed update attempt of a signal map.
108629
- * @minLength `1`
108739
+ * @minLength `0`
108630
108740
  * @maxLength `2048`
108631
108741
  */
108632
108742
  ErrorMessage: string;
@@ -108645,14 +108755,14 @@ export type MediaLiveSignalMapAttributes = {
108645
108755
  Arn: string;
108646
108756
  /**
108647
108757
  * The logical name of an AWS media resource.
108648
- * @minLength `1`
108758
+ * @minLength `0`
108649
108759
  * @maxLength `256`
108650
108760
  */
108651
108761
  Name: string;
108652
108762
  }[];
108653
108763
  /**
108654
108764
  * The logical name of an AWS media resource.
108655
- * @minLength `1`
108765
+ * @minLength `0`
108656
108766
  * @maxLength `256`
108657
108767
  */
108658
108768
  Name: string;
@@ -108666,7 +108776,7 @@ export type MediaLiveSignalMapAttributes = {
108666
108776
  Arn: string;
108667
108777
  /**
108668
108778
  * The logical name of an AWS media resource.
108669
- * @minLength `1`
108779
+ * @minLength `0`
108670
108780
  * @maxLength `256`
108671
108781
  */
108672
108782
  Name: string;
@@ -108687,7 +108797,7 @@ export type MediaLiveSignalMapAttributes = {
108687
108797
  LastSuccessfulMonitorDeployment: {
108688
108798
  /**
108689
108799
  * URI associated with a signal map's monitor deployment.
108690
- * @minLength `1`
108800
+ * @minLength `0`
108691
108801
  * @maxLength `2048`
108692
108802
  */
108693
108803
  DetailsUri: string;
@@ -108710,14 +108820,14 @@ export type MediaLiveSignalMapAttributes = {
108710
108820
  Arn: string;
108711
108821
  /**
108712
108822
  * The logical name of an AWS media resource.
108713
- * @minLength `1`
108823
+ * @minLength `0`
108714
108824
  * @maxLength `256`
108715
108825
  */
108716
108826
  Name: string;
108717
108827
  }[];
108718
108828
  /**
108719
108829
  * The logical name of an AWS media resource.
108720
- * @minLength `1`
108830
+ * @minLength `0`
108721
108831
  * @maxLength `256`
108722
108832
  */
108723
108833
  Name: string;
@@ -108731,7 +108841,7 @@ export type MediaLiveSignalMapAttributes = {
108731
108841
  Arn: string;
108732
108842
  /**
108733
108843
  * The logical name of an AWS media resource.
108734
- * @minLength `1`
108844
+ * @minLength `0`
108735
108845
  * @maxLength `256`
108736
108846
  */
108737
108847
  Name: string;
@@ -108748,13 +108858,13 @@ export type MediaLiveSignalMapAttributes = {
108748
108858
  MonitorDeployment: {
108749
108859
  /**
108750
108860
  * URI associated with a signal map's monitor deployment.
108751
- * @minLength `1`
108861
+ * @minLength `0`
108752
108862
  * @maxLength `2048`
108753
108863
  */
108754
108864
  DetailsUri: string;
108755
108865
  /**
108756
108866
  * Error message associated with a failed monitor deployment of a signal map.
108757
- * @minLength `1`
108867
+ * @minLength `0`
108758
108868
  * @maxLength `2048`
108759
108869
  */
108760
108870
  ErrorMessage: string;
@@ -108783,7 +108893,7 @@ export type MediaLiveSignalMapMediaResource = {
108783
108893
  Destinations?: MediaLiveSignalMapMediaResourceNeighbor[];
108784
108894
  /**
108785
108895
  * The logical name of an AWS media resource.
108786
- * @minLength `1`
108896
+ * @minLength `0`
108787
108897
  * @maxLength `256`
108788
108898
  */
108789
108899
  Name?: string;
@@ -108810,7 +108920,7 @@ export type MediaLiveSignalMapMediaResourceNeighbor = {
108810
108920
  Arn: string;
108811
108921
  /**
108812
108922
  * The logical name of an AWS media resource.
108813
- * @minLength `1`
108923
+ * @minLength `0`
108814
108924
  * @maxLength `256`
108815
108925
  */
108816
108926
  Name?: string;
@@ -108823,13 +108933,13 @@ export type MediaLiveSignalMapMediaResourceNeighbor = {
108823
108933
  export type MediaLiveSignalMapMonitorDeployment = {
108824
108934
  /**
108825
108935
  * URI associated with a signal map's monitor deployment.
108826
- * @minLength `1`
108936
+ * @minLength `0`
108827
108937
  * @maxLength `2048`
108828
108938
  */
108829
108939
  DetailsUri?: string;
108830
108940
  /**
108831
108941
  * Error message associated with a failed monitor deployment of a signal map.
108832
- * @minLength `1`
108942
+ * @minLength `0`
108833
108943
  * @maxLength `2048`
108834
108944
  */
108835
108945
  ErrorMessage?: string;
@@ -108858,7 +108968,7 @@ export type MediaLiveSignalMapSignalMapStatus = "CREATE_IN_PROGRESS" | "CREATE_C
108858
108968
  export type MediaLiveSignalMapSuccessfulMonitorDeployment = {
108859
108969
  /**
108860
108970
  * URI associated with a signal map's monitor deployment.
108861
- * @minLength `1`
108971
+ * @minLength `0`
108862
108972
  * @maxLength `2048`
108863
108973
  */
108864
108974
  DetailsUri: string;
@@ -116027,7 +116137,7 @@ export type OamLinkLinkFilter = {
116027
116137
  * Type definition for `AWS::Oam::Link.ResourceType`.
116028
116138
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-oam-link-resourcetype.html}
116029
116139
  */
116030
- export type OamLinkResourceType = "AWS::CloudWatch::Metric" | "AWS::Logs::LogGroup" | "AWS::XRay::Trace" | "AWS::ApplicationInsights::Application" | "AWS::InternetMonitor::Monitor";
116140
+ export type OamLinkResourceType = "AWS::CloudWatch::Metric" | "AWS::Logs::LogGroup" | "AWS::XRay::Trace" | "AWS::ApplicationInsights::Application" | "AWS::InternetMonitor::Monitor" | "AWS::ApplicationSignals::Service" | "AWS::ApplicationSignals::ServiceLevelObjective";
116031
116141
  /**
116032
116142
  * Resource Type definition for AWS::Oam::Sink
116033
116143
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-oam-sink.html}
@@ -124672,6 +124782,7 @@ export type QuickSightAnalysisBarChartConfiguration = {
124672
124782
  ContributionAnalysisDefaults?: QuickSightAnalysisContributionAnalysisDefault[];
124673
124783
  DataLabels?: QuickSightAnalysisDataLabelOptions;
124674
124784
  FieldWells?: QuickSightAnalysisBarChartFieldWells;
124785
+ Interactions?: QuickSightAnalysisVisualInteractionOptions;
124675
124786
  Legend?: QuickSightAnalysisLegendOptions;
124676
124787
  Orientation?: QuickSightAnalysisBarChartOrientation;
124677
124788
  /**
@@ -124794,6 +124905,7 @@ export type QuickSightAnalysisBinWidthOptions = {
124794
124905
  export type QuickSightAnalysisBodySectionConfiguration = {
124795
124906
  Content: QuickSightAnalysisBodySectionContent;
124796
124907
  PageBreakConfiguration?: QuickSightAnalysisSectionPageBreakConfiguration;
124908
+ RepeatConfiguration?: QuickSightAnalysisBodySectionRepeatConfiguration;
124797
124909
  /**
124798
124910
  * @minLength `1`
124799
124911
  * @maxLength `512`
@@ -124809,6 +124921,72 @@ export type QuickSightAnalysisBodySectionConfiguration = {
124809
124921
  export type QuickSightAnalysisBodySectionContent = {
124810
124922
  Layout?: QuickSightAnalysisSectionLayoutConfiguration;
124811
124923
  };
124924
+ /**
124925
+ * Type definition for `AWS::QuickSight::Analysis.BodySectionDynamicCategoryDimensionConfiguration`.
124926
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-bodysectiondynamiccategorydimensionconfiguration.html}
124927
+ */
124928
+ export type QuickSightAnalysisBodySectionDynamicCategoryDimensionConfiguration = {
124929
+ Column: QuickSightAnalysisColumnIdentifier;
124930
+ /**
124931
+ * @min `1`
124932
+ * @max `1000`
124933
+ */
124934
+ Limit?: number;
124935
+ /**
124936
+ * @minLength `0`
124937
+ * @maxLength `100`
124938
+ */
124939
+ SortByMetrics?: QuickSightAnalysisColumnSort[];
124940
+ };
124941
+ /**
124942
+ * Type definition for `AWS::QuickSight::Analysis.BodySectionDynamicNumericDimensionConfiguration`.
124943
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-bodysectiondynamicnumericdimensionconfiguration.html}
124944
+ */
124945
+ export type QuickSightAnalysisBodySectionDynamicNumericDimensionConfiguration = {
124946
+ Column: QuickSightAnalysisColumnIdentifier;
124947
+ /**
124948
+ * @min `1`
124949
+ * @max `1000`
124950
+ */
124951
+ Limit?: number;
124952
+ /**
124953
+ * @minLength `0`
124954
+ * @maxLength `100`
124955
+ */
124956
+ SortByMetrics?: QuickSightAnalysisColumnSort[];
124957
+ };
124958
+ /**
124959
+ * Type definition for `AWS::QuickSight::Analysis.BodySectionRepeatConfiguration`.
124960
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-bodysectionrepeatconfiguration.html}
124961
+ */
124962
+ export type QuickSightAnalysisBodySectionRepeatConfiguration = {
124963
+ /**
124964
+ * @minLength `0`
124965
+ * @maxLength `3`
124966
+ */
124967
+ DimensionConfigurations?: QuickSightAnalysisBodySectionRepeatDimensionConfiguration[];
124968
+ /**
124969
+ * @minLength `0`
124970
+ * @maxLength `20`
124971
+ */
124972
+ NonRepeatingVisuals?: string[];
124973
+ PageBreakConfiguration?: QuickSightAnalysisBodySectionRepeatPageBreakConfiguration;
124974
+ };
124975
+ /**
124976
+ * Type definition for `AWS::QuickSight::Analysis.BodySectionRepeatDimensionConfiguration`.
124977
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-bodysectionrepeatdimensionconfiguration.html}
124978
+ */
124979
+ export type QuickSightAnalysisBodySectionRepeatDimensionConfiguration = {
124980
+ DynamicCategoryDimensionConfiguration?: QuickSightAnalysisBodySectionDynamicCategoryDimensionConfiguration;
124981
+ DynamicNumericDimensionConfiguration?: QuickSightAnalysisBodySectionDynamicNumericDimensionConfiguration;
124982
+ };
124983
+ /**
124984
+ * Type definition for `AWS::QuickSight::Analysis.BodySectionRepeatPageBreakConfiguration`.
124985
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-bodysectionrepeatpagebreakconfiguration.html}
124986
+ */
124987
+ export type QuickSightAnalysisBodySectionRepeatPageBreakConfiguration = {
124988
+ After?: QuickSightAnalysisSectionAfterPageBreak;
124989
+ };
124812
124990
  /**
124813
124991
  * Type definition for `AWS::QuickSight::Analysis.BoxPlotAggregatedFieldWells`.
124814
124992
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-boxplotaggregatedfieldwells.html}
@@ -124834,6 +125012,7 @@ export type QuickSightAnalysisBoxPlotChartConfiguration = {
124834
125012
  CategoryAxis?: QuickSightAnalysisAxisDisplayOptions;
124835
125013
  CategoryLabelOptions?: QuickSightAnalysisChartAxisLabelOptions;
124836
125014
  FieldWells?: QuickSightAnalysisBoxPlotFieldWells;
125015
+ Interactions?: QuickSightAnalysisVisualInteractionOptions;
124837
125016
  Legend?: QuickSightAnalysisLegendOptions;
124838
125017
  PrimaryYAxisDisplayOptions?: QuickSightAnalysisAxisDisplayOptions;
124839
125018
  PrimaryYAxisLabelOptions?: QuickSightAnalysisChartAxisLabelOptions;
@@ -125217,6 +125396,7 @@ export type QuickSightAnalysisComboChartConfiguration = {
125217
125396
  CategoryLabelOptions?: QuickSightAnalysisChartAxisLabelOptions;
125218
125397
  ColorLabelOptions?: QuickSightAnalysisChartAxisLabelOptions;
125219
125398
  FieldWells?: QuickSightAnalysisComboChartFieldWells;
125399
+ Interactions?: QuickSightAnalysisVisualInteractionOptions;
125220
125400
  Legend?: QuickSightAnalysisLegendOptions;
125221
125401
  LineDataLabels?: QuickSightAnalysisDataLabelOptions;
125222
125402
  PrimaryYAxisDisplayOptions?: QuickSightAnalysisAxisDisplayOptions;
@@ -125430,6 +125610,13 @@ export type QuickSightAnalysisConditionalFormattingSolidColor = {
125430
125610
  */
125431
125611
  Expression: string;
125432
125612
  };
125613
+ /**
125614
+ * Type definition for `AWS::QuickSight::Analysis.ContextMenuOption`.
125615
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-contextmenuoption.html}
125616
+ */
125617
+ export type QuickSightAnalysisContextMenuOption = {
125618
+ AvailabilityStatus?: QuickSightAnalysisDashboardBehavior;
125619
+ };
125433
125620
  /**
125434
125621
  * Type definition for `AWS::QuickSight::Analysis.ContributionAnalysisDefault`.
125435
125622
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-contributionanalysisdefault.html}
@@ -125542,6 +125729,7 @@ export type QuickSightAnalysisCustomContentConfiguration = {
125542
125729
  */
125543
125730
  ContentUrl?: string;
125544
125731
  ImageScaling?: QuickSightAnalysisCustomContentImageScalingConfiguration;
125732
+ Interactions?: QuickSightAnalysisVisualInteractionOptions;
125545
125733
  };
125546
125734
  /**
125547
125735
  * Type definition for `AWS::QuickSight::Analysis.CustomContentImageScalingConfiguration`.
@@ -125981,11 +126169,13 @@ export type QuickSightAnalysisDateTimeParameterDeclaration = {
125981
126169
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-datetimepickercontroldisplayoptions.html}
125982
126170
  */
125983
126171
  export type QuickSightAnalysisDateTimePickerControlDisplayOptions = {
126172
+ DateIconVisibility?: QuickSightAnalysisVisibility;
125984
126173
  /**
125985
126174
  * @minLength `1`
125986
126175
  * @maxLength `128`
125987
126176
  */
125988
126177
  DateTimeFormat?: string;
126178
+ HelperTextVisibility?: QuickSightAnalysisVisibility;
125989
126179
  InfoIconLabelOptions?: QuickSightAnalysisSheetControlInfoIconLabelOptions;
125990
126180
  TitleOptions?: QuickSightAnalysisLabelOptions;
125991
126181
  };
@@ -126220,6 +126410,11 @@ export type QuickSightAnalysisDestinationParameterValueConfiguration = {
126220
126410
  SourceField?: string;
126221
126411
  SourceParameterName?: string;
126222
126412
  };
126413
+ /**
126414
+ * Type definition for `AWS::QuickSight::Analysis.DigitGroupingStyle`.
126415
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-digitgroupingstyle.html}
126416
+ */
126417
+ export type QuickSightAnalysisDigitGroupingStyle = "DEFAULT" | "LAKHS";
126223
126418
  /**
126224
126419
  * Type definition for `AWS::QuickSight::Analysis.DimensionField`.
126225
126420
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-dimensionfield.html}
@@ -126445,6 +126640,7 @@ export type QuickSightAnalysisFilledMapConditionalFormattingOption = {
126445
126640
  */
126446
126641
  export type QuickSightAnalysisFilledMapConfiguration = {
126447
126642
  FieldWells?: QuickSightAnalysisFilledMapFieldWells;
126643
+ Interactions?: QuickSightAnalysisVisualInteractionOptions;
126448
126644
  Legend?: QuickSightAnalysisLegendOptions;
126449
126645
  MapStyleOptions?: QuickSightAnalysisGeospatialMapStyleOptions;
126450
126646
  SortConfiguration?: QuickSightAnalysisFilledMapSortConfiguration;
@@ -126844,6 +127040,7 @@ export type QuickSightAnalysisFontConfiguration = {
126844
127040
  */
126845
127041
  FontColor?: string;
126846
127042
  FontDecoration?: QuickSightAnalysisFontDecoration;
127043
+ FontFamily?: string;
126847
127044
  FontSize?: QuickSightAnalysisFontSize;
126848
127045
  FontStyle?: QuickSightAnalysisFontStyle;
126849
127046
  FontWeight?: QuickSightAnalysisFontWeight;
@@ -127074,6 +127271,7 @@ export type QuickSightAnalysisFunnelChartConfiguration = {
127074
127271
  CategoryLabelOptions?: QuickSightAnalysisChartAxisLabelOptions;
127075
127272
  DataLabelOptions?: QuickSightAnalysisFunnelChartDataLabelOptions;
127076
127273
  FieldWells?: QuickSightAnalysisFunnelChartFieldWells;
127274
+ Interactions?: QuickSightAnalysisVisualInteractionOptions;
127077
127275
  SortConfiguration?: QuickSightAnalysisFunnelChartSortConfiguration;
127078
127276
  Tooltip?: QuickSightAnalysisTooltipOptions;
127079
127277
  ValueLabelOptions?: QuickSightAnalysisChartAxisLabelOptions;
@@ -127156,6 +127354,20 @@ export type QuickSightAnalysisFunnelChartVisual = {
127156
127354
  export type QuickSightAnalysisGaugeChartArcConditionalFormatting = {
127157
127355
  ForegroundColor?: QuickSightAnalysisConditionalFormattingColor;
127158
127356
  };
127357
+ /**
127358
+ * Type definition for `AWS::QuickSight::Analysis.GaugeChartColorConfiguration`.
127359
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-gaugechartcolorconfiguration.html}
127360
+ */
127361
+ export type QuickSightAnalysisGaugeChartColorConfiguration = {
127362
+ /**
127363
+ * @pattern `^#[A-F0-9]{6}$`
127364
+ */
127365
+ BackgroundColor?: string;
127366
+ /**
127367
+ * @pattern `^#[A-F0-9]{6}$`
127368
+ */
127369
+ ForegroundColor?: string;
127370
+ };
127159
127371
  /**
127160
127372
  * Type definition for `AWS::QuickSight::Analysis.GaugeChartConditionalFormatting`.
127161
127373
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-gaugechartconditionalformatting.html}
@@ -127180,9 +127392,11 @@ export type QuickSightAnalysisGaugeChartConditionalFormattingOption = {
127180
127392
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-gaugechartconfiguration.html}
127181
127393
  */
127182
127394
  export type QuickSightAnalysisGaugeChartConfiguration = {
127395
+ ColorConfiguration?: QuickSightAnalysisGaugeChartColorConfiguration;
127183
127396
  DataLabels?: QuickSightAnalysisDataLabelOptions;
127184
127397
  FieldWells?: QuickSightAnalysisGaugeChartFieldWells;
127185
127398
  GaugeChartOptions?: QuickSightAnalysisGaugeChartOptions;
127399
+ Interactions?: QuickSightAnalysisVisualInteractionOptions;
127186
127400
  TooltipOptions?: QuickSightAnalysisTooltipOptions;
127187
127401
  VisualPalette?: QuickSightAnalysisVisualPalette;
127188
127402
  };
@@ -127874,6 +128088,7 @@ export type QuickSightAnalysisHeatMapConfiguration = {
127874
128088
  ColumnLabelOptions?: QuickSightAnalysisChartAxisLabelOptions;
127875
128089
  DataLabels?: QuickSightAnalysisDataLabelOptions;
127876
128090
  FieldWells?: QuickSightAnalysisHeatMapFieldWells;
128091
+ Interactions?: QuickSightAnalysisVisualInteractionOptions;
127877
128092
  Legend?: QuickSightAnalysisLegendOptions;
127878
128093
  RowLabelOptions?: QuickSightAnalysisChartAxisLabelOptions;
127879
128094
  SortConfiguration?: QuickSightAnalysisHeatMapSortConfiguration;
@@ -127968,6 +128183,7 @@ export type QuickSightAnalysisHistogramConfiguration = {
127968
128183
  BinOptions?: QuickSightAnalysisHistogramBinOptions;
127969
128184
  DataLabels?: QuickSightAnalysisDataLabelOptions;
127970
128185
  FieldWells?: QuickSightAnalysisHistogramFieldWells;
128186
+ Interactions?: QuickSightAnalysisVisualInteractionOptions;
127971
128187
  Tooltip?: QuickSightAnalysisTooltipOptions;
127972
128188
  VisualPalette?: QuickSightAnalysisVisualPalette;
127973
128189
  XAxisDisplayOptions?: QuickSightAnalysisAxisDisplayOptions;
@@ -128099,6 +128315,7 @@ export type QuickSightAnalysisInsightConfiguration = {
128099
128315
  */
128100
128316
  Computations?: QuickSightAnalysisComputation[];
128101
128317
  CustomNarrative?: QuickSightAnalysisCustomNarrativeOptions;
128318
+ Interactions?: QuickSightAnalysisVisualInteractionOptions;
128102
128319
  };
128103
128320
  /**
128104
128321
  * Type definition for `AWS::QuickSight::Analysis.InsightVisual`.
@@ -128237,6 +128454,7 @@ export type QuickSightAnalysisKPIConditionalFormattingOption = {
128237
128454
  */
128238
128455
  export type QuickSightAnalysisKPIConfiguration = {
128239
128456
  FieldWells?: QuickSightAnalysisKPIFieldWells;
128457
+ Interactions?: QuickSightAnalysisVisualInteractionOptions;
128240
128458
  KPIOptions?: QuickSightAnalysisKPIOptions;
128241
128459
  SortConfiguration?: QuickSightAnalysisKPISortConfiguration;
128242
128460
  };
@@ -128531,6 +128749,7 @@ export type QuickSightAnalysisLineChartConfiguration = {
128531
128749
  * @maxLength `10`
128532
128750
  */
128533
128751
  ForecastConfigurations?: QuickSightAnalysisForecastConfiguration[];
128752
+ Interactions?: QuickSightAnalysisVisualInteractionOptions;
128534
128753
  Legend?: QuickSightAnalysisLegendOptions;
128535
128754
  PrimaryYAxisDisplayOptions?: QuickSightAnalysisLineSeriesAxisDisplayOptions;
128536
128755
  PrimaryYAxisLabelOptions?: QuickSightAnalysisChartAxisLabelOptions;
@@ -129470,6 +129689,7 @@ export type QuickSightAnalysisPieChartConfiguration = {
129470
129689
  DataLabels?: QuickSightAnalysisDataLabelOptions;
129471
129690
  DonutOptions?: QuickSightAnalysisDonutOptions;
129472
129691
  FieldWells?: QuickSightAnalysisPieChartFieldWells;
129692
+ Interactions?: QuickSightAnalysisVisualInteractionOptions;
129473
129693
  Legend?: QuickSightAnalysisLegendOptions;
129474
129694
  SmallMultiplesOptions?: QuickSightAnalysisSmallMultiplesOptions;
129475
129695
  SortConfiguration?: QuickSightAnalysisPieChartSortConfiguration;
@@ -129620,6 +129840,7 @@ export type QuickSightAnalysisPivotTableConditionalFormattingScopeRole = "FIELD"
129620
129840
  export type QuickSightAnalysisPivotTableConfiguration = {
129621
129841
  FieldOptions?: QuickSightAnalysisPivotTableFieldOptions;
129622
129842
  FieldWells?: QuickSightAnalysisPivotTableFieldWells;
129843
+ Interactions?: QuickSightAnalysisVisualInteractionOptions;
129623
129844
  PaginatedReportOptions?: QuickSightAnalysisPivotTablePaginatedReportOptions;
129624
129845
  SortConfiguration?: QuickSightAnalysisPivotTableSortConfiguration;
129625
129846
  TableOptions?: QuickSightAnalysisPivotTableOptions;
@@ -130054,6 +130275,7 @@ export type QuickSightAnalysisRadarChartConfiguration = {
130054
130275
  ColorAxis?: QuickSightAnalysisAxisDisplayOptions;
130055
130276
  ColorLabelOptions?: QuickSightAnalysisChartAxisLabelOptions;
130056
130277
  FieldWells?: QuickSightAnalysisRadarChartFieldWells;
130278
+ Interactions?: QuickSightAnalysisVisualInteractionOptions;
130057
130279
  Legend?: QuickSightAnalysisLegendOptions;
130058
130280
  Shape?: QuickSightAnalysisRadarChartShape;
130059
130281
  SortConfiguration?: QuickSightAnalysisRadarChartSortConfiguration;
@@ -130405,6 +130627,7 @@ export type QuickSightAnalysisSankeyDiagramAggregatedFieldWells = {
130405
130627
  export type QuickSightAnalysisSankeyDiagramChartConfiguration = {
130406
130628
  DataLabels?: QuickSightAnalysisDataLabelOptions;
130407
130629
  FieldWells?: QuickSightAnalysisSankeyDiagramFieldWells;
130630
+ Interactions?: QuickSightAnalysisVisualInteractionOptions;
130408
130631
  SortConfiguration?: QuickSightAnalysisSankeyDiagramSortConfiguration;
130409
130632
  };
130410
130633
  /**
@@ -130490,7 +130713,9 @@ export type QuickSightAnalysisScatterPlotCategoricallyAggregatedFieldWells = {
130490
130713
  export type QuickSightAnalysisScatterPlotConfiguration = {
130491
130714
  DataLabels?: QuickSightAnalysisDataLabelOptions;
130492
130715
  FieldWells?: QuickSightAnalysisScatterPlotFieldWells;
130716
+ Interactions?: QuickSightAnalysisVisualInteractionOptions;
130493
130717
  Legend?: QuickSightAnalysisLegendOptions;
130718
+ SortConfiguration?: QuickSightAnalysisScatterPlotSortConfiguration;
130494
130719
  Tooltip?: QuickSightAnalysisTooltipOptions;
130495
130720
  VisualPalette?: QuickSightAnalysisVisualPalette;
130496
130721
  XAxisDisplayOptions?: QuickSightAnalysisAxisDisplayOptions;
@@ -130506,6 +130731,13 @@ export type QuickSightAnalysisScatterPlotFieldWells = {
130506
130731
  ScatterPlotCategoricallyAggregatedFieldWells?: QuickSightAnalysisScatterPlotCategoricallyAggregatedFieldWells;
130507
130732
  ScatterPlotUnaggregatedFieldWells?: QuickSightAnalysisScatterPlotUnaggregatedFieldWells;
130508
130733
  };
130734
+ /**
130735
+ * Type definition for `AWS::QuickSight::Analysis.ScatterPlotSortConfiguration`.
130736
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-scatterplotsortconfiguration.html}
130737
+ */
130738
+ export type QuickSightAnalysisScatterPlotSortConfiguration = {
130739
+ ScatterPlotLimitConfiguration?: QuickSightAnalysisItemsLimitConfiguration;
130740
+ };
130509
130741
  /**
130510
130742
  * Type definition for `AWS::QuickSight::Analysis.ScatterPlotUnaggregatedFieldWells`.
130511
130743
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-scatterplotunaggregatedfieldwells.html}
@@ -130950,6 +131182,7 @@ export type QuickSightAnalysisSheetTextBox = {
130950
131182
  * @maxLength `150000`
130951
131183
  */
130952
131184
  Content?: string;
131185
+ Interactions?: any;
130953
131186
  /**
130954
131187
  * @minLength `1`
130955
131188
  * @maxLength `512`
@@ -131349,6 +131582,7 @@ export type QuickSightAnalysisTableConditionalFormattingOption = {
131349
131582
  export type QuickSightAnalysisTableConfiguration = {
131350
131583
  FieldOptions?: QuickSightAnalysisTableFieldOptions;
131351
131584
  FieldWells?: QuickSightAnalysisTableFieldWells;
131585
+ Interactions?: QuickSightAnalysisVisualInteractionOptions;
131352
131586
  PaginatedReportOptions?: QuickSightAnalysisTablePaginatedReportOptions;
131353
131587
  SortConfiguration?: QuickSightAnalysisTableSortConfiguration;
131354
131588
  /**
@@ -131653,6 +131887,7 @@ export type QuickSightAnalysisTextWrap = "NONE" | "WRAP";
131653
131887
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-thousandseparatoroptions.html}
131654
131888
  */
131655
131889
  export type QuickSightAnalysisThousandSeparatorOptions = {
131890
+ GroupingStyle?: QuickSightAnalysisDigitGroupingStyle;
131656
131891
  Symbol?: QuickSightAnalysisNumericSeparatorSymbol;
131657
131892
  Visibility?: QuickSightAnalysisVisibility;
131658
131893
  };
@@ -131945,6 +132180,7 @@ export type QuickSightAnalysisTreeMapConfiguration = {
131945
132180
  DataLabels?: QuickSightAnalysisDataLabelOptions;
131946
132181
  FieldWells?: QuickSightAnalysisTreeMapFieldWells;
131947
132182
  GroupLabelOptions?: QuickSightAnalysisChartAxisLabelOptions;
132183
+ Interactions?: QuickSightAnalysisVisualInteractionOptions;
131948
132184
  Legend?: QuickSightAnalysisLegendOptions;
131949
132185
  SizeLabelOptions?: QuickSightAnalysisChartAxisLabelOptions;
131950
132186
  SortConfiguration?: QuickSightAnalysisTreeMapSortConfiguration;
@@ -132148,8 +132384,15 @@ export type QuickSightAnalysisVisualCustomActionTrigger = "DATA_POINT_CLICK" | "
132148
132384
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-visualinteractionoptions.html}
132149
132385
  */
132150
132386
  export type QuickSightAnalysisVisualInteractionOptions = {
132151
- ContextMenuOption?: any;
132152
- VisualMenuOption?: any;
132387
+ ContextMenuOption?: QuickSightAnalysisContextMenuOption;
132388
+ VisualMenuOption?: QuickSightAnalysisVisualMenuOption;
132389
+ };
132390
+ /**
132391
+ * Type definition for `AWS::QuickSight::Analysis.VisualMenuOption`.
132392
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-visualmenuoption.html}
132393
+ */
132394
+ export type QuickSightAnalysisVisualMenuOption = {
132395
+ AvailabilityStatus?: QuickSightAnalysisDashboardBehavior;
132153
132396
  };
132154
132397
  /**
132155
132398
  * Type definition for `AWS::QuickSight::Analysis.VisualPalette`.
@@ -132220,6 +132463,7 @@ export type QuickSightAnalysisWaterfallChartConfiguration = {
132220
132463
  ColorConfiguration?: QuickSightAnalysisWaterfallChartColorConfiguration;
132221
132464
  DataLabels?: QuickSightAnalysisDataLabelOptions;
132222
132465
  FieldWells?: QuickSightAnalysisWaterfallChartFieldWells;
132466
+ Interactions?: QuickSightAnalysisVisualInteractionOptions;
132223
132467
  Legend?: QuickSightAnalysisLegendOptions;
132224
132468
  PrimaryYAxisDisplayOptions?: QuickSightAnalysisAxisDisplayOptions;
132225
132469
  PrimaryYAxisLabelOptions?: QuickSightAnalysisChartAxisLabelOptions;
@@ -132346,6 +132590,7 @@ export type QuickSightAnalysisWordCloudAggregatedFieldWells = {
132346
132590
  export type QuickSightAnalysisWordCloudChartConfiguration = {
132347
132591
  CategoryLabelOptions?: QuickSightAnalysisChartAxisLabelOptions;
132348
132592
  FieldWells?: QuickSightAnalysisWordCloudFieldWells;
132593
+ Interactions?: QuickSightAnalysisVisualInteractionOptions;
132349
132594
  SortConfiguration?: QuickSightAnalysisWordCloudSortConfiguration;
132350
132595
  WordCloudOptions?: QuickSightAnalysisWordCloudOptions;
132351
132596
  };
@@ -132955,6 +133200,7 @@ export type QuickSightDashboardBarChartConfiguration = {
132955
133200
  ContributionAnalysisDefaults?: QuickSightDashboardContributionAnalysisDefault[];
132956
133201
  DataLabels?: QuickSightDashboardDataLabelOptions;
132957
133202
  FieldWells?: QuickSightDashboardBarChartFieldWells;
133203
+ Interactions?: QuickSightDashboardVisualInteractionOptions;
132958
133204
  Legend?: QuickSightDashboardLegendOptions;
132959
133205
  Orientation?: QuickSightDashboardBarChartOrientation;
132960
133206
  /**
@@ -133077,6 +133323,7 @@ export type QuickSightDashboardBinWidthOptions = {
133077
133323
  export type QuickSightDashboardBodySectionConfiguration = {
133078
133324
  Content: QuickSightDashboardBodySectionContent;
133079
133325
  PageBreakConfiguration?: QuickSightDashboardSectionPageBreakConfiguration;
133326
+ RepeatConfiguration?: QuickSightDashboardBodySectionRepeatConfiguration;
133080
133327
  /**
133081
133328
  * @minLength `1`
133082
133329
  * @maxLength `512`
@@ -133092,6 +133339,72 @@ export type QuickSightDashboardBodySectionConfiguration = {
133092
133339
  export type QuickSightDashboardBodySectionContent = {
133093
133340
  Layout?: QuickSightDashboardSectionLayoutConfiguration;
133094
133341
  };
133342
+ /**
133343
+ * Type definition for `AWS::QuickSight::Dashboard.BodySectionDynamicCategoryDimensionConfiguration`.
133344
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-bodysectiondynamiccategorydimensionconfiguration.html}
133345
+ */
133346
+ export type QuickSightDashboardBodySectionDynamicCategoryDimensionConfiguration = {
133347
+ Column: QuickSightDashboardColumnIdentifier;
133348
+ /**
133349
+ * @min `1`
133350
+ * @max `1000`
133351
+ */
133352
+ Limit?: number;
133353
+ /**
133354
+ * @minLength `0`
133355
+ * @maxLength `100`
133356
+ */
133357
+ SortByMetrics?: QuickSightDashboardColumnSort[];
133358
+ };
133359
+ /**
133360
+ * Type definition for `AWS::QuickSight::Dashboard.BodySectionDynamicNumericDimensionConfiguration`.
133361
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-bodysectiondynamicnumericdimensionconfiguration.html}
133362
+ */
133363
+ export type QuickSightDashboardBodySectionDynamicNumericDimensionConfiguration = {
133364
+ Column: QuickSightDashboardColumnIdentifier;
133365
+ /**
133366
+ * @min `1`
133367
+ * @max `1000`
133368
+ */
133369
+ Limit?: number;
133370
+ /**
133371
+ * @minLength `0`
133372
+ * @maxLength `100`
133373
+ */
133374
+ SortByMetrics?: QuickSightDashboardColumnSort[];
133375
+ };
133376
+ /**
133377
+ * Type definition for `AWS::QuickSight::Dashboard.BodySectionRepeatConfiguration`.
133378
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-bodysectionrepeatconfiguration.html}
133379
+ */
133380
+ export type QuickSightDashboardBodySectionRepeatConfiguration = {
133381
+ /**
133382
+ * @minLength `0`
133383
+ * @maxLength `3`
133384
+ */
133385
+ DimensionConfigurations?: QuickSightDashboardBodySectionRepeatDimensionConfiguration[];
133386
+ /**
133387
+ * @minLength `0`
133388
+ * @maxLength `20`
133389
+ */
133390
+ NonRepeatingVisuals?: string[];
133391
+ PageBreakConfiguration?: QuickSightDashboardBodySectionRepeatPageBreakConfiguration;
133392
+ };
133393
+ /**
133394
+ * Type definition for `AWS::QuickSight::Dashboard.BodySectionRepeatDimensionConfiguration`.
133395
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-bodysectionrepeatdimensionconfiguration.html}
133396
+ */
133397
+ export type QuickSightDashboardBodySectionRepeatDimensionConfiguration = {
133398
+ DynamicCategoryDimensionConfiguration?: QuickSightDashboardBodySectionDynamicCategoryDimensionConfiguration;
133399
+ DynamicNumericDimensionConfiguration?: QuickSightDashboardBodySectionDynamicNumericDimensionConfiguration;
133400
+ };
133401
+ /**
133402
+ * Type definition for `AWS::QuickSight::Dashboard.BodySectionRepeatPageBreakConfiguration`.
133403
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-bodysectionrepeatpagebreakconfiguration.html}
133404
+ */
133405
+ export type QuickSightDashboardBodySectionRepeatPageBreakConfiguration = {
133406
+ After?: QuickSightDashboardSectionAfterPageBreak;
133407
+ };
133095
133408
  /**
133096
133409
  * Type definition for `AWS::QuickSight::Dashboard.BoxPlotAggregatedFieldWells`.
133097
133410
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-boxplotaggregatedfieldwells.html}
@@ -133117,6 +133430,7 @@ export type QuickSightDashboardBoxPlotChartConfiguration = {
133117
133430
  CategoryAxis?: QuickSightDashboardAxisDisplayOptions;
133118
133431
  CategoryLabelOptions?: QuickSightDashboardChartAxisLabelOptions;
133119
133432
  FieldWells?: QuickSightDashboardBoxPlotFieldWells;
133433
+ Interactions?: QuickSightDashboardVisualInteractionOptions;
133120
133434
  Legend?: QuickSightDashboardLegendOptions;
133121
133435
  PrimaryYAxisDisplayOptions?: QuickSightDashboardAxisDisplayOptions;
133122
133436
  PrimaryYAxisLabelOptions?: QuickSightDashboardChartAxisLabelOptions;
@@ -133500,6 +133814,7 @@ export type QuickSightDashboardComboChartConfiguration = {
133500
133814
  CategoryLabelOptions?: QuickSightDashboardChartAxisLabelOptions;
133501
133815
  ColorLabelOptions?: QuickSightDashboardChartAxisLabelOptions;
133502
133816
  FieldWells?: QuickSightDashboardComboChartFieldWells;
133817
+ Interactions?: QuickSightDashboardVisualInteractionOptions;
133503
133818
  Legend?: QuickSightDashboardLegendOptions;
133504
133819
  LineDataLabels?: QuickSightDashboardDataLabelOptions;
133505
133820
  PrimaryYAxisDisplayOptions?: QuickSightDashboardAxisDisplayOptions;
@@ -133713,6 +134028,13 @@ export type QuickSightDashboardConditionalFormattingSolidColor = {
133713
134028
  */
133714
134029
  Expression: string;
133715
134030
  };
134031
+ /**
134032
+ * Type definition for `AWS::QuickSight::Dashboard.ContextMenuOption`.
134033
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-contextmenuoption.html}
134034
+ */
134035
+ export type QuickSightDashboardContextMenuOption = {
134036
+ AvailabilityStatus?: QuickSightDashboardDashboardBehavior;
134037
+ };
133716
134038
  /**
133717
134039
  * Type definition for `AWS::QuickSight::Dashboard.ContributionAnalysisDefault`.
133718
134040
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-contributionanalysisdefault.html}
@@ -133825,6 +134147,7 @@ export type QuickSightDashboardCustomContentConfiguration = {
133825
134147
  */
133826
134148
  ContentUrl?: string;
133827
134149
  ImageScaling?: QuickSightDashboardCustomContentImageScalingConfiguration;
134150
+ Interactions?: QuickSightDashboardVisualInteractionOptions;
133828
134151
  };
133829
134152
  /**
133830
134153
  * Type definition for `AWS::QuickSight::Dashboard.CustomContentImageScalingConfiguration`.
@@ -134496,11 +134819,13 @@ export type QuickSightDashboardDateTimeParameterDeclaration = {
134496
134819
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-datetimepickercontroldisplayoptions.html}
134497
134820
  */
134498
134821
  export type QuickSightDashboardDateTimePickerControlDisplayOptions = {
134822
+ DateIconVisibility?: QuickSightDashboardVisibility;
134499
134823
  /**
134500
134824
  * @minLength `1`
134501
134825
  * @maxLength `128`
134502
134826
  */
134503
134827
  DateTimeFormat?: string;
134828
+ HelperTextVisibility?: QuickSightDashboardVisibility;
134504
134829
  InfoIconLabelOptions?: QuickSightDashboardSheetControlInfoIconLabelOptions;
134505
134830
  TitleOptions?: QuickSightDashboardLabelOptions;
134506
134831
  };
@@ -134735,6 +135060,11 @@ export type QuickSightDashboardDestinationParameterValueConfiguration = {
134735
135060
  SourceField?: string;
134736
135061
  SourceParameterName?: string;
134737
135062
  };
135063
+ /**
135064
+ * Type definition for `AWS::QuickSight::Dashboard.DigitGroupingStyle`.
135065
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-digitgroupingstyle.html}
135066
+ */
135067
+ export type QuickSightDashboardDigitGroupingStyle = "DEFAULT" | "LAKHS";
134738
135068
  /**
134739
135069
  * Type definition for `AWS::QuickSight::Dashboard.DimensionField`.
134740
135070
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-dimensionfield.html}
@@ -134984,6 +135314,7 @@ export type QuickSightDashboardFilledMapConditionalFormattingOption = {
134984
135314
  */
134985
135315
  export type QuickSightDashboardFilledMapConfiguration = {
134986
135316
  FieldWells?: QuickSightDashboardFilledMapFieldWells;
135317
+ Interactions?: QuickSightDashboardVisualInteractionOptions;
134987
135318
  Legend?: QuickSightDashboardLegendOptions;
134988
135319
  MapStyleOptions?: QuickSightDashboardGeospatialMapStyleOptions;
134989
135320
  SortConfiguration?: QuickSightDashboardFilledMapSortConfiguration;
@@ -135383,6 +135714,7 @@ export type QuickSightDashboardFontConfiguration = {
135383
135714
  */
135384
135715
  FontColor?: string;
135385
135716
  FontDecoration?: QuickSightDashboardFontDecoration;
135717
+ FontFamily?: string;
135386
135718
  FontSize?: QuickSightDashboardFontSize;
135387
135719
  FontStyle?: QuickSightDashboardFontStyle;
135388
135720
  FontWeight?: QuickSightDashboardFontWeight;
@@ -135613,6 +135945,7 @@ export type QuickSightDashboardFunnelChartConfiguration = {
135613
135945
  CategoryLabelOptions?: QuickSightDashboardChartAxisLabelOptions;
135614
135946
  DataLabelOptions?: QuickSightDashboardFunnelChartDataLabelOptions;
135615
135947
  FieldWells?: QuickSightDashboardFunnelChartFieldWells;
135948
+ Interactions?: QuickSightDashboardVisualInteractionOptions;
135616
135949
  SortConfiguration?: QuickSightDashboardFunnelChartSortConfiguration;
135617
135950
  Tooltip?: QuickSightDashboardTooltipOptions;
135618
135951
  ValueLabelOptions?: QuickSightDashboardChartAxisLabelOptions;
@@ -135695,6 +136028,20 @@ export type QuickSightDashboardFunnelChartVisual = {
135695
136028
  export type QuickSightDashboardGaugeChartArcConditionalFormatting = {
135696
136029
  ForegroundColor?: QuickSightDashboardConditionalFormattingColor;
135697
136030
  };
136031
+ /**
136032
+ * Type definition for `AWS::QuickSight::Dashboard.GaugeChartColorConfiguration`.
136033
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-gaugechartcolorconfiguration.html}
136034
+ */
136035
+ export type QuickSightDashboardGaugeChartColorConfiguration = {
136036
+ /**
136037
+ * @pattern `^#[A-F0-9]{6}$`
136038
+ */
136039
+ BackgroundColor?: string;
136040
+ /**
136041
+ * @pattern `^#[A-F0-9]{6}$`
136042
+ */
136043
+ ForegroundColor?: string;
136044
+ };
135698
136045
  /**
135699
136046
  * Type definition for `AWS::QuickSight::Dashboard.GaugeChartConditionalFormatting`.
135700
136047
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-gaugechartconditionalformatting.html}
@@ -135719,9 +136066,11 @@ export type QuickSightDashboardGaugeChartConditionalFormattingOption = {
135719
136066
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-gaugechartconfiguration.html}
135720
136067
  */
135721
136068
  export type QuickSightDashboardGaugeChartConfiguration = {
136069
+ ColorConfiguration?: QuickSightDashboardGaugeChartColorConfiguration;
135722
136070
  DataLabels?: QuickSightDashboardDataLabelOptions;
135723
136071
  FieldWells?: QuickSightDashboardGaugeChartFieldWells;
135724
136072
  GaugeChartOptions?: QuickSightDashboardGaugeChartOptions;
136073
+ Interactions?: QuickSightDashboardVisualInteractionOptions;
135725
136074
  TooltipOptions?: QuickSightDashboardTooltipOptions;
135726
136075
  VisualPalette?: QuickSightDashboardVisualPalette;
135727
136076
  };
@@ -136413,6 +136762,7 @@ export type QuickSightDashboardHeatMapConfiguration = {
136413
136762
  ColumnLabelOptions?: QuickSightDashboardChartAxisLabelOptions;
136414
136763
  DataLabels?: QuickSightDashboardDataLabelOptions;
136415
136764
  FieldWells?: QuickSightDashboardHeatMapFieldWells;
136765
+ Interactions?: QuickSightDashboardVisualInteractionOptions;
136416
136766
  Legend?: QuickSightDashboardLegendOptions;
136417
136767
  RowLabelOptions?: QuickSightDashboardChartAxisLabelOptions;
136418
136768
  SortConfiguration?: QuickSightDashboardHeatMapSortConfiguration;
@@ -136507,6 +136857,7 @@ export type QuickSightDashboardHistogramConfiguration = {
136507
136857
  BinOptions?: QuickSightDashboardHistogramBinOptions;
136508
136858
  DataLabels?: QuickSightDashboardDataLabelOptions;
136509
136859
  FieldWells?: QuickSightDashboardHistogramFieldWells;
136860
+ Interactions?: QuickSightDashboardVisualInteractionOptions;
136510
136861
  Tooltip?: QuickSightDashboardTooltipOptions;
136511
136862
  VisualPalette?: QuickSightDashboardVisualPalette;
136512
136863
  XAxisDisplayOptions?: QuickSightDashboardAxisDisplayOptions;
@@ -136638,6 +136989,7 @@ export type QuickSightDashboardInsightConfiguration = {
136638
136989
  */
136639
136990
  Computations?: QuickSightDashboardComputation[];
136640
136991
  CustomNarrative?: QuickSightDashboardCustomNarrativeOptions;
136992
+ Interactions?: QuickSightDashboardVisualInteractionOptions;
136641
136993
  };
136642
136994
  /**
136643
136995
  * Type definition for `AWS::QuickSight::Dashboard.InsightVisual`.
@@ -136776,6 +137128,7 @@ export type QuickSightDashboardKPIConditionalFormattingOption = {
136776
137128
  */
136777
137129
  export type QuickSightDashboardKPIConfiguration = {
136778
137130
  FieldWells?: QuickSightDashboardKPIFieldWells;
137131
+ Interactions?: QuickSightDashboardVisualInteractionOptions;
136779
137132
  KPIOptions?: QuickSightDashboardKPIOptions;
136780
137133
  SortConfiguration?: QuickSightDashboardKPISortConfiguration;
136781
137134
  };
@@ -137070,6 +137423,7 @@ export type QuickSightDashboardLineChartConfiguration = {
137070
137423
  * @maxLength `10`
137071
137424
  */
137072
137425
  ForecastConfigurations?: QuickSightDashboardForecastConfiguration[];
137426
+ Interactions?: QuickSightDashboardVisualInteractionOptions;
137073
137427
  Legend?: QuickSightDashboardLegendOptions;
137074
137428
  PrimaryYAxisDisplayOptions?: QuickSightDashboardLineSeriesAxisDisplayOptions;
137075
137429
  PrimaryYAxisLabelOptions?: QuickSightDashboardChartAxisLabelOptions;
@@ -138020,6 +138374,7 @@ export type QuickSightDashboardPieChartConfiguration = {
138020
138374
  DataLabels?: QuickSightDashboardDataLabelOptions;
138021
138375
  DonutOptions?: QuickSightDashboardDonutOptions;
138022
138376
  FieldWells?: QuickSightDashboardPieChartFieldWells;
138377
+ Interactions?: QuickSightDashboardVisualInteractionOptions;
138023
138378
  Legend?: QuickSightDashboardLegendOptions;
138024
138379
  SmallMultiplesOptions?: QuickSightDashboardSmallMultiplesOptions;
138025
138380
  SortConfiguration?: QuickSightDashboardPieChartSortConfiguration;
@@ -138170,6 +138525,7 @@ export type QuickSightDashboardPivotTableConditionalFormattingScopeRole = "FIELD
138170
138525
  export type QuickSightDashboardPivotTableConfiguration = {
138171
138526
  FieldOptions?: QuickSightDashboardPivotTableFieldOptions;
138172
138527
  FieldWells?: QuickSightDashboardPivotTableFieldWells;
138528
+ Interactions?: QuickSightDashboardVisualInteractionOptions;
138173
138529
  PaginatedReportOptions?: QuickSightDashboardPivotTablePaginatedReportOptions;
138174
138530
  SortConfiguration?: QuickSightDashboardPivotTableSortConfiguration;
138175
138531
  TableOptions?: QuickSightDashboardPivotTableOptions;
@@ -138592,6 +138948,7 @@ export type QuickSightDashboardRadarChartConfiguration = {
138592
138948
  ColorAxis?: QuickSightDashboardAxisDisplayOptions;
138593
138949
  ColorLabelOptions?: QuickSightDashboardChartAxisLabelOptions;
138594
138950
  FieldWells?: QuickSightDashboardRadarChartFieldWells;
138951
+ Interactions?: QuickSightDashboardVisualInteractionOptions;
138595
138952
  Legend?: QuickSightDashboardLegendOptions;
138596
138953
  Shape?: QuickSightDashboardRadarChartShape;
138597
138954
  SortConfiguration?: QuickSightDashboardRadarChartSortConfiguration;
@@ -138943,6 +139300,7 @@ export type QuickSightDashboardSankeyDiagramAggregatedFieldWells = {
138943
139300
  export type QuickSightDashboardSankeyDiagramChartConfiguration = {
138944
139301
  DataLabels?: QuickSightDashboardDataLabelOptions;
138945
139302
  FieldWells?: QuickSightDashboardSankeyDiagramFieldWells;
139303
+ Interactions?: QuickSightDashboardVisualInteractionOptions;
138946
139304
  SortConfiguration?: QuickSightDashboardSankeyDiagramSortConfiguration;
138947
139305
  };
138948
139306
  /**
@@ -139028,7 +139386,9 @@ export type QuickSightDashboardScatterPlotCategoricallyAggregatedFieldWells = {
139028
139386
  export type QuickSightDashboardScatterPlotConfiguration = {
139029
139387
  DataLabels?: QuickSightDashboardDataLabelOptions;
139030
139388
  FieldWells?: QuickSightDashboardScatterPlotFieldWells;
139389
+ Interactions?: QuickSightDashboardVisualInteractionOptions;
139031
139390
  Legend?: QuickSightDashboardLegendOptions;
139391
+ SortConfiguration?: QuickSightDashboardScatterPlotSortConfiguration;
139032
139392
  Tooltip?: QuickSightDashboardTooltipOptions;
139033
139393
  VisualPalette?: QuickSightDashboardVisualPalette;
139034
139394
  XAxisDisplayOptions?: QuickSightDashboardAxisDisplayOptions;
@@ -139044,6 +139404,13 @@ export type QuickSightDashboardScatterPlotFieldWells = {
139044
139404
  ScatterPlotCategoricallyAggregatedFieldWells?: QuickSightDashboardScatterPlotCategoricallyAggregatedFieldWells;
139045
139405
  ScatterPlotUnaggregatedFieldWells?: QuickSightDashboardScatterPlotUnaggregatedFieldWells;
139046
139406
  };
139407
+ /**
139408
+ * Type definition for `AWS::QuickSight::Dashboard.ScatterPlotSortConfiguration`.
139409
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-scatterplotsortconfiguration.html}
139410
+ */
139411
+ export type QuickSightDashboardScatterPlotSortConfiguration = {
139412
+ ScatterPlotLimitConfiguration?: QuickSightDashboardItemsLimitConfiguration;
139413
+ };
139047
139414
  /**
139048
139415
  * Type definition for `AWS::QuickSight::Dashboard.ScatterPlotUnaggregatedFieldWells`.
139049
139416
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-scatterplotunaggregatedfieldwells.html}
@@ -139504,6 +139871,7 @@ export type QuickSightDashboardSheetTextBox = {
139504
139871
  * @maxLength `150000`
139505
139872
  */
139506
139873
  Content?: string;
139874
+ Interactions?: any;
139507
139875
  /**
139508
139876
  * @minLength `1`
139509
139877
  * @maxLength `512`
@@ -139903,6 +140271,7 @@ export type QuickSightDashboardTableConditionalFormattingOption = {
139903
140271
  export type QuickSightDashboardTableConfiguration = {
139904
140272
  FieldOptions?: QuickSightDashboardTableFieldOptions;
139905
140273
  FieldWells?: QuickSightDashboardTableFieldWells;
140274
+ Interactions?: QuickSightDashboardVisualInteractionOptions;
139906
140275
  PaginatedReportOptions?: QuickSightDashboardTablePaginatedReportOptions;
139907
140276
  SortConfiguration?: QuickSightDashboardTableSortConfiguration;
139908
140277
  /**
@@ -140207,6 +140576,7 @@ export type QuickSightDashboardTextWrap = "NONE" | "WRAP";
140207
140576
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-thousandseparatoroptions.html}
140208
140577
  */
140209
140578
  export type QuickSightDashboardThousandSeparatorOptions = {
140579
+ GroupingStyle?: QuickSightDashboardDigitGroupingStyle;
140210
140580
  Symbol?: QuickSightDashboardNumericSeparatorSymbol;
140211
140581
  Visibility?: QuickSightDashboardVisibility;
140212
140582
  };
@@ -140499,6 +140869,7 @@ export type QuickSightDashboardTreeMapConfiguration = {
140499
140869
  DataLabels?: QuickSightDashboardDataLabelOptions;
140500
140870
  FieldWells?: QuickSightDashboardTreeMapFieldWells;
140501
140871
  GroupLabelOptions?: QuickSightDashboardChartAxisLabelOptions;
140872
+ Interactions?: QuickSightDashboardVisualInteractionOptions;
140502
140873
  Legend?: QuickSightDashboardLegendOptions;
140503
140874
  SizeLabelOptions?: QuickSightDashboardChartAxisLabelOptions;
140504
140875
  SortConfiguration?: QuickSightDashboardTreeMapSortConfiguration;
@@ -140709,7 +141080,7 @@ export type QuickSightDashboardVisualCustomActionTrigger = "DATA_POINT_CLICK" |
140709
141080
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualinteractionoptions.html}
140710
141081
  */
140711
141082
  export type QuickSightDashboardVisualInteractionOptions = {
140712
- ContextMenuOption?: any;
141083
+ ContextMenuOption?: QuickSightDashboardContextMenuOption;
140713
141084
  VisualMenuOption?: QuickSightDashboardVisualMenuOption;
140714
141085
  };
140715
141086
  /**
@@ -140788,6 +141159,7 @@ export type QuickSightDashboardWaterfallChartConfiguration = {
140788
141159
  ColorConfiguration?: QuickSightDashboardWaterfallChartColorConfiguration;
140789
141160
  DataLabels?: QuickSightDashboardDataLabelOptions;
140790
141161
  FieldWells?: QuickSightDashboardWaterfallChartFieldWells;
141162
+ Interactions?: QuickSightDashboardVisualInteractionOptions;
140791
141163
  Legend?: QuickSightDashboardLegendOptions;
140792
141164
  PrimaryYAxisDisplayOptions?: QuickSightDashboardAxisDisplayOptions;
140793
141165
  PrimaryYAxisLabelOptions?: QuickSightDashboardChartAxisLabelOptions;
@@ -140914,6 +141286,7 @@ export type QuickSightDashboardWordCloudAggregatedFieldWells = {
140914
141286
  export type QuickSightDashboardWordCloudChartConfiguration = {
140915
141287
  CategoryLabelOptions?: QuickSightDashboardChartAxisLabelOptions;
140916
141288
  FieldWells?: QuickSightDashboardWordCloudFieldWells;
141289
+ Interactions?: QuickSightDashboardVisualInteractionOptions;
140917
141290
  SortConfiguration?: QuickSightDashboardWordCloudSortConfiguration;
140918
141291
  WordCloudOptions?: QuickSightDashboardWordCloudOptions;
140919
141292
  };
@@ -143798,6 +144171,7 @@ export type QuickSightTemplateBarChartConfiguration = {
143798
144171
  ContributionAnalysisDefaults?: QuickSightTemplateContributionAnalysisDefault[];
143799
144172
  DataLabels?: QuickSightTemplateDataLabelOptions;
143800
144173
  FieldWells?: QuickSightTemplateBarChartFieldWells;
144174
+ Interactions?: QuickSightTemplateVisualInteractionOptions;
143801
144175
  Legend?: QuickSightTemplateLegendOptions;
143802
144176
  Orientation?: QuickSightTemplateBarChartOrientation;
143803
144177
  /**
@@ -143920,6 +144294,7 @@ export type QuickSightTemplateBinWidthOptions = {
143920
144294
  export type QuickSightTemplateBodySectionConfiguration = {
143921
144295
  Content: QuickSightTemplateBodySectionContent;
143922
144296
  PageBreakConfiguration?: QuickSightTemplateSectionPageBreakConfiguration;
144297
+ RepeatConfiguration?: QuickSightTemplateBodySectionRepeatConfiguration;
143923
144298
  /**
143924
144299
  * @minLength `1`
143925
144300
  * @maxLength `512`
@@ -143935,6 +144310,72 @@ export type QuickSightTemplateBodySectionConfiguration = {
143935
144310
  export type QuickSightTemplateBodySectionContent = {
143936
144311
  Layout?: QuickSightTemplateSectionLayoutConfiguration;
143937
144312
  };
144313
+ /**
144314
+ * Type definition for `AWS::QuickSight::Template.BodySectionDynamicCategoryDimensionConfiguration`.
144315
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-bodysectiondynamiccategorydimensionconfiguration.html}
144316
+ */
144317
+ export type QuickSightTemplateBodySectionDynamicCategoryDimensionConfiguration = {
144318
+ Column: QuickSightTemplateColumnIdentifier;
144319
+ /**
144320
+ * @min `1`
144321
+ * @max `1000`
144322
+ */
144323
+ Limit?: number;
144324
+ /**
144325
+ * @minLength `0`
144326
+ * @maxLength `100`
144327
+ */
144328
+ SortByMetrics?: QuickSightTemplateColumnSort[];
144329
+ };
144330
+ /**
144331
+ * Type definition for `AWS::QuickSight::Template.BodySectionDynamicNumericDimensionConfiguration`.
144332
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-bodysectiondynamicnumericdimensionconfiguration.html}
144333
+ */
144334
+ export type QuickSightTemplateBodySectionDynamicNumericDimensionConfiguration = {
144335
+ Column: QuickSightTemplateColumnIdentifier;
144336
+ /**
144337
+ * @min `1`
144338
+ * @max `1000`
144339
+ */
144340
+ Limit?: number;
144341
+ /**
144342
+ * @minLength `0`
144343
+ * @maxLength `100`
144344
+ */
144345
+ SortByMetrics?: QuickSightTemplateColumnSort[];
144346
+ };
144347
+ /**
144348
+ * Type definition for `AWS::QuickSight::Template.BodySectionRepeatConfiguration`.
144349
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-bodysectionrepeatconfiguration.html}
144350
+ */
144351
+ export type QuickSightTemplateBodySectionRepeatConfiguration = {
144352
+ /**
144353
+ * @minLength `0`
144354
+ * @maxLength `3`
144355
+ */
144356
+ DimensionConfigurations?: QuickSightTemplateBodySectionRepeatDimensionConfiguration[];
144357
+ /**
144358
+ * @minLength `0`
144359
+ * @maxLength `20`
144360
+ */
144361
+ NonRepeatingVisuals?: string[];
144362
+ PageBreakConfiguration?: QuickSightTemplateBodySectionRepeatPageBreakConfiguration;
144363
+ };
144364
+ /**
144365
+ * Type definition for `AWS::QuickSight::Template.BodySectionRepeatDimensionConfiguration`.
144366
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-bodysectionrepeatdimensionconfiguration.html}
144367
+ */
144368
+ export type QuickSightTemplateBodySectionRepeatDimensionConfiguration = {
144369
+ DynamicCategoryDimensionConfiguration?: QuickSightTemplateBodySectionDynamicCategoryDimensionConfiguration;
144370
+ DynamicNumericDimensionConfiguration?: QuickSightTemplateBodySectionDynamicNumericDimensionConfiguration;
144371
+ };
144372
+ /**
144373
+ * Type definition for `AWS::QuickSight::Template.BodySectionRepeatPageBreakConfiguration`.
144374
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-bodysectionrepeatpagebreakconfiguration.html}
144375
+ */
144376
+ export type QuickSightTemplateBodySectionRepeatPageBreakConfiguration = {
144377
+ After?: QuickSightTemplateSectionAfterPageBreak;
144378
+ };
143938
144379
  /**
143939
144380
  * Type definition for `AWS::QuickSight::Template.BoxPlotAggregatedFieldWells`.
143940
144381
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-boxplotaggregatedfieldwells.html}
@@ -143960,6 +144401,7 @@ export type QuickSightTemplateBoxPlotChartConfiguration = {
143960
144401
  CategoryAxis?: QuickSightTemplateAxisDisplayOptions;
143961
144402
  CategoryLabelOptions?: QuickSightTemplateChartAxisLabelOptions;
143962
144403
  FieldWells?: QuickSightTemplateBoxPlotFieldWells;
144404
+ Interactions?: QuickSightTemplateVisualInteractionOptions;
143963
144405
  Legend?: QuickSightTemplateLegendOptions;
143964
144406
  PrimaryYAxisDisplayOptions?: QuickSightTemplateAxisDisplayOptions;
143965
144407
  PrimaryYAxisLabelOptions?: QuickSightTemplateChartAxisLabelOptions;
@@ -144390,6 +144832,7 @@ export type QuickSightTemplateComboChartConfiguration = {
144390
144832
  CategoryLabelOptions?: QuickSightTemplateChartAxisLabelOptions;
144391
144833
  ColorLabelOptions?: QuickSightTemplateChartAxisLabelOptions;
144392
144834
  FieldWells?: QuickSightTemplateComboChartFieldWells;
144835
+ Interactions?: QuickSightTemplateVisualInteractionOptions;
144393
144836
  Legend?: QuickSightTemplateLegendOptions;
144394
144837
  LineDataLabels?: QuickSightTemplateDataLabelOptions;
144395
144838
  PrimaryYAxisDisplayOptions?: QuickSightTemplateAxisDisplayOptions;
@@ -144603,6 +145046,13 @@ export type QuickSightTemplateConditionalFormattingSolidColor = {
144603
145046
  */
144604
145047
  Expression: string;
144605
145048
  };
145049
+ /**
145050
+ * Type definition for `AWS::QuickSight::Template.ContextMenuOption`.
145051
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-contextmenuoption.html}
145052
+ */
145053
+ export type QuickSightTemplateContextMenuOption = {
145054
+ AvailabilityStatus?: QuickSightTemplateDashboardBehavior;
145055
+ };
144606
145056
  /**
144607
145057
  * Type definition for `AWS::QuickSight::Template.ContributionAnalysisDefault`.
144608
145058
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-contributionanalysisdefault.html}
@@ -144715,6 +145165,7 @@ export type QuickSightTemplateCustomContentConfiguration = {
144715
145165
  */
144716
145166
  ContentUrl?: string;
144717
145167
  ImageScaling?: QuickSightTemplateCustomContentImageScalingConfiguration;
145168
+ Interactions?: QuickSightTemplateVisualInteractionOptions;
144718
145169
  };
144719
145170
  /**
144720
145171
  * Type definition for `AWS::QuickSight::Template.CustomContentImageScalingConfiguration`.
@@ -145160,11 +145611,13 @@ export type QuickSightTemplateDateTimeParameterDeclaration = {
145160
145611
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-datetimepickercontroldisplayoptions.html}
145161
145612
  */
145162
145613
  export type QuickSightTemplateDateTimePickerControlDisplayOptions = {
145614
+ DateIconVisibility?: any;
145163
145615
  /**
145164
145616
  * @minLength `1`
145165
145617
  * @maxLength `128`
145166
145618
  */
145167
145619
  DateTimeFormat?: string;
145620
+ HelperTextVisibility?: any;
145168
145621
  InfoIconLabelOptions?: QuickSightTemplateSheetControlInfoIconLabelOptions;
145169
145622
  TitleOptions?: QuickSightTemplateLabelOptions;
145170
145623
  };
@@ -145383,6 +145836,11 @@ export type QuickSightTemplateDestinationParameterValueConfiguration = {
145383
145836
  SourceField?: string;
145384
145837
  SourceParameterName?: string;
145385
145838
  };
145839
+ /**
145840
+ * Type definition for `AWS::QuickSight::Template.DigitGroupingStyle`.
145841
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-digitgroupingstyle.html}
145842
+ */
145843
+ export type QuickSightTemplateDigitGroupingStyle = "DEFAULT" | "LAKHS";
145386
145844
  /**
145387
145845
  * Type definition for `AWS::QuickSight::Template.DimensionField`.
145388
145846
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-dimensionfield.html}
@@ -145608,6 +146066,7 @@ export type QuickSightTemplateFilledMapConditionalFormattingOption = {
145608
146066
  */
145609
146067
  export type QuickSightTemplateFilledMapConfiguration = {
145610
146068
  FieldWells?: QuickSightTemplateFilledMapFieldWells;
146069
+ Interactions?: QuickSightTemplateVisualInteractionOptions;
145611
146070
  Legend?: QuickSightTemplateLegendOptions;
145612
146071
  MapStyleOptions?: QuickSightTemplateGeospatialMapStyleOptions;
145613
146072
  SortConfiguration?: QuickSightTemplateFilledMapSortConfiguration;
@@ -146007,6 +146466,7 @@ export type QuickSightTemplateFontConfiguration = {
146007
146466
  */
146008
146467
  FontColor?: string;
146009
146468
  FontDecoration?: QuickSightTemplateFontDecoration;
146469
+ FontFamily?: string;
146010
146470
  FontSize?: QuickSightTemplateFontSize;
146011
146471
  FontStyle?: QuickSightTemplateFontStyle;
146012
146472
  FontWeight?: QuickSightTemplateFontWeight;
@@ -146021,6 +146481,10 @@ export type QuickSightTemplateFontDecoration = "UNDERLINE" | "NONE";
146021
146481
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-fontsize.html}
146022
146482
  */
146023
146483
  export type QuickSightTemplateFontSize = {
146484
+ /**
146485
+ * String based length that is composed of value and unit in px
146486
+ */
146487
+ Absolute?: string;
146024
146488
  Relative?: QuickSightTemplateRelativeFontSize;
146025
146489
  };
146026
146490
  /**
@@ -146233,6 +146697,7 @@ export type QuickSightTemplateFunnelChartConfiguration = {
146233
146697
  CategoryLabelOptions?: QuickSightTemplateChartAxisLabelOptions;
146234
146698
  DataLabelOptions?: QuickSightTemplateFunnelChartDataLabelOptions;
146235
146699
  FieldWells?: QuickSightTemplateFunnelChartFieldWells;
146700
+ Interactions?: QuickSightTemplateVisualInteractionOptions;
146236
146701
  SortConfiguration?: QuickSightTemplateFunnelChartSortConfiguration;
146237
146702
  Tooltip?: QuickSightTemplateTooltipOptions;
146238
146703
  ValueLabelOptions?: QuickSightTemplateChartAxisLabelOptions;
@@ -146315,6 +146780,20 @@ export type QuickSightTemplateFunnelChartVisual = {
146315
146780
  export type QuickSightTemplateGaugeChartArcConditionalFormatting = {
146316
146781
  ForegroundColor?: QuickSightTemplateConditionalFormattingColor;
146317
146782
  };
146783
+ /**
146784
+ * Type definition for `AWS::QuickSight::Template.GaugeChartColorConfiguration`.
146785
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-gaugechartcolorconfiguration.html}
146786
+ */
146787
+ export type QuickSightTemplateGaugeChartColorConfiguration = {
146788
+ /**
146789
+ * @pattern `^#[A-F0-9]{6}$`
146790
+ */
146791
+ BackgroundColor?: string;
146792
+ /**
146793
+ * @pattern `^#[A-F0-9]{6}$`
146794
+ */
146795
+ ForegroundColor?: string;
146796
+ };
146318
146797
  /**
146319
146798
  * Type definition for `AWS::QuickSight::Template.GaugeChartConditionalFormatting`.
146320
146799
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-gaugechartconditionalformatting.html}
@@ -146339,9 +146818,11 @@ export type QuickSightTemplateGaugeChartConditionalFormattingOption = {
146339
146818
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-gaugechartconfiguration.html}
146340
146819
  */
146341
146820
  export type QuickSightTemplateGaugeChartConfiguration = {
146821
+ ColorConfiguration?: QuickSightTemplateGaugeChartColorConfiguration;
146342
146822
  DataLabels?: QuickSightTemplateDataLabelOptions;
146343
146823
  FieldWells?: QuickSightTemplateGaugeChartFieldWells;
146344
146824
  GaugeChartOptions?: QuickSightTemplateGaugeChartOptions;
146825
+ Interactions?: QuickSightTemplateVisualInteractionOptions;
146345
146826
  TooltipOptions?: QuickSightTemplateTooltipOptions;
146346
146827
  VisualPalette?: QuickSightTemplateVisualPalette;
146347
146828
  };
@@ -146718,6 +147199,7 @@ export type QuickSightTemplateHeatMapConfiguration = {
146718
147199
  ColumnLabelOptions?: QuickSightTemplateChartAxisLabelOptions;
146719
147200
  DataLabels?: QuickSightTemplateDataLabelOptions;
146720
147201
  FieldWells?: QuickSightTemplateHeatMapFieldWells;
147202
+ Interactions?: QuickSightTemplateVisualInteractionOptions;
146721
147203
  Legend?: QuickSightTemplateLegendOptions;
146722
147204
  RowLabelOptions?: QuickSightTemplateChartAxisLabelOptions;
146723
147205
  SortConfiguration?: QuickSightTemplateHeatMapSortConfiguration;
@@ -146812,6 +147294,7 @@ export type QuickSightTemplateHistogramConfiguration = {
146812
147294
  BinOptions?: QuickSightTemplateHistogramBinOptions;
146813
147295
  DataLabels?: QuickSightTemplateDataLabelOptions;
146814
147296
  FieldWells?: QuickSightTemplateHistogramFieldWells;
147297
+ Interactions?: QuickSightTemplateVisualInteractionOptions;
146815
147298
  Tooltip?: QuickSightTemplateTooltipOptions;
146816
147299
  VisualPalette?: QuickSightTemplateVisualPalette;
146817
147300
  XAxisDisplayOptions?: QuickSightTemplateAxisDisplayOptions;
@@ -146930,6 +147413,7 @@ export type QuickSightTemplateInsightConfiguration = {
146930
147413
  */
146931
147414
  Computations?: QuickSightTemplateComputation[];
146932
147415
  CustomNarrative?: QuickSightTemplateCustomNarrativeOptions;
147416
+ Interactions?: QuickSightTemplateVisualInteractionOptions;
146933
147417
  };
146934
147418
  /**
146935
147419
  * Type definition for `AWS::QuickSight::Template.InsightVisual`.
@@ -147052,6 +147536,7 @@ export type QuickSightTemplateKPIConditionalFormattingOption = {
147052
147536
  */
147053
147537
  export type QuickSightTemplateKPIConfiguration = {
147054
147538
  FieldWells?: QuickSightTemplateKPIFieldWells;
147539
+ Interactions?: QuickSightTemplateVisualInteractionOptions;
147055
147540
  KPIOptions?: QuickSightTemplateKPIOptions;
147056
147541
  SortConfiguration?: QuickSightTemplateKPISortConfiguration;
147057
147542
  };
@@ -147282,6 +147767,7 @@ export type QuickSightTemplateLineChartConfiguration = {
147282
147767
  * @maxLength `10`
147283
147768
  */
147284
147769
  ForecastConfigurations?: QuickSightTemplateForecastConfiguration[];
147770
+ Interactions?: QuickSightTemplateVisualInteractionOptions;
147285
147771
  Legend?: QuickSightTemplateLegendOptions;
147286
147772
  PrimaryYAxisDisplayOptions?: QuickSightTemplateLineSeriesAxisDisplayOptions;
147287
147773
  PrimaryYAxisLabelOptions?: QuickSightTemplateChartAxisLabelOptions;
@@ -148190,6 +148676,7 @@ export type QuickSightTemplatePieChartConfiguration = {
148190
148676
  DataLabels?: QuickSightTemplateDataLabelOptions;
148191
148677
  DonutOptions?: QuickSightTemplateDonutOptions;
148192
148678
  FieldWells?: QuickSightTemplatePieChartFieldWells;
148679
+ Interactions?: QuickSightTemplateVisualInteractionOptions;
148193
148680
  Legend?: QuickSightTemplateLegendOptions;
148194
148681
  SmallMultiplesOptions?: QuickSightTemplateSmallMultiplesOptions;
148195
148682
  SortConfiguration?: QuickSightTemplatePieChartSortConfiguration;
@@ -148340,6 +148827,7 @@ export type QuickSightTemplatePivotTableConditionalFormattingScopeRole = "FIELD"
148340
148827
  export type QuickSightTemplatePivotTableConfiguration = {
148341
148828
  FieldOptions?: QuickSightTemplatePivotTableFieldOptions;
148342
148829
  FieldWells?: QuickSightTemplatePivotTableFieldWells;
148830
+ Interactions?: QuickSightTemplateVisualInteractionOptions;
148343
148831
  PaginatedReportOptions?: QuickSightTemplatePivotTablePaginatedReportOptions;
148344
148832
  SortConfiguration?: QuickSightTemplatePivotTableSortConfiguration;
148345
148833
  TableOptions?: QuickSightTemplatePivotTableOptions;
@@ -148774,6 +149262,7 @@ export type QuickSightTemplateRadarChartConfiguration = {
148774
149262
  ColorAxis?: QuickSightTemplateAxisDisplayOptions;
148775
149263
  ColorLabelOptions?: QuickSightTemplateChartAxisLabelOptions;
148776
149264
  FieldWells?: QuickSightTemplateRadarChartFieldWells;
149265
+ Interactions?: QuickSightTemplateVisualInteractionOptions;
148777
149266
  Legend?: QuickSightTemplateLegendOptions;
148778
149267
  Shape?: QuickSightTemplateRadarChartShape;
148779
149268
  SortConfiguration?: QuickSightTemplateRadarChartSortConfiguration;
@@ -149125,6 +149614,7 @@ export type QuickSightTemplateSankeyDiagramAggregatedFieldWells = {
149125
149614
  export type QuickSightTemplateSankeyDiagramChartConfiguration = {
149126
149615
  DataLabels?: QuickSightTemplateDataLabelOptions;
149127
149616
  FieldWells?: QuickSightTemplateSankeyDiagramFieldWells;
149617
+ Interactions?: QuickSightTemplateVisualInteractionOptions;
149128
149618
  SortConfiguration?: QuickSightTemplateSankeyDiagramSortConfiguration;
149129
149619
  };
149130
149620
  /**
@@ -149210,7 +149700,9 @@ export type QuickSightTemplateScatterPlotCategoricallyAggregatedFieldWells = {
149210
149700
  export type QuickSightTemplateScatterPlotConfiguration = {
149211
149701
  DataLabels?: QuickSightTemplateDataLabelOptions;
149212
149702
  FieldWells?: QuickSightTemplateScatterPlotFieldWells;
149703
+ Interactions?: QuickSightTemplateVisualInteractionOptions;
149213
149704
  Legend?: QuickSightTemplateLegendOptions;
149705
+ SortConfiguration?: QuickSightTemplateScatterPlotSortConfiguration;
149214
149706
  Tooltip?: QuickSightTemplateTooltipOptions;
149215
149707
  VisualPalette?: QuickSightTemplateVisualPalette;
149216
149708
  XAxisDisplayOptions?: QuickSightTemplateAxisDisplayOptions;
@@ -149226,6 +149718,13 @@ export type QuickSightTemplateScatterPlotFieldWells = {
149226
149718
  ScatterPlotCategoricallyAggregatedFieldWells?: QuickSightTemplateScatterPlotCategoricallyAggregatedFieldWells;
149227
149719
  ScatterPlotUnaggregatedFieldWells?: QuickSightTemplateScatterPlotUnaggregatedFieldWells;
149228
149720
  };
149721
+ /**
149722
+ * Type definition for `AWS::QuickSight::Template.ScatterPlotSortConfiguration`.
149723
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-scatterplotsortconfiguration.html}
149724
+ */
149725
+ export type QuickSightTemplateScatterPlotSortConfiguration = {
149726
+ ScatterPlotLimitConfiguration?: QuickSightTemplateItemsLimitConfiguration;
149727
+ };
149229
149728
  /**
149230
149729
  * Type definition for `AWS::QuickSight::Template.ScatterPlotUnaggregatedFieldWells`.
149231
149730
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-scatterplotunaggregatedfieldwells.html}
@@ -149670,6 +150169,7 @@ export type QuickSightTemplateSheetTextBox = {
149670
150169
  * @maxLength `150000`
149671
150170
  */
149672
150171
  Content?: string;
150172
+ Interactions?: any;
149673
150173
  /**
149674
150174
  * @minLength `1`
149675
150175
  * @maxLength `512`
@@ -150008,6 +150508,7 @@ export type QuickSightTemplateTableConditionalFormattingOption = {
150008
150508
  export type QuickSightTemplateTableConfiguration = {
150009
150509
  FieldOptions?: QuickSightTemplateTableFieldOptions;
150010
150510
  FieldWells?: QuickSightTemplateTableFieldWells;
150511
+ Interactions?: QuickSightTemplateVisualInteractionOptions;
150011
150512
  PaginatedReportOptions?: QuickSightTemplateTablePaginatedReportOptions;
150012
150513
  SortConfiguration?: QuickSightTemplateTableSortConfiguration;
150013
150514
  /**
@@ -150469,6 +150970,7 @@ export type QuickSightTemplateTextWrap = "NONE" | "WRAP";
150469
150970
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-thousandseparatoroptions.html}
150470
150971
  */
150471
150972
  export type QuickSightTemplateThousandSeparatorOptions = {
150973
+ GroupingStyle?: QuickSightTemplateDigitGroupingStyle;
150472
150974
  Symbol?: QuickSightTemplateNumericSeparatorSymbol;
150473
150975
  Visibility?: any;
150474
150976
  };
@@ -150761,6 +151263,7 @@ export type QuickSightTemplateTreeMapConfiguration = {
150761
151263
  DataLabels?: QuickSightTemplateDataLabelOptions;
150762
151264
  FieldWells?: QuickSightTemplateTreeMapFieldWells;
150763
151265
  GroupLabelOptions?: QuickSightTemplateChartAxisLabelOptions;
151266
+ Interactions?: QuickSightTemplateVisualInteractionOptions;
150764
151267
  Legend?: QuickSightTemplateLegendOptions;
150765
151268
  SizeLabelOptions?: QuickSightTemplateChartAxisLabelOptions;
150766
151269
  SortConfiguration?: QuickSightTemplateTreeMapSortConfiguration;
@@ -150953,6 +151456,21 @@ export type QuickSightTemplateVisualCustomActionOperation = {
150953
151456
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-visualcustomactiontrigger.html}
150954
151457
  */
150955
151458
  export type QuickSightTemplateVisualCustomActionTrigger = "DATA_POINT_CLICK" | "DATA_POINT_MENU";
151459
+ /**
151460
+ * Type definition for `AWS::QuickSight::Template.VisualInteractionOptions`.
151461
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-visualinteractionoptions.html}
151462
+ */
151463
+ export type QuickSightTemplateVisualInteractionOptions = {
151464
+ ContextMenuOption?: QuickSightTemplateContextMenuOption;
151465
+ VisualMenuOption?: QuickSightTemplateVisualMenuOption;
151466
+ };
151467
+ /**
151468
+ * Type definition for `AWS::QuickSight::Template.VisualMenuOption`.
151469
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-visualmenuoption.html}
151470
+ */
151471
+ export type QuickSightTemplateVisualMenuOption = {
151472
+ AvailabilityStatus?: QuickSightTemplateDashboardBehavior;
151473
+ };
150956
151474
  /**
150957
151475
  * Type definition for `AWS::QuickSight::Template.VisualPalette`.
150958
151476
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-visualpalette.html}
@@ -151022,6 +151540,7 @@ export type QuickSightTemplateWaterfallChartConfiguration = {
151022
151540
  ColorConfiguration?: QuickSightTemplateWaterfallChartColorConfiguration;
151023
151541
  DataLabels?: QuickSightTemplateDataLabelOptions;
151024
151542
  FieldWells?: QuickSightTemplateWaterfallChartFieldWells;
151543
+ Interactions?: QuickSightTemplateVisualInteractionOptions;
151025
151544
  Legend?: QuickSightTemplateLegendOptions;
151026
151545
  PrimaryYAxisDisplayOptions?: QuickSightTemplateAxisDisplayOptions;
151027
151546
  PrimaryYAxisLabelOptions?: QuickSightTemplateChartAxisLabelOptions;
@@ -151148,6 +151667,7 @@ export type QuickSightTemplateWordCloudAggregatedFieldWells = {
151148
151667
  export type QuickSightTemplateWordCloudChartConfiguration = {
151149
151668
  CategoryLabelOptions?: QuickSightTemplateChartAxisLabelOptions;
151150
151669
  FieldWells?: QuickSightTemplateWordCloudFieldWells;
151670
+ Interactions?: QuickSightTemplateVisualInteractionOptions;
151151
151671
  SortConfiguration?: QuickSightTemplateWordCloudSortConfiguration;
151152
151672
  WordCloudOptions?: QuickSightTemplateWordCloudOptions;
151153
151673
  };
@@ -181924,7 +182444,37 @@ export type TransferAgreementProps = {
181924
182444
  * @maxLength `1024`
181925
182445
  * @pattern `^(|/.*)$`
181926
182446
  */
181927
- BaseDirectory: string;
182447
+ BaseDirectory?: string;
182448
+ /**
182449
+ * Specifies a separate directory for each type of file to store for an AS2 message.
182450
+ */
182451
+ CustomDirectories?: {
182452
+ /**
182453
+ * Specifies a location to store the failed files for an AS2 message.
182454
+ * @pattern `(|/.*)`
182455
+ */
182456
+ FailedFilesDirectory: string;
182457
+ /**
182458
+ * Specifies a location to store the MDN file for an AS2 message.
182459
+ * @pattern `(|/.*)`
182460
+ */
182461
+ MdnFilesDirectory: string;
182462
+ /**
182463
+ * Specifies a location to store the payload file for an AS2 message.
182464
+ * @pattern `(|/.*)`
182465
+ */
182466
+ PayloadFilesDirectory: string;
182467
+ /**
182468
+ * Specifies a location to store the status file for an AS2 message.
182469
+ * @pattern `(|/.*)`
182470
+ */
182471
+ StatusFilesDirectory: string;
182472
+ /**
182473
+ * Specifies a location to store the temporary processing file for an AS2 message.
182474
+ * @pattern `(|/.*)`
182475
+ */
182476
+ TemporaryFilesDirectory: string;
182477
+ };
181928
182478
  /**
181929
182479
  * A textual description for the agreement.
181930
182480
  * @minLength `1`