@awboost/cfntypes 0.100.132 → 0.100.134

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.
@@ -85566,6 +85676,7 @@ export type IoTFleetWiseDecoderManifestCanSignal = {
85566
85676
  */
85567
85677
  Name?: string;
85568
85678
  Offset: number | string;
85679
+ SignalValueType?: IoTFleetWiseDecoderManifestSignalValueType;
85569
85680
  StartBit: number | string;
85570
85681
  };
85571
85682
  /**
@@ -85693,11 +85804,13 @@ export type IoTFleetWiseDecoderManifestObdSignal = {
85693
85804
  BitMaskLength?: number | string;
85694
85805
  BitRightShift?: number | string;
85695
85806
  ByteLength: number | string;
85807
+ IsSigned?: boolean | string;
85696
85808
  Offset: number | string;
85697
85809
  Pid: number | string;
85698
85810
  PidResponseLength: number | string;
85699
85811
  Scaling: number | string;
85700
85812
  ServiceMode: number | string;
85813
+ SignalValueType?: IoTFleetWiseDecoderManifestSignalValueType;
85701
85814
  StartByte: number | string;
85702
85815
  };
85703
85816
  /**
@@ -85718,6 +85831,11 @@ export type IoTFleetWiseDecoderManifestObdSignalDecoder = {
85718
85831
  ObdSignal: IoTFleetWiseDecoderManifestObdSignal;
85719
85832
  Type: "OBD_SIGNAL";
85720
85833
  };
85834
+ /**
85835
+ * Type definition for `AWS::IoTFleetWise::DecoderManifest.SignalValueType`.
85836
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-decodermanifest-signalvaluetype.html}
85837
+ */
85838
+ export type IoTFleetWiseDecoderManifestSignalValueType = "INTEGER" | "FLOATING_POINT";
85721
85839
  /**
85722
85840
  * Type definition for `AWS::IoTFleetWise::DecoderManifest.Tag`.
85723
85841
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-decodermanifest-tag.html}
@@ -107601,7 +107719,7 @@ export type MediaLiveCloudWatchAlarmTemplateProps = {
107601
107719
  * A cloudwatch alarm template group's identifier. Can be either be its id or current name.
107602
107720
  * @pattern `^[^\s]+$`
107603
107721
  */
107604
- GroupIdentifier: string;
107722
+ GroupIdentifier?: string;
107605
107723
  /**
107606
107724
  * The name of the metric associated with the alarm. Must be compatible with targetResourceType.
107607
107725
  * @minLength `0`
@@ -107687,7 +107805,7 @@ export type MediaLiveCloudWatchAlarmTemplateCloudWatchAlarmTemplateStatistic = "
107687
107805
  * The resource type this template should dynamically generate cloudwatch metric alarms for.
107688
107806
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-cloudwatchalarmtemplate-cloudwatchalarmtemplatetargetresourcetype.html}
107689
107807
  */
107690
- export type MediaLiveCloudWatchAlarmTemplateCloudWatchAlarmTemplateTargetResourceType = "CLOUDFRONT_DISTRIBUTION" | "MEDIALIVE_MULTIPLEX" | "MEDIALIVE_CHANNEL" | "MEDIALIVE_INPUT_DEVICE" | "MEDIAPACKAGE_CHANNEL" | "MEDIAPACKAGE_ORIGIN_ENDPOINT" | "MEDIACONNECT_FLOW" | "S3_BUCKET";
107808
+ 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
107809
  /**
107692
107810
  * Type definition for `AWS::MediaLive::CloudWatchAlarmTemplate.CloudWatchAlarmTemplateTreatMissingData`.
107693
107811
  * Specifies how missing data points are treated when evaluating the alarm's condition.
@@ -107874,7 +107992,7 @@ export type MediaLiveEventBridgeRuleTemplateProps = {
107874
107992
  * An eventbridge rule template group's identifier. Can be either be its id or current name.
107875
107993
  * @pattern `^[^\s]+$`
107876
107994
  */
107877
- GroupIdentifier: string;
107995
+ GroupIdentifier?: string;
107878
107996
  /**
107879
107997
  * A resource's name. Names must be unique within the scope of a resource type in a specific region.
107880
107998
  * @minLength `1`
@@ -108626,7 +108744,7 @@ export type MediaLiveSignalMapAttributes = {
108626
108744
  CreatedAt: string;
108627
108745
  /**
108628
108746
  * Error message associated with a failed creation or failed update attempt of a signal map.
108629
- * @minLength `1`
108747
+ * @minLength `0`
108630
108748
  * @maxLength `2048`
108631
108749
  */
108632
108750
  ErrorMessage: string;
@@ -108645,14 +108763,14 @@ export type MediaLiveSignalMapAttributes = {
108645
108763
  Arn: string;
108646
108764
  /**
108647
108765
  * The logical name of an AWS media resource.
108648
- * @minLength `1`
108766
+ * @minLength `0`
108649
108767
  * @maxLength `256`
108650
108768
  */
108651
108769
  Name: string;
108652
108770
  }[];
108653
108771
  /**
108654
108772
  * The logical name of an AWS media resource.
108655
- * @minLength `1`
108773
+ * @minLength `0`
108656
108774
  * @maxLength `256`
108657
108775
  */
108658
108776
  Name: string;
@@ -108666,7 +108784,7 @@ export type MediaLiveSignalMapAttributes = {
108666
108784
  Arn: string;
108667
108785
  /**
108668
108786
  * The logical name of an AWS media resource.
108669
- * @minLength `1`
108787
+ * @minLength `0`
108670
108788
  * @maxLength `256`
108671
108789
  */
108672
108790
  Name: string;
@@ -108687,7 +108805,7 @@ export type MediaLiveSignalMapAttributes = {
108687
108805
  LastSuccessfulMonitorDeployment: {
108688
108806
  /**
108689
108807
  * URI associated with a signal map's monitor deployment.
108690
- * @minLength `1`
108808
+ * @minLength `0`
108691
108809
  * @maxLength `2048`
108692
108810
  */
108693
108811
  DetailsUri: string;
@@ -108710,14 +108828,14 @@ export type MediaLiveSignalMapAttributes = {
108710
108828
  Arn: string;
108711
108829
  /**
108712
108830
  * The logical name of an AWS media resource.
108713
- * @minLength `1`
108831
+ * @minLength `0`
108714
108832
  * @maxLength `256`
108715
108833
  */
108716
108834
  Name: string;
108717
108835
  }[];
108718
108836
  /**
108719
108837
  * The logical name of an AWS media resource.
108720
- * @minLength `1`
108838
+ * @minLength `0`
108721
108839
  * @maxLength `256`
108722
108840
  */
108723
108841
  Name: string;
@@ -108731,7 +108849,7 @@ export type MediaLiveSignalMapAttributes = {
108731
108849
  Arn: string;
108732
108850
  /**
108733
108851
  * The logical name of an AWS media resource.
108734
- * @minLength `1`
108852
+ * @minLength `0`
108735
108853
  * @maxLength `256`
108736
108854
  */
108737
108855
  Name: string;
@@ -108748,13 +108866,13 @@ export type MediaLiveSignalMapAttributes = {
108748
108866
  MonitorDeployment: {
108749
108867
  /**
108750
108868
  * URI associated with a signal map's monitor deployment.
108751
- * @minLength `1`
108869
+ * @minLength `0`
108752
108870
  * @maxLength `2048`
108753
108871
  */
108754
108872
  DetailsUri: string;
108755
108873
  /**
108756
108874
  * Error message associated with a failed monitor deployment of a signal map.
108757
- * @minLength `1`
108875
+ * @minLength `0`
108758
108876
  * @maxLength `2048`
108759
108877
  */
108760
108878
  ErrorMessage: string;
@@ -108783,7 +108901,7 @@ export type MediaLiveSignalMapMediaResource = {
108783
108901
  Destinations?: MediaLiveSignalMapMediaResourceNeighbor[];
108784
108902
  /**
108785
108903
  * The logical name of an AWS media resource.
108786
- * @minLength `1`
108904
+ * @minLength `0`
108787
108905
  * @maxLength `256`
108788
108906
  */
108789
108907
  Name?: string;
@@ -108810,7 +108928,7 @@ export type MediaLiveSignalMapMediaResourceNeighbor = {
108810
108928
  Arn: string;
108811
108929
  /**
108812
108930
  * The logical name of an AWS media resource.
108813
- * @minLength `1`
108931
+ * @minLength `0`
108814
108932
  * @maxLength `256`
108815
108933
  */
108816
108934
  Name?: string;
@@ -108823,13 +108941,13 @@ export type MediaLiveSignalMapMediaResourceNeighbor = {
108823
108941
  export type MediaLiveSignalMapMonitorDeployment = {
108824
108942
  /**
108825
108943
  * URI associated with a signal map's monitor deployment.
108826
- * @minLength `1`
108944
+ * @minLength `0`
108827
108945
  * @maxLength `2048`
108828
108946
  */
108829
108947
  DetailsUri?: string;
108830
108948
  /**
108831
108949
  * Error message associated with a failed monitor deployment of a signal map.
108832
- * @minLength `1`
108950
+ * @minLength `0`
108833
108951
  * @maxLength `2048`
108834
108952
  */
108835
108953
  ErrorMessage?: string;
@@ -108858,7 +108976,7 @@ export type MediaLiveSignalMapSignalMapStatus = "CREATE_IN_PROGRESS" | "CREATE_C
108858
108976
  export type MediaLiveSignalMapSuccessfulMonitorDeployment = {
108859
108977
  /**
108860
108978
  * URI associated with a signal map's monitor deployment.
108861
- * @minLength `1`
108979
+ * @minLength `0`
108862
108980
  * @maxLength `2048`
108863
108981
  */
108864
108982
  DetailsUri: string;
@@ -116027,7 +116145,7 @@ export type OamLinkLinkFilter = {
116027
116145
  * Type definition for `AWS::Oam::Link.ResourceType`.
116028
116146
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-oam-link-resourcetype.html}
116029
116147
  */
116030
- export type OamLinkResourceType = "AWS::CloudWatch::Metric" | "AWS::Logs::LogGroup" | "AWS::XRay::Trace" | "AWS::ApplicationInsights::Application" | "AWS::InternetMonitor::Monitor";
116148
+ 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
116149
  /**
116032
116150
  * Resource Type definition for AWS::Oam::Sink
116033
116151
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-oam-sink.html}
@@ -124672,6 +124790,7 @@ export type QuickSightAnalysisBarChartConfiguration = {
124672
124790
  ContributionAnalysisDefaults?: QuickSightAnalysisContributionAnalysisDefault[];
124673
124791
  DataLabels?: QuickSightAnalysisDataLabelOptions;
124674
124792
  FieldWells?: QuickSightAnalysisBarChartFieldWells;
124793
+ Interactions?: QuickSightAnalysisVisualInteractionOptions;
124675
124794
  Legend?: QuickSightAnalysisLegendOptions;
124676
124795
  Orientation?: QuickSightAnalysisBarChartOrientation;
124677
124796
  /**
@@ -124794,6 +124913,7 @@ export type QuickSightAnalysisBinWidthOptions = {
124794
124913
  export type QuickSightAnalysisBodySectionConfiguration = {
124795
124914
  Content: QuickSightAnalysisBodySectionContent;
124796
124915
  PageBreakConfiguration?: QuickSightAnalysisSectionPageBreakConfiguration;
124916
+ RepeatConfiguration?: QuickSightAnalysisBodySectionRepeatConfiguration;
124797
124917
  /**
124798
124918
  * @minLength `1`
124799
124919
  * @maxLength `512`
@@ -124809,6 +124929,72 @@ export type QuickSightAnalysisBodySectionConfiguration = {
124809
124929
  export type QuickSightAnalysisBodySectionContent = {
124810
124930
  Layout?: QuickSightAnalysisSectionLayoutConfiguration;
124811
124931
  };
124932
+ /**
124933
+ * Type definition for `AWS::QuickSight::Analysis.BodySectionDynamicCategoryDimensionConfiguration`.
124934
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-bodysectiondynamiccategorydimensionconfiguration.html}
124935
+ */
124936
+ export type QuickSightAnalysisBodySectionDynamicCategoryDimensionConfiguration = {
124937
+ Column: QuickSightAnalysisColumnIdentifier;
124938
+ /**
124939
+ * @min `1`
124940
+ * @max `1000`
124941
+ */
124942
+ Limit?: number;
124943
+ /**
124944
+ * @minLength `0`
124945
+ * @maxLength `100`
124946
+ */
124947
+ SortByMetrics?: QuickSightAnalysisColumnSort[];
124948
+ };
124949
+ /**
124950
+ * Type definition for `AWS::QuickSight::Analysis.BodySectionDynamicNumericDimensionConfiguration`.
124951
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-bodysectiondynamicnumericdimensionconfiguration.html}
124952
+ */
124953
+ export type QuickSightAnalysisBodySectionDynamicNumericDimensionConfiguration = {
124954
+ Column: QuickSightAnalysisColumnIdentifier;
124955
+ /**
124956
+ * @min `1`
124957
+ * @max `1000`
124958
+ */
124959
+ Limit?: number;
124960
+ /**
124961
+ * @minLength `0`
124962
+ * @maxLength `100`
124963
+ */
124964
+ SortByMetrics?: QuickSightAnalysisColumnSort[];
124965
+ };
124966
+ /**
124967
+ * Type definition for `AWS::QuickSight::Analysis.BodySectionRepeatConfiguration`.
124968
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-bodysectionrepeatconfiguration.html}
124969
+ */
124970
+ export type QuickSightAnalysisBodySectionRepeatConfiguration = {
124971
+ /**
124972
+ * @minLength `0`
124973
+ * @maxLength `3`
124974
+ */
124975
+ DimensionConfigurations?: QuickSightAnalysisBodySectionRepeatDimensionConfiguration[];
124976
+ /**
124977
+ * @minLength `0`
124978
+ * @maxLength `20`
124979
+ */
124980
+ NonRepeatingVisuals?: string[];
124981
+ PageBreakConfiguration?: QuickSightAnalysisBodySectionRepeatPageBreakConfiguration;
124982
+ };
124983
+ /**
124984
+ * Type definition for `AWS::QuickSight::Analysis.BodySectionRepeatDimensionConfiguration`.
124985
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-bodysectionrepeatdimensionconfiguration.html}
124986
+ */
124987
+ export type QuickSightAnalysisBodySectionRepeatDimensionConfiguration = {
124988
+ DynamicCategoryDimensionConfiguration?: QuickSightAnalysisBodySectionDynamicCategoryDimensionConfiguration;
124989
+ DynamicNumericDimensionConfiguration?: QuickSightAnalysisBodySectionDynamicNumericDimensionConfiguration;
124990
+ };
124991
+ /**
124992
+ * Type definition for `AWS::QuickSight::Analysis.BodySectionRepeatPageBreakConfiguration`.
124993
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-bodysectionrepeatpagebreakconfiguration.html}
124994
+ */
124995
+ export type QuickSightAnalysisBodySectionRepeatPageBreakConfiguration = {
124996
+ After?: QuickSightAnalysisSectionAfterPageBreak;
124997
+ };
124812
124998
  /**
124813
124999
  * Type definition for `AWS::QuickSight::Analysis.BoxPlotAggregatedFieldWells`.
124814
125000
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-boxplotaggregatedfieldwells.html}
@@ -124834,6 +125020,7 @@ export type QuickSightAnalysisBoxPlotChartConfiguration = {
124834
125020
  CategoryAxis?: QuickSightAnalysisAxisDisplayOptions;
124835
125021
  CategoryLabelOptions?: QuickSightAnalysisChartAxisLabelOptions;
124836
125022
  FieldWells?: QuickSightAnalysisBoxPlotFieldWells;
125023
+ Interactions?: QuickSightAnalysisVisualInteractionOptions;
124837
125024
  Legend?: QuickSightAnalysisLegendOptions;
124838
125025
  PrimaryYAxisDisplayOptions?: QuickSightAnalysisAxisDisplayOptions;
124839
125026
  PrimaryYAxisLabelOptions?: QuickSightAnalysisChartAxisLabelOptions;
@@ -125217,6 +125404,7 @@ export type QuickSightAnalysisComboChartConfiguration = {
125217
125404
  CategoryLabelOptions?: QuickSightAnalysisChartAxisLabelOptions;
125218
125405
  ColorLabelOptions?: QuickSightAnalysisChartAxisLabelOptions;
125219
125406
  FieldWells?: QuickSightAnalysisComboChartFieldWells;
125407
+ Interactions?: QuickSightAnalysisVisualInteractionOptions;
125220
125408
  Legend?: QuickSightAnalysisLegendOptions;
125221
125409
  LineDataLabels?: QuickSightAnalysisDataLabelOptions;
125222
125410
  PrimaryYAxisDisplayOptions?: QuickSightAnalysisAxisDisplayOptions;
@@ -125430,6 +125618,13 @@ export type QuickSightAnalysisConditionalFormattingSolidColor = {
125430
125618
  */
125431
125619
  Expression: string;
125432
125620
  };
125621
+ /**
125622
+ * Type definition for `AWS::QuickSight::Analysis.ContextMenuOption`.
125623
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-contextmenuoption.html}
125624
+ */
125625
+ export type QuickSightAnalysisContextMenuOption = {
125626
+ AvailabilityStatus?: QuickSightAnalysisDashboardBehavior;
125627
+ };
125433
125628
  /**
125434
125629
  * Type definition for `AWS::QuickSight::Analysis.ContributionAnalysisDefault`.
125435
125630
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-contributionanalysisdefault.html}
@@ -125542,6 +125737,7 @@ export type QuickSightAnalysisCustomContentConfiguration = {
125542
125737
  */
125543
125738
  ContentUrl?: string;
125544
125739
  ImageScaling?: QuickSightAnalysisCustomContentImageScalingConfiguration;
125740
+ Interactions?: QuickSightAnalysisVisualInteractionOptions;
125545
125741
  };
125546
125742
  /**
125547
125743
  * Type definition for `AWS::QuickSight::Analysis.CustomContentImageScalingConfiguration`.
@@ -125981,11 +126177,13 @@ export type QuickSightAnalysisDateTimeParameterDeclaration = {
125981
126177
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-datetimepickercontroldisplayoptions.html}
125982
126178
  */
125983
126179
  export type QuickSightAnalysisDateTimePickerControlDisplayOptions = {
126180
+ DateIconVisibility?: QuickSightAnalysisVisibility;
125984
126181
  /**
125985
126182
  * @minLength `1`
125986
126183
  * @maxLength `128`
125987
126184
  */
125988
126185
  DateTimeFormat?: string;
126186
+ HelperTextVisibility?: QuickSightAnalysisVisibility;
125989
126187
  InfoIconLabelOptions?: QuickSightAnalysisSheetControlInfoIconLabelOptions;
125990
126188
  TitleOptions?: QuickSightAnalysisLabelOptions;
125991
126189
  };
@@ -126220,6 +126418,11 @@ export type QuickSightAnalysisDestinationParameterValueConfiguration = {
126220
126418
  SourceField?: string;
126221
126419
  SourceParameterName?: string;
126222
126420
  };
126421
+ /**
126422
+ * Type definition for `AWS::QuickSight::Analysis.DigitGroupingStyle`.
126423
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-digitgroupingstyle.html}
126424
+ */
126425
+ export type QuickSightAnalysisDigitGroupingStyle = "DEFAULT" | "LAKHS";
126223
126426
  /**
126224
126427
  * Type definition for `AWS::QuickSight::Analysis.DimensionField`.
126225
126428
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-dimensionfield.html}
@@ -126445,6 +126648,7 @@ export type QuickSightAnalysisFilledMapConditionalFormattingOption = {
126445
126648
  */
126446
126649
  export type QuickSightAnalysisFilledMapConfiguration = {
126447
126650
  FieldWells?: QuickSightAnalysisFilledMapFieldWells;
126651
+ Interactions?: QuickSightAnalysisVisualInteractionOptions;
126448
126652
  Legend?: QuickSightAnalysisLegendOptions;
126449
126653
  MapStyleOptions?: QuickSightAnalysisGeospatialMapStyleOptions;
126450
126654
  SortConfiguration?: QuickSightAnalysisFilledMapSortConfiguration;
@@ -126844,6 +127048,7 @@ export type QuickSightAnalysisFontConfiguration = {
126844
127048
  */
126845
127049
  FontColor?: string;
126846
127050
  FontDecoration?: QuickSightAnalysisFontDecoration;
127051
+ FontFamily?: string;
126847
127052
  FontSize?: QuickSightAnalysisFontSize;
126848
127053
  FontStyle?: QuickSightAnalysisFontStyle;
126849
127054
  FontWeight?: QuickSightAnalysisFontWeight;
@@ -127074,6 +127279,7 @@ export type QuickSightAnalysisFunnelChartConfiguration = {
127074
127279
  CategoryLabelOptions?: QuickSightAnalysisChartAxisLabelOptions;
127075
127280
  DataLabelOptions?: QuickSightAnalysisFunnelChartDataLabelOptions;
127076
127281
  FieldWells?: QuickSightAnalysisFunnelChartFieldWells;
127282
+ Interactions?: QuickSightAnalysisVisualInteractionOptions;
127077
127283
  SortConfiguration?: QuickSightAnalysisFunnelChartSortConfiguration;
127078
127284
  Tooltip?: QuickSightAnalysisTooltipOptions;
127079
127285
  ValueLabelOptions?: QuickSightAnalysisChartAxisLabelOptions;
@@ -127156,6 +127362,20 @@ export type QuickSightAnalysisFunnelChartVisual = {
127156
127362
  export type QuickSightAnalysisGaugeChartArcConditionalFormatting = {
127157
127363
  ForegroundColor?: QuickSightAnalysisConditionalFormattingColor;
127158
127364
  };
127365
+ /**
127366
+ * Type definition for `AWS::QuickSight::Analysis.GaugeChartColorConfiguration`.
127367
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-gaugechartcolorconfiguration.html}
127368
+ */
127369
+ export type QuickSightAnalysisGaugeChartColorConfiguration = {
127370
+ /**
127371
+ * @pattern `^#[A-F0-9]{6}$`
127372
+ */
127373
+ BackgroundColor?: string;
127374
+ /**
127375
+ * @pattern `^#[A-F0-9]{6}$`
127376
+ */
127377
+ ForegroundColor?: string;
127378
+ };
127159
127379
  /**
127160
127380
  * Type definition for `AWS::QuickSight::Analysis.GaugeChartConditionalFormatting`.
127161
127381
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-gaugechartconditionalformatting.html}
@@ -127180,9 +127400,11 @@ export type QuickSightAnalysisGaugeChartConditionalFormattingOption = {
127180
127400
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-gaugechartconfiguration.html}
127181
127401
  */
127182
127402
  export type QuickSightAnalysisGaugeChartConfiguration = {
127403
+ ColorConfiguration?: QuickSightAnalysisGaugeChartColorConfiguration;
127183
127404
  DataLabels?: QuickSightAnalysisDataLabelOptions;
127184
127405
  FieldWells?: QuickSightAnalysisGaugeChartFieldWells;
127185
127406
  GaugeChartOptions?: QuickSightAnalysisGaugeChartOptions;
127407
+ Interactions?: QuickSightAnalysisVisualInteractionOptions;
127186
127408
  TooltipOptions?: QuickSightAnalysisTooltipOptions;
127187
127409
  VisualPalette?: QuickSightAnalysisVisualPalette;
127188
127410
  };
@@ -127874,6 +128096,7 @@ export type QuickSightAnalysisHeatMapConfiguration = {
127874
128096
  ColumnLabelOptions?: QuickSightAnalysisChartAxisLabelOptions;
127875
128097
  DataLabels?: QuickSightAnalysisDataLabelOptions;
127876
128098
  FieldWells?: QuickSightAnalysisHeatMapFieldWells;
128099
+ Interactions?: QuickSightAnalysisVisualInteractionOptions;
127877
128100
  Legend?: QuickSightAnalysisLegendOptions;
127878
128101
  RowLabelOptions?: QuickSightAnalysisChartAxisLabelOptions;
127879
128102
  SortConfiguration?: QuickSightAnalysisHeatMapSortConfiguration;
@@ -127968,6 +128191,7 @@ export type QuickSightAnalysisHistogramConfiguration = {
127968
128191
  BinOptions?: QuickSightAnalysisHistogramBinOptions;
127969
128192
  DataLabels?: QuickSightAnalysisDataLabelOptions;
127970
128193
  FieldWells?: QuickSightAnalysisHistogramFieldWells;
128194
+ Interactions?: QuickSightAnalysisVisualInteractionOptions;
127971
128195
  Tooltip?: QuickSightAnalysisTooltipOptions;
127972
128196
  VisualPalette?: QuickSightAnalysisVisualPalette;
127973
128197
  XAxisDisplayOptions?: QuickSightAnalysisAxisDisplayOptions;
@@ -128099,6 +128323,7 @@ export type QuickSightAnalysisInsightConfiguration = {
128099
128323
  */
128100
128324
  Computations?: QuickSightAnalysisComputation[];
128101
128325
  CustomNarrative?: QuickSightAnalysisCustomNarrativeOptions;
128326
+ Interactions?: QuickSightAnalysisVisualInteractionOptions;
128102
128327
  };
128103
128328
  /**
128104
128329
  * Type definition for `AWS::QuickSight::Analysis.InsightVisual`.
@@ -128237,6 +128462,7 @@ export type QuickSightAnalysisKPIConditionalFormattingOption = {
128237
128462
  */
128238
128463
  export type QuickSightAnalysisKPIConfiguration = {
128239
128464
  FieldWells?: QuickSightAnalysisKPIFieldWells;
128465
+ Interactions?: QuickSightAnalysisVisualInteractionOptions;
128240
128466
  KPIOptions?: QuickSightAnalysisKPIOptions;
128241
128467
  SortConfiguration?: QuickSightAnalysisKPISortConfiguration;
128242
128468
  };
@@ -128531,6 +128757,7 @@ export type QuickSightAnalysisLineChartConfiguration = {
128531
128757
  * @maxLength `10`
128532
128758
  */
128533
128759
  ForecastConfigurations?: QuickSightAnalysisForecastConfiguration[];
128760
+ Interactions?: QuickSightAnalysisVisualInteractionOptions;
128534
128761
  Legend?: QuickSightAnalysisLegendOptions;
128535
128762
  PrimaryYAxisDisplayOptions?: QuickSightAnalysisLineSeriesAxisDisplayOptions;
128536
128763
  PrimaryYAxisLabelOptions?: QuickSightAnalysisChartAxisLabelOptions;
@@ -129470,6 +129697,7 @@ export type QuickSightAnalysisPieChartConfiguration = {
129470
129697
  DataLabels?: QuickSightAnalysisDataLabelOptions;
129471
129698
  DonutOptions?: QuickSightAnalysisDonutOptions;
129472
129699
  FieldWells?: QuickSightAnalysisPieChartFieldWells;
129700
+ Interactions?: QuickSightAnalysisVisualInteractionOptions;
129473
129701
  Legend?: QuickSightAnalysisLegendOptions;
129474
129702
  SmallMultiplesOptions?: QuickSightAnalysisSmallMultiplesOptions;
129475
129703
  SortConfiguration?: QuickSightAnalysisPieChartSortConfiguration;
@@ -129620,6 +129848,7 @@ export type QuickSightAnalysisPivotTableConditionalFormattingScopeRole = "FIELD"
129620
129848
  export type QuickSightAnalysisPivotTableConfiguration = {
129621
129849
  FieldOptions?: QuickSightAnalysisPivotTableFieldOptions;
129622
129850
  FieldWells?: QuickSightAnalysisPivotTableFieldWells;
129851
+ Interactions?: QuickSightAnalysisVisualInteractionOptions;
129623
129852
  PaginatedReportOptions?: QuickSightAnalysisPivotTablePaginatedReportOptions;
129624
129853
  SortConfiguration?: QuickSightAnalysisPivotTableSortConfiguration;
129625
129854
  TableOptions?: QuickSightAnalysisPivotTableOptions;
@@ -130054,6 +130283,7 @@ export type QuickSightAnalysisRadarChartConfiguration = {
130054
130283
  ColorAxis?: QuickSightAnalysisAxisDisplayOptions;
130055
130284
  ColorLabelOptions?: QuickSightAnalysisChartAxisLabelOptions;
130056
130285
  FieldWells?: QuickSightAnalysisRadarChartFieldWells;
130286
+ Interactions?: QuickSightAnalysisVisualInteractionOptions;
130057
130287
  Legend?: QuickSightAnalysisLegendOptions;
130058
130288
  Shape?: QuickSightAnalysisRadarChartShape;
130059
130289
  SortConfiguration?: QuickSightAnalysisRadarChartSortConfiguration;
@@ -130405,6 +130635,7 @@ export type QuickSightAnalysisSankeyDiagramAggregatedFieldWells = {
130405
130635
  export type QuickSightAnalysisSankeyDiagramChartConfiguration = {
130406
130636
  DataLabels?: QuickSightAnalysisDataLabelOptions;
130407
130637
  FieldWells?: QuickSightAnalysisSankeyDiagramFieldWells;
130638
+ Interactions?: QuickSightAnalysisVisualInteractionOptions;
130408
130639
  SortConfiguration?: QuickSightAnalysisSankeyDiagramSortConfiguration;
130409
130640
  };
130410
130641
  /**
@@ -130490,7 +130721,9 @@ export type QuickSightAnalysisScatterPlotCategoricallyAggregatedFieldWells = {
130490
130721
  export type QuickSightAnalysisScatterPlotConfiguration = {
130491
130722
  DataLabels?: QuickSightAnalysisDataLabelOptions;
130492
130723
  FieldWells?: QuickSightAnalysisScatterPlotFieldWells;
130724
+ Interactions?: QuickSightAnalysisVisualInteractionOptions;
130493
130725
  Legend?: QuickSightAnalysisLegendOptions;
130726
+ SortConfiguration?: QuickSightAnalysisScatterPlotSortConfiguration;
130494
130727
  Tooltip?: QuickSightAnalysisTooltipOptions;
130495
130728
  VisualPalette?: QuickSightAnalysisVisualPalette;
130496
130729
  XAxisDisplayOptions?: QuickSightAnalysisAxisDisplayOptions;
@@ -130506,6 +130739,13 @@ export type QuickSightAnalysisScatterPlotFieldWells = {
130506
130739
  ScatterPlotCategoricallyAggregatedFieldWells?: QuickSightAnalysisScatterPlotCategoricallyAggregatedFieldWells;
130507
130740
  ScatterPlotUnaggregatedFieldWells?: QuickSightAnalysisScatterPlotUnaggregatedFieldWells;
130508
130741
  };
130742
+ /**
130743
+ * Type definition for `AWS::QuickSight::Analysis.ScatterPlotSortConfiguration`.
130744
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-scatterplotsortconfiguration.html}
130745
+ */
130746
+ export type QuickSightAnalysisScatterPlotSortConfiguration = {
130747
+ ScatterPlotLimitConfiguration?: QuickSightAnalysisItemsLimitConfiguration;
130748
+ };
130509
130749
  /**
130510
130750
  * Type definition for `AWS::QuickSight::Analysis.ScatterPlotUnaggregatedFieldWells`.
130511
130751
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-scatterplotunaggregatedfieldwells.html}
@@ -130950,6 +131190,7 @@ export type QuickSightAnalysisSheetTextBox = {
130950
131190
  * @maxLength `150000`
130951
131191
  */
130952
131192
  Content?: string;
131193
+ Interactions?: any;
130953
131194
  /**
130954
131195
  * @minLength `1`
130955
131196
  * @maxLength `512`
@@ -131349,6 +131590,7 @@ export type QuickSightAnalysisTableConditionalFormattingOption = {
131349
131590
  export type QuickSightAnalysisTableConfiguration = {
131350
131591
  FieldOptions?: QuickSightAnalysisTableFieldOptions;
131351
131592
  FieldWells?: QuickSightAnalysisTableFieldWells;
131593
+ Interactions?: QuickSightAnalysisVisualInteractionOptions;
131352
131594
  PaginatedReportOptions?: QuickSightAnalysisTablePaginatedReportOptions;
131353
131595
  SortConfiguration?: QuickSightAnalysisTableSortConfiguration;
131354
131596
  /**
@@ -131653,6 +131895,7 @@ export type QuickSightAnalysisTextWrap = "NONE" | "WRAP";
131653
131895
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-thousandseparatoroptions.html}
131654
131896
  */
131655
131897
  export type QuickSightAnalysisThousandSeparatorOptions = {
131898
+ GroupingStyle?: QuickSightAnalysisDigitGroupingStyle;
131656
131899
  Symbol?: QuickSightAnalysisNumericSeparatorSymbol;
131657
131900
  Visibility?: QuickSightAnalysisVisibility;
131658
131901
  };
@@ -131945,6 +132188,7 @@ export type QuickSightAnalysisTreeMapConfiguration = {
131945
132188
  DataLabels?: QuickSightAnalysisDataLabelOptions;
131946
132189
  FieldWells?: QuickSightAnalysisTreeMapFieldWells;
131947
132190
  GroupLabelOptions?: QuickSightAnalysisChartAxisLabelOptions;
132191
+ Interactions?: QuickSightAnalysisVisualInteractionOptions;
131948
132192
  Legend?: QuickSightAnalysisLegendOptions;
131949
132193
  SizeLabelOptions?: QuickSightAnalysisChartAxisLabelOptions;
131950
132194
  SortConfiguration?: QuickSightAnalysisTreeMapSortConfiguration;
@@ -132148,8 +132392,15 @@ export type QuickSightAnalysisVisualCustomActionTrigger = "DATA_POINT_CLICK" | "
132148
132392
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-visualinteractionoptions.html}
132149
132393
  */
132150
132394
  export type QuickSightAnalysisVisualInteractionOptions = {
132151
- ContextMenuOption?: any;
132152
- VisualMenuOption?: any;
132395
+ ContextMenuOption?: QuickSightAnalysisContextMenuOption;
132396
+ VisualMenuOption?: QuickSightAnalysisVisualMenuOption;
132397
+ };
132398
+ /**
132399
+ * Type definition for `AWS::QuickSight::Analysis.VisualMenuOption`.
132400
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-visualmenuoption.html}
132401
+ */
132402
+ export type QuickSightAnalysisVisualMenuOption = {
132403
+ AvailabilityStatus?: QuickSightAnalysisDashboardBehavior;
132153
132404
  };
132154
132405
  /**
132155
132406
  * Type definition for `AWS::QuickSight::Analysis.VisualPalette`.
@@ -132220,6 +132471,7 @@ export type QuickSightAnalysisWaterfallChartConfiguration = {
132220
132471
  ColorConfiguration?: QuickSightAnalysisWaterfallChartColorConfiguration;
132221
132472
  DataLabels?: QuickSightAnalysisDataLabelOptions;
132222
132473
  FieldWells?: QuickSightAnalysisWaterfallChartFieldWells;
132474
+ Interactions?: QuickSightAnalysisVisualInteractionOptions;
132223
132475
  Legend?: QuickSightAnalysisLegendOptions;
132224
132476
  PrimaryYAxisDisplayOptions?: QuickSightAnalysisAxisDisplayOptions;
132225
132477
  PrimaryYAxisLabelOptions?: QuickSightAnalysisChartAxisLabelOptions;
@@ -132346,6 +132598,7 @@ export type QuickSightAnalysisWordCloudAggregatedFieldWells = {
132346
132598
  export type QuickSightAnalysisWordCloudChartConfiguration = {
132347
132599
  CategoryLabelOptions?: QuickSightAnalysisChartAxisLabelOptions;
132348
132600
  FieldWells?: QuickSightAnalysisWordCloudFieldWells;
132601
+ Interactions?: QuickSightAnalysisVisualInteractionOptions;
132349
132602
  SortConfiguration?: QuickSightAnalysisWordCloudSortConfiguration;
132350
132603
  WordCloudOptions?: QuickSightAnalysisWordCloudOptions;
132351
132604
  };
@@ -132955,6 +133208,7 @@ export type QuickSightDashboardBarChartConfiguration = {
132955
133208
  ContributionAnalysisDefaults?: QuickSightDashboardContributionAnalysisDefault[];
132956
133209
  DataLabels?: QuickSightDashboardDataLabelOptions;
132957
133210
  FieldWells?: QuickSightDashboardBarChartFieldWells;
133211
+ Interactions?: QuickSightDashboardVisualInteractionOptions;
132958
133212
  Legend?: QuickSightDashboardLegendOptions;
132959
133213
  Orientation?: QuickSightDashboardBarChartOrientation;
132960
133214
  /**
@@ -133077,6 +133331,7 @@ export type QuickSightDashboardBinWidthOptions = {
133077
133331
  export type QuickSightDashboardBodySectionConfiguration = {
133078
133332
  Content: QuickSightDashboardBodySectionContent;
133079
133333
  PageBreakConfiguration?: QuickSightDashboardSectionPageBreakConfiguration;
133334
+ RepeatConfiguration?: QuickSightDashboardBodySectionRepeatConfiguration;
133080
133335
  /**
133081
133336
  * @minLength `1`
133082
133337
  * @maxLength `512`
@@ -133092,6 +133347,72 @@ export type QuickSightDashboardBodySectionConfiguration = {
133092
133347
  export type QuickSightDashboardBodySectionContent = {
133093
133348
  Layout?: QuickSightDashboardSectionLayoutConfiguration;
133094
133349
  };
133350
+ /**
133351
+ * Type definition for `AWS::QuickSight::Dashboard.BodySectionDynamicCategoryDimensionConfiguration`.
133352
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-bodysectiondynamiccategorydimensionconfiguration.html}
133353
+ */
133354
+ export type QuickSightDashboardBodySectionDynamicCategoryDimensionConfiguration = {
133355
+ Column: QuickSightDashboardColumnIdentifier;
133356
+ /**
133357
+ * @min `1`
133358
+ * @max `1000`
133359
+ */
133360
+ Limit?: number;
133361
+ /**
133362
+ * @minLength `0`
133363
+ * @maxLength `100`
133364
+ */
133365
+ SortByMetrics?: QuickSightDashboardColumnSort[];
133366
+ };
133367
+ /**
133368
+ * Type definition for `AWS::QuickSight::Dashboard.BodySectionDynamicNumericDimensionConfiguration`.
133369
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-bodysectiondynamicnumericdimensionconfiguration.html}
133370
+ */
133371
+ export type QuickSightDashboardBodySectionDynamicNumericDimensionConfiguration = {
133372
+ Column: QuickSightDashboardColumnIdentifier;
133373
+ /**
133374
+ * @min `1`
133375
+ * @max `1000`
133376
+ */
133377
+ Limit?: number;
133378
+ /**
133379
+ * @minLength `0`
133380
+ * @maxLength `100`
133381
+ */
133382
+ SortByMetrics?: QuickSightDashboardColumnSort[];
133383
+ };
133384
+ /**
133385
+ * Type definition for `AWS::QuickSight::Dashboard.BodySectionRepeatConfiguration`.
133386
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-bodysectionrepeatconfiguration.html}
133387
+ */
133388
+ export type QuickSightDashboardBodySectionRepeatConfiguration = {
133389
+ /**
133390
+ * @minLength `0`
133391
+ * @maxLength `3`
133392
+ */
133393
+ DimensionConfigurations?: QuickSightDashboardBodySectionRepeatDimensionConfiguration[];
133394
+ /**
133395
+ * @minLength `0`
133396
+ * @maxLength `20`
133397
+ */
133398
+ NonRepeatingVisuals?: string[];
133399
+ PageBreakConfiguration?: QuickSightDashboardBodySectionRepeatPageBreakConfiguration;
133400
+ };
133401
+ /**
133402
+ * Type definition for `AWS::QuickSight::Dashboard.BodySectionRepeatDimensionConfiguration`.
133403
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-bodysectionrepeatdimensionconfiguration.html}
133404
+ */
133405
+ export type QuickSightDashboardBodySectionRepeatDimensionConfiguration = {
133406
+ DynamicCategoryDimensionConfiguration?: QuickSightDashboardBodySectionDynamicCategoryDimensionConfiguration;
133407
+ DynamicNumericDimensionConfiguration?: QuickSightDashboardBodySectionDynamicNumericDimensionConfiguration;
133408
+ };
133409
+ /**
133410
+ * Type definition for `AWS::QuickSight::Dashboard.BodySectionRepeatPageBreakConfiguration`.
133411
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-bodysectionrepeatpagebreakconfiguration.html}
133412
+ */
133413
+ export type QuickSightDashboardBodySectionRepeatPageBreakConfiguration = {
133414
+ After?: QuickSightDashboardSectionAfterPageBreak;
133415
+ };
133095
133416
  /**
133096
133417
  * Type definition for `AWS::QuickSight::Dashboard.BoxPlotAggregatedFieldWells`.
133097
133418
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-boxplotaggregatedfieldwells.html}
@@ -133117,6 +133438,7 @@ export type QuickSightDashboardBoxPlotChartConfiguration = {
133117
133438
  CategoryAxis?: QuickSightDashboardAxisDisplayOptions;
133118
133439
  CategoryLabelOptions?: QuickSightDashboardChartAxisLabelOptions;
133119
133440
  FieldWells?: QuickSightDashboardBoxPlotFieldWells;
133441
+ Interactions?: QuickSightDashboardVisualInteractionOptions;
133120
133442
  Legend?: QuickSightDashboardLegendOptions;
133121
133443
  PrimaryYAxisDisplayOptions?: QuickSightDashboardAxisDisplayOptions;
133122
133444
  PrimaryYAxisLabelOptions?: QuickSightDashboardChartAxisLabelOptions;
@@ -133500,6 +133822,7 @@ export type QuickSightDashboardComboChartConfiguration = {
133500
133822
  CategoryLabelOptions?: QuickSightDashboardChartAxisLabelOptions;
133501
133823
  ColorLabelOptions?: QuickSightDashboardChartAxisLabelOptions;
133502
133824
  FieldWells?: QuickSightDashboardComboChartFieldWells;
133825
+ Interactions?: QuickSightDashboardVisualInteractionOptions;
133503
133826
  Legend?: QuickSightDashboardLegendOptions;
133504
133827
  LineDataLabels?: QuickSightDashboardDataLabelOptions;
133505
133828
  PrimaryYAxisDisplayOptions?: QuickSightDashboardAxisDisplayOptions;
@@ -133713,6 +134036,13 @@ export type QuickSightDashboardConditionalFormattingSolidColor = {
133713
134036
  */
133714
134037
  Expression: string;
133715
134038
  };
134039
+ /**
134040
+ * Type definition for `AWS::QuickSight::Dashboard.ContextMenuOption`.
134041
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-contextmenuoption.html}
134042
+ */
134043
+ export type QuickSightDashboardContextMenuOption = {
134044
+ AvailabilityStatus?: QuickSightDashboardDashboardBehavior;
134045
+ };
133716
134046
  /**
133717
134047
  * Type definition for `AWS::QuickSight::Dashboard.ContributionAnalysisDefault`.
133718
134048
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-contributionanalysisdefault.html}
@@ -133825,6 +134155,7 @@ export type QuickSightDashboardCustomContentConfiguration = {
133825
134155
  */
133826
134156
  ContentUrl?: string;
133827
134157
  ImageScaling?: QuickSightDashboardCustomContentImageScalingConfiguration;
134158
+ Interactions?: QuickSightDashboardVisualInteractionOptions;
133828
134159
  };
133829
134160
  /**
133830
134161
  * Type definition for `AWS::QuickSight::Dashboard.CustomContentImageScalingConfiguration`.
@@ -134496,11 +134827,13 @@ export type QuickSightDashboardDateTimeParameterDeclaration = {
134496
134827
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-datetimepickercontroldisplayoptions.html}
134497
134828
  */
134498
134829
  export type QuickSightDashboardDateTimePickerControlDisplayOptions = {
134830
+ DateIconVisibility?: QuickSightDashboardVisibility;
134499
134831
  /**
134500
134832
  * @minLength `1`
134501
134833
  * @maxLength `128`
134502
134834
  */
134503
134835
  DateTimeFormat?: string;
134836
+ HelperTextVisibility?: QuickSightDashboardVisibility;
134504
134837
  InfoIconLabelOptions?: QuickSightDashboardSheetControlInfoIconLabelOptions;
134505
134838
  TitleOptions?: QuickSightDashboardLabelOptions;
134506
134839
  };
@@ -134735,6 +135068,11 @@ export type QuickSightDashboardDestinationParameterValueConfiguration = {
134735
135068
  SourceField?: string;
134736
135069
  SourceParameterName?: string;
134737
135070
  };
135071
+ /**
135072
+ * Type definition for `AWS::QuickSight::Dashboard.DigitGroupingStyle`.
135073
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-digitgroupingstyle.html}
135074
+ */
135075
+ export type QuickSightDashboardDigitGroupingStyle = "DEFAULT" | "LAKHS";
134738
135076
  /**
134739
135077
  * Type definition for `AWS::QuickSight::Dashboard.DimensionField`.
134740
135078
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-dimensionfield.html}
@@ -134984,6 +135322,7 @@ export type QuickSightDashboardFilledMapConditionalFormattingOption = {
134984
135322
  */
134985
135323
  export type QuickSightDashboardFilledMapConfiguration = {
134986
135324
  FieldWells?: QuickSightDashboardFilledMapFieldWells;
135325
+ Interactions?: QuickSightDashboardVisualInteractionOptions;
134987
135326
  Legend?: QuickSightDashboardLegendOptions;
134988
135327
  MapStyleOptions?: QuickSightDashboardGeospatialMapStyleOptions;
134989
135328
  SortConfiguration?: QuickSightDashboardFilledMapSortConfiguration;
@@ -135383,6 +135722,7 @@ export type QuickSightDashboardFontConfiguration = {
135383
135722
  */
135384
135723
  FontColor?: string;
135385
135724
  FontDecoration?: QuickSightDashboardFontDecoration;
135725
+ FontFamily?: string;
135386
135726
  FontSize?: QuickSightDashboardFontSize;
135387
135727
  FontStyle?: QuickSightDashboardFontStyle;
135388
135728
  FontWeight?: QuickSightDashboardFontWeight;
@@ -135613,6 +135953,7 @@ export type QuickSightDashboardFunnelChartConfiguration = {
135613
135953
  CategoryLabelOptions?: QuickSightDashboardChartAxisLabelOptions;
135614
135954
  DataLabelOptions?: QuickSightDashboardFunnelChartDataLabelOptions;
135615
135955
  FieldWells?: QuickSightDashboardFunnelChartFieldWells;
135956
+ Interactions?: QuickSightDashboardVisualInteractionOptions;
135616
135957
  SortConfiguration?: QuickSightDashboardFunnelChartSortConfiguration;
135617
135958
  Tooltip?: QuickSightDashboardTooltipOptions;
135618
135959
  ValueLabelOptions?: QuickSightDashboardChartAxisLabelOptions;
@@ -135695,6 +136036,20 @@ export type QuickSightDashboardFunnelChartVisual = {
135695
136036
  export type QuickSightDashboardGaugeChartArcConditionalFormatting = {
135696
136037
  ForegroundColor?: QuickSightDashboardConditionalFormattingColor;
135697
136038
  };
136039
+ /**
136040
+ * Type definition for `AWS::QuickSight::Dashboard.GaugeChartColorConfiguration`.
136041
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-gaugechartcolorconfiguration.html}
136042
+ */
136043
+ export type QuickSightDashboardGaugeChartColorConfiguration = {
136044
+ /**
136045
+ * @pattern `^#[A-F0-9]{6}$`
136046
+ */
136047
+ BackgroundColor?: string;
136048
+ /**
136049
+ * @pattern `^#[A-F0-9]{6}$`
136050
+ */
136051
+ ForegroundColor?: string;
136052
+ };
135698
136053
  /**
135699
136054
  * Type definition for `AWS::QuickSight::Dashboard.GaugeChartConditionalFormatting`.
135700
136055
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-gaugechartconditionalformatting.html}
@@ -135719,9 +136074,11 @@ export type QuickSightDashboardGaugeChartConditionalFormattingOption = {
135719
136074
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-gaugechartconfiguration.html}
135720
136075
  */
135721
136076
  export type QuickSightDashboardGaugeChartConfiguration = {
136077
+ ColorConfiguration?: QuickSightDashboardGaugeChartColorConfiguration;
135722
136078
  DataLabels?: QuickSightDashboardDataLabelOptions;
135723
136079
  FieldWells?: QuickSightDashboardGaugeChartFieldWells;
135724
136080
  GaugeChartOptions?: QuickSightDashboardGaugeChartOptions;
136081
+ Interactions?: QuickSightDashboardVisualInteractionOptions;
135725
136082
  TooltipOptions?: QuickSightDashboardTooltipOptions;
135726
136083
  VisualPalette?: QuickSightDashboardVisualPalette;
135727
136084
  };
@@ -136413,6 +136770,7 @@ export type QuickSightDashboardHeatMapConfiguration = {
136413
136770
  ColumnLabelOptions?: QuickSightDashboardChartAxisLabelOptions;
136414
136771
  DataLabels?: QuickSightDashboardDataLabelOptions;
136415
136772
  FieldWells?: QuickSightDashboardHeatMapFieldWells;
136773
+ Interactions?: QuickSightDashboardVisualInteractionOptions;
136416
136774
  Legend?: QuickSightDashboardLegendOptions;
136417
136775
  RowLabelOptions?: QuickSightDashboardChartAxisLabelOptions;
136418
136776
  SortConfiguration?: QuickSightDashboardHeatMapSortConfiguration;
@@ -136507,6 +136865,7 @@ export type QuickSightDashboardHistogramConfiguration = {
136507
136865
  BinOptions?: QuickSightDashboardHistogramBinOptions;
136508
136866
  DataLabels?: QuickSightDashboardDataLabelOptions;
136509
136867
  FieldWells?: QuickSightDashboardHistogramFieldWells;
136868
+ Interactions?: QuickSightDashboardVisualInteractionOptions;
136510
136869
  Tooltip?: QuickSightDashboardTooltipOptions;
136511
136870
  VisualPalette?: QuickSightDashboardVisualPalette;
136512
136871
  XAxisDisplayOptions?: QuickSightDashboardAxisDisplayOptions;
@@ -136638,6 +136997,7 @@ export type QuickSightDashboardInsightConfiguration = {
136638
136997
  */
136639
136998
  Computations?: QuickSightDashboardComputation[];
136640
136999
  CustomNarrative?: QuickSightDashboardCustomNarrativeOptions;
137000
+ Interactions?: QuickSightDashboardVisualInteractionOptions;
136641
137001
  };
136642
137002
  /**
136643
137003
  * Type definition for `AWS::QuickSight::Dashboard.InsightVisual`.
@@ -136776,6 +137136,7 @@ export type QuickSightDashboardKPIConditionalFormattingOption = {
136776
137136
  */
136777
137137
  export type QuickSightDashboardKPIConfiguration = {
136778
137138
  FieldWells?: QuickSightDashboardKPIFieldWells;
137139
+ Interactions?: QuickSightDashboardVisualInteractionOptions;
136779
137140
  KPIOptions?: QuickSightDashboardKPIOptions;
136780
137141
  SortConfiguration?: QuickSightDashboardKPISortConfiguration;
136781
137142
  };
@@ -137070,6 +137431,7 @@ export type QuickSightDashboardLineChartConfiguration = {
137070
137431
  * @maxLength `10`
137071
137432
  */
137072
137433
  ForecastConfigurations?: QuickSightDashboardForecastConfiguration[];
137434
+ Interactions?: QuickSightDashboardVisualInteractionOptions;
137073
137435
  Legend?: QuickSightDashboardLegendOptions;
137074
137436
  PrimaryYAxisDisplayOptions?: QuickSightDashboardLineSeriesAxisDisplayOptions;
137075
137437
  PrimaryYAxisLabelOptions?: QuickSightDashboardChartAxisLabelOptions;
@@ -138020,6 +138382,7 @@ export type QuickSightDashboardPieChartConfiguration = {
138020
138382
  DataLabels?: QuickSightDashboardDataLabelOptions;
138021
138383
  DonutOptions?: QuickSightDashboardDonutOptions;
138022
138384
  FieldWells?: QuickSightDashboardPieChartFieldWells;
138385
+ Interactions?: QuickSightDashboardVisualInteractionOptions;
138023
138386
  Legend?: QuickSightDashboardLegendOptions;
138024
138387
  SmallMultiplesOptions?: QuickSightDashboardSmallMultiplesOptions;
138025
138388
  SortConfiguration?: QuickSightDashboardPieChartSortConfiguration;
@@ -138170,6 +138533,7 @@ export type QuickSightDashboardPivotTableConditionalFormattingScopeRole = "FIELD
138170
138533
  export type QuickSightDashboardPivotTableConfiguration = {
138171
138534
  FieldOptions?: QuickSightDashboardPivotTableFieldOptions;
138172
138535
  FieldWells?: QuickSightDashboardPivotTableFieldWells;
138536
+ Interactions?: QuickSightDashboardVisualInteractionOptions;
138173
138537
  PaginatedReportOptions?: QuickSightDashboardPivotTablePaginatedReportOptions;
138174
138538
  SortConfiguration?: QuickSightDashboardPivotTableSortConfiguration;
138175
138539
  TableOptions?: QuickSightDashboardPivotTableOptions;
@@ -138592,6 +138956,7 @@ export type QuickSightDashboardRadarChartConfiguration = {
138592
138956
  ColorAxis?: QuickSightDashboardAxisDisplayOptions;
138593
138957
  ColorLabelOptions?: QuickSightDashboardChartAxisLabelOptions;
138594
138958
  FieldWells?: QuickSightDashboardRadarChartFieldWells;
138959
+ Interactions?: QuickSightDashboardVisualInteractionOptions;
138595
138960
  Legend?: QuickSightDashboardLegendOptions;
138596
138961
  Shape?: QuickSightDashboardRadarChartShape;
138597
138962
  SortConfiguration?: QuickSightDashboardRadarChartSortConfiguration;
@@ -138943,6 +139308,7 @@ export type QuickSightDashboardSankeyDiagramAggregatedFieldWells = {
138943
139308
  export type QuickSightDashboardSankeyDiagramChartConfiguration = {
138944
139309
  DataLabels?: QuickSightDashboardDataLabelOptions;
138945
139310
  FieldWells?: QuickSightDashboardSankeyDiagramFieldWells;
139311
+ Interactions?: QuickSightDashboardVisualInteractionOptions;
138946
139312
  SortConfiguration?: QuickSightDashboardSankeyDiagramSortConfiguration;
138947
139313
  };
138948
139314
  /**
@@ -139028,7 +139394,9 @@ export type QuickSightDashboardScatterPlotCategoricallyAggregatedFieldWells = {
139028
139394
  export type QuickSightDashboardScatterPlotConfiguration = {
139029
139395
  DataLabels?: QuickSightDashboardDataLabelOptions;
139030
139396
  FieldWells?: QuickSightDashboardScatterPlotFieldWells;
139397
+ Interactions?: QuickSightDashboardVisualInteractionOptions;
139031
139398
  Legend?: QuickSightDashboardLegendOptions;
139399
+ SortConfiguration?: QuickSightDashboardScatterPlotSortConfiguration;
139032
139400
  Tooltip?: QuickSightDashboardTooltipOptions;
139033
139401
  VisualPalette?: QuickSightDashboardVisualPalette;
139034
139402
  XAxisDisplayOptions?: QuickSightDashboardAxisDisplayOptions;
@@ -139044,6 +139412,13 @@ export type QuickSightDashboardScatterPlotFieldWells = {
139044
139412
  ScatterPlotCategoricallyAggregatedFieldWells?: QuickSightDashboardScatterPlotCategoricallyAggregatedFieldWells;
139045
139413
  ScatterPlotUnaggregatedFieldWells?: QuickSightDashboardScatterPlotUnaggregatedFieldWells;
139046
139414
  };
139415
+ /**
139416
+ * Type definition for `AWS::QuickSight::Dashboard.ScatterPlotSortConfiguration`.
139417
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-scatterplotsortconfiguration.html}
139418
+ */
139419
+ export type QuickSightDashboardScatterPlotSortConfiguration = {
139420
+ ScatterPlotLimitConfiguration?: QuickSightDashboardItemsLimitConfiguration;
139421
+ };
139047
139422
  /**
139048
139423
  * Type definition for `AWS::QuickSight::Dashboard.ScatterPlotUnaggregatedFieldWells`.
139049
139424
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-scatterplotunaggregatedfieldwells.html}
@@ -139504,6 +139879,7 @@ export type QuickSightDashboardSheetTextBox = {
139504
139879
  * @maxLength `150000`
139505
139880
  */
139506
139881
  Content?: string;
139882
+ Interactions?: any;
139507
139883
  /**
139508
139884
  * @minLength `1`
139509
139885
  * @maxLength `512`
@@ -139903,6 +140279,7 @@ export type QuickSightDashboardTableConditionalFormattingOption = {
139903
140279
  export type QuickSightDashboardTableConfiguration = {
139904
140280
  FieldOptions?: QuickSightDashboardTableFieldOptions;
139905
140281
  FieldWells?: QuickSightDashboardTableFieldWells;
140282
+ Interactions?: QuickSightDashboardVisualInteractionOptions;
139906
140283
  PaginatedReportOptions?: QuickSightDashboardTablePaginatedReportOptions;
139907
140284
  SortConfiguration?: QuickSightDashboardTableSortConfiguration;
139908
140285
  /**
@@ -140207,6 +140584,7 @@ export type QuickSightDashboardTextWrap = "NONE" | "WRAP";
140207
140584
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-thousandseparatoroptions.html}
140208
140585
  */
140209
140586
  export type QuickSightDashboardThousandSeparatorOptions = {
140587
+ GroupingStyle?: QuickSightDashboardDigitGroupingStyle;
140210
140588
  Symbol?: QuickSightDashboardNumericSeparatorSymbol;
140211
140589
  Visibility?: QuickSightDashboardVisibility;
140212
140590
  };
@@ -140499,6 +140877,7 @@ export type QuickSightDashboardTreeMapConfiguration = {
140499
140877
  DataLabels?: QuickSightDashboardDataLabelOptions;
140500
140878
  FieldWells?: QuickSightDashboardTreeMapFieldWells;
140501
140879
  GroupLabelOptions?: QuickSightDashboardChartAxisLabelOptions;
140880
+ Interactions?: QuickSightDashboardVisualInteractionOptions;
140502
140881
  Legend?: QuickSightDashboardLegendOptions;
140503
140882
  SizeLabelOptions?: QuickSightDashboardChartAxisLabelOptions;
140504
140883
  SortConfiguration?: QuickSightDashboardTreeMapSortConfiguration;
@@ -140709,7 +141088,7 @@ export type QuickSightDashboardVisualCustomActionTrigger = "DATA_POINT_CLICK" |
140709
141088
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualinteractionoptions.html}
140710
141089
  */
140711
141090
  export type QuickSightDashboardVisualInteractionOptions = {
140712
- ContextMenuOption?: any;
141091
+ ContextMenuOption?: QuickSightDashboardContextMenuOption;
140713
141092
  VisualMenuOption?: QuickSightDashboardVisualMenuOption;
140714
141093
  };
140715
141094
  /**
@@ -140788,6 +141167,7 @@ export type QuickSightDashboardWaterfallChartConfiguration = {
140788
141167
  ColorConfiguration?: QuickSightDashboardWaterfallChartColorConfiguration;
140789
141168
  DataLabels?: QuickSightDashboardDataLabelOptions;
140790
141169
  FieldWells?: QuickSightDashboardWaterfallChartFieldWells;
141170
+ Interactions?: QuickSightDashboardVisualInteractionOptions;
140791
141171
  Legend?: QuickSightDashboardLegendOptions;
140792
141172
  PrimaryYAxisDisplayOptions?: QuickSightDashboardAxisDisplayOptions;
140793
141173
  PrimaryYAxisLabelOptions?: QuickSightDashboardChartAxisLabelOptions;
@@ -140914,6 +141294,7 @@ export type QuickSightDashboardWordCloudAggregatedFieldWells = {
140914
141294
  export type QuickSightDashboardWordCloudChartConfiguration = {
140915
141295
  CategoryLabelOptions?: QuickSightDashboardChartAxisLabelOptions;
140916
141296
  FieldWells?: QuickSightDashboardWordCloudFieldWells;
141297
+ Interactions?: QuickSightDashboardVisualInteractionOptions;
140917
141298
  SortConfiguration?: QuickSightDashboardWordCloudSortConfiguration;
140918
141299
  WordCloudOptions?: QuickSightDashboardWordCloudOptions;
140919
141300
  };
@@ -143798,6 +144179,7 @@ export type QuickSightTemplateBarChartConfiguration = {
143798
144179
  ContributionAnalysisDefaults?: QuickSightTemplateContributionAnalysisDefault[];
143799
144180
  DataLabels?: QuickSightTemplateDataLabelOptions;
143800
144181
  FieldWells?: QuickSightTemplateBarChartFieldWells;
144182
+ Interactions?: QuickSightTemplateVisualInteractionOptions;
143801
144183
  Legend?: QuickSightTemplateLegendOptions;
143802
144184
  Orientation?: QuickSightTemplateBarChartOrientation;
143803
144185
  /**
@@ -143920,6 +144302,7 @@ export type QuickSightTemplateBinWidthOptions = {
143920
144302
  export type QuickSightTemplateBodySectionConfiguration = {
143921
144303
  Content: QuickSightTemplateBodySectionContent;
143922
144304
  PageBreakConfiguration?: QuickSightTemplateSectionPageBreakConfiguration;
144305
+ RepeatConfiguration?: QuickSightTemplateBodySectionRepeatConfiguration;
143923
144306
  /**
143924
144307
  * @minLength `1`
143925
144308
  * @maxLength `512`
@@ -143935,6 +144318,72 @@ export type QuickSightTemplateBodySectionConfiguration = {
143935
144318
  export type QuickSightTemplateBodySectionContent = {
143936
144319
  Layout?: QuickSightTemplateSectionLayoutConfiguration;
143937
144320
  };
144321
+ /**
144322
+ * Type definition for `AWS::QuickSight::Template.BodySectionDynamicCategoryDimensionConfiguration`.
144323
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-bodysectiondynamiccategorydimensionconfiguration.html}
144324
+ */
144325
+ export type QuickSightTemplateBodySectionDynamicCategoryDimensionConfiguration = {
144326
+ Column: QuickSightTemplateColumnIdentifier;
144327
+ /**
144328
+ * @min `1`
144329
+ * @max `1000`
144330
+ */
144331
+ Limit?: number;
144332
+ /**
144333
+ * @minLength `0`
144334
+ * @maxLength `100`
144335
+ */
144336
+ SortByMetrics?: QuickSightTemplateColumnSort[];
144337
+ };
144338
+ /**
144339
+ * Type definition for `AWS::QuickSight::Template.BodySectionDynamicNumericDimensionConfiguration`.
144340
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-bodysectiondynamicnumericdimensionconfiguration.html}
144341
+ */
144342
+ export type QuickSightTemplateBodySectionDynamicNumericDimensionConfiguration = {
144343
+ Column: QuickSightTemplateColumnIdentifier;
144344
+ /**
144345
+ * @min `1`
144346
+ * @max `1000`
144347
+ */
144348
+ Limit?: number;
144349
+ /**
144350
+ * @minLength `0`
144351
+ * @maxLength `100`
144352
+ */
144353
+ SortByMetrics?: QuickSightTemplateColumnSort[];
144354
+ };
144355
+ /**
144356
+ * Type definition for `AWS::QuickSight::Template.BodySectionRepeatConfiguration`.
144357
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-bodysectionrepeatconfiguration.html}
144358
+ */
144359
+ export type QuickSightTemplateBodySectionRepeatConfiguration = {
144360
+ /**
144361
+ * @minLength `0`
144362
+ * @maxLength `3`
144363
+ */
144364
+ DimensionConfigurations?: QuickSightTemplateBodySectionRepeatDimensionConfiguration[];
144365
+ /**
144366
+ * @minLength `0`
144367
+ * @maxLength `20`
144368
+ */
144369
+ NonRepeatingVisuals?: string[];
144370
+ PageBreakConfiguration?: QuickSightTemplateBodySectionRepeatPageBreakConfiguration;
144371
+ };
144372
+ /**
144373
+ * Type definition for `AWS::QuickSight::Template.BodySectionRepeatDimensionConfiguration`.
144374
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-bodysectionrepeatdimensionconfiguration.html}
144375
+ */
144376
+ export type QuickSightTemplateBodySectionRepeatDimensionConfiguration = {
144377
+ DynamicCategoryDimensionConfiguration?: QuickSightTemplateBodySectionDynamicCategoryDimensionConfiguration;
144378
+ DynamicNumericDimensionConfiguration?: QuickSightTemplateBodySectionDynamicNumericDimensionConfiguration;
144379
+ };
144380
+ /**
144381
+ * Type definition for `AWS::QuickSight::Template.BodySectionRepeatPageBreakConfiguration`.
144382
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-bodysectionrepeatpagebreakconfiguration.html}
144383
+ */
144384
+ export type QuickSightTemplateBodySectionRepeatPageBreakConfiguration = {
144385
+ After?: QuickSightTemplateSectionAfterPageBreak;
144386
+ };
143938
144387
  /**
143939
144388
  * Type definition for `AWS::QuickSight::Template.BoxPlotAggregatedFieldWells`.
143940
144389
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-boxplotaggregatedfieldwells.html}
@@ -143960,6 +144409,7 @@ export type QuickSightTemplateBoxPlotChartConfiguration = {
143960
144409
  CategoryAxis?: QuickSightTemplateAxisDisplayOptions;
143961
144410
  CategoryLabelOptions?: QuickSightTemplateChartAxisLabelOptions;
143962
144411
  FieldWells?: QuickSightTemplateBoxPlotFieldWells;
144412
+ Interactions?: QuickSightTemplateVisualInteractionOptions;
143963
144413
  Legend?: QuickSightTemplateLegendOptions;
143964
144414
  PrimaryYAxisDisplayOptions?: QuickSightTemplateAxisDisplayOptions;
143965
144415
  PrimaryYAxisLabelOptions?: QuickSightTemplateChartAxisLabelOptions;
@@ -144390,6 +144840,7 @@ export type QuickSightTemplateComboChartConfiguration = {
144390
144840
  CategoryLabelOptions?: QuickSightTemplateChartAxisLabelOptions;
144391
144841
  ColorLabelOptions?: QuickSightTemplateChartAxisLabelOptions;
144392
144842
  FieldWells?: QuickSightTemplateComboChartFieldWells;
144843
+ Interactions?: QuickSightTemplateVisualInteractionOptions;
144393
144844
  Legend?: QuickSightTemplateLegendOptions;
144394
144845
  LineDataLabels?: QuickSightTemplateDataLabelOptions;
144395
144846
  PrimaryYAxisDisplayOptions?: QuickSightTemplateAxisDisplayOptions;
@@ -144603,6 +145054,13 @@ export type QuickSightTemplateConditionalFormattingSolidColor = {
144603
145054
  */
144604
145055
  Expression: string;
144605
145056
  };
145057
+ /**
145058
+ * Type definition for `AWS::QuickSight::Template.ContextMenuOption`.
145059
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-contextmenuoption.html}
145060
+ */
145061
+ export type QuickSightTemplateContextMenuOption = {
145062
+ AvailabilityStatus?: QuickSightTemplateDashboardBehavior;
145063
+ };
144606
145064
  /**
144607
145065
  * Type definition for `AWS::QuickSight::Template.ContributionAnalysisDefault`.
144608
145066
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-contributionanalysisdefault.html}
@@ -144715,6 +145173,7 @@ export type QuickSightTemplateCustomContentConfiguration = {
144715
145173
  */
144716
145174
  ContentUrl?: string;
144717
145175
  ImageScaling?: QuickSightTemplateCustomContentImageScalingConfiguration;
145176
+ Interactions?: QuickSightTemplateVisualInteractionOptions;
144718
145177
  };
144719
145178
  /**
144720
145179
  * Type definition for `AWS::QuickSight::Template.CustomContentImageScalingConfiguration`.
@@ -145160,11 +145619,13 @@ export type QuickSightTemplateDateTimeParameterDeclaration = {
145160
145619
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-datetimepickercontroldisplayoptions.html}
145161
145620
  */
145162
145621
  export type QuickSightTemplateDateTimePickerControlDisplayOptions = {
145622
+ DateIconVisibility?: any;
145163
145623
  /**
145164
145624
  * @minLength `1`
145165
145625
  * @maxLength `128`
145166
145626
  */
145167
145627
  DateTimeFormat?: string;
145628
+ HelperTextVisibility?: any;
145168
145629
  InfoIconLabelOptions?: QuickSightTemplateSheetControlInfoIconLabelOptions;
145169
145630
  TitleOptions?: QuickSightTemplateLabelOptions;
145170
145631
  };
@@ -145383,6 +145844,11 @@ export type QuickSightTemplateDestinationParameterValueConfiguration = {
145383
145844
  SourceField?: string;
145384
145845
  SourceParameterName?: string;
145385
145846
  };
145847
+ /**
145848
+ * Type definition for `AWS::QuickSight::Template.DigitGroupingStyle`.
145849
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-digitgroupingstyle.html}
145850
+ */
145851
+ export type QuickSightTemplateDigitGroupingStyle = "DEFAULT" | "LAKHS";
145386
145852
  /**
145387
145853
  * Type definition for `AWS::QuickSight::Template.DimensionField`.
145388
145854
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-dimensionfield.html}
@@ -145608,6 +146074,7 @@ export type QuickSightTemplateFilledMapConditionalFormattingOption = {
145608
146074
  */
145609
146075
  export type QuickSightTemplateFilledMapConfiguration = {
145610
146076
  FieldWells?: QuickSightTemplateFilledMapFieldWells;
146077
+ Interactions?: QuickSightTemplateVisualInteractionOptions;
145611
146078
  Legend?: QuickSightTemplateLegendOptions;
145612
146079
  MapStyleOptions?: QuickSightTemplateGeospatialMapStyleOptions;
145613
146080
  SortConfiguration?: QuickSightTemplateFilledMapSortConfiguration;
@@ -146007,6 +146474,7 @@ export type QuickSightTemplateFontConfiguration = {
146007
146474
  */
146008
146475
  FontColor?: string;
146009
146476
  FontDecoration?: QuickSightTemplateFontDecoration;
146477
+ FontFamily?: string;
146010
146478
  FontSize?: QuickSightTemplateFontSize;
146011
146479
  FontStyle?: QuickSightTemplateFontStyle;
146012
146480
  FontWeight?: QuickSightTemplateFontWeight;
@@ -146021,6 +146489,10 @@ export type QuickSightTemplateFontDecoration = "UNDERLINE" | "NONE";
146021
146489
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-fontsize.html}
146022
146490
  */
146023
146491
  export type QuickSightTemplateFontSize = {
146492
+ /**
146493
+ * String based length that is composed of value and unit in px
146494
+ */
146495
+ Absolute?: string;
146024
146496
  Relative?: QuickSightTemplateRelativeFontSize;
146025
146497
  };
146026
146498
  /**
@@ -146233,6 +146705,7 @@ export type QuickSightTemplateFunnelChartConfiguration = {
146233
146705
  CategoryLabelOptions?: QuickSightTemplateChartAxisLabelOptions;
146234
146706
  DataLabelOptions?: QuickSightTemplateFunnelChartDataLabelOptions;
146235
146707
  FieldWells?: QuickSightTemplateFunnelChartFieldWells;
146708
+ Interactions?: QuickSightTemplateVisualInteractionOptions;
146236
146709
  SortConfiguration?: QuickSightTemplateFunnelChartSortConfiguration;
146237
146710
  Tooltip?: QuickSightTemplateTooltipOptions;
146238
146711
  ValueLabelOptions?: QuickSightTemplateChartAxisLabelOptions;
@@ -146315,6 +146788,20 @@ export type QuickSightTemplateFunnelChartVisual = {
146315
146788
  export type QuickSightTemplateGaugeChartArcConditionalFormatting = {
146316
146789
  ForegroundColor?: QuickSightTemplateConditionalFormattingColor;
146317
146790
  };
146791
+ /**
146792
+ * Type definition for `AWS::QuickSight::Template.GaugeChartColorConfiguration`.
146793
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-gaugechartcolorconfiguration.html}
146794
+ */
146795
+ export type QuickSightTemplateGaugeChartColorConfiguration = {
146796
+ /**
146797
+ * @pattern `^#[A-F0-9]{6}$`
146798
+ */
146799
+ BackgroundColor?: string;
146800
+ /**
146801
+ * @pattern `^#[A-F0-9]{6}$`
146802
+ */
146803
+ ForegroundColor?: string;
146804
+ };
146318
146805
  /**
146319
146806
  * Type definition for `AWS::QuickSight::Template.GaugeChartConditionalFormatting`.
146320
146807
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-gaugechartconditionalformatting.html}
@@ -146339,9 +146826,11 @@ export type QuickSightTemplateGaugeChartConditionalFormattingOption = {
146339
146826
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-gaugechartconfiguration.html}
146340
146827
  */
146341
146828
  export type QuickSightTemplateGaugeChartConfiguration = {
146829
+ ColorConfiguration?: QuickSightTemplateGaugeChartColorConfiguration;
146342
146830
  DataLabels?: QuickSightTemplateDataLabelOptions;
146343
146831
  FieldWells?: QuickSightTemplateGaugeChartFieldWells;
146344
146832
  GaugeChartOptions?: QuickSightTemplateGaugeChartOptions;
146833
+ Interactions?: QuickSightTemplateVisualInteractionOptions;
146345
146834
  TooltipOptions?: QuickSightTemplateTooltipOptions;
146346
146835
  VisualPalette?: QuickSightTemplateVisualPalette;
146347
146836
  };
@@ -146718,6 +147207,7 @@ export type QuickSightTemplateHeatMapConfiguration = {
146718
147207
  ColumnLabelOptions?: QuickSightTemplateChartAxisLabelOptions;
146719
147208
  DataLabels?: QuickSightTemplateDataLabelOptions;
146720
147209
  FieldWells?: QuickSightTemplateHeatMapFieldWells;
147210
+ Interactions?: QuickSightTemplateVisualInteractionOptions;
146721
147211
  Legend?: QuickSightTemplateLegendOptions;
146722
147212
  RowLabelOptions?: QuickSightTemplateChartAxisLabelOptions;
146723
147213
  SortConfiguration?: QuickSightTemplateHeatMapSortConfiguration;
@@ -146812,6 +147302,7 @@ export type QuickSightTemplateHistogramConfiguration = {
146812
147302
  BinOptions?: QuickSightTemplateHistogramBinOptions;
146813
147303
  DataLabels?: QuickSightTemplateDataLabelOptions;
146814
147304
  FieldWells?: QuickSightTemplateHistogramFieldWells;
147305
+ Interactions?: QuickSightTemplateVisualInteractionOptions;
146815
147306
  Tooltip?: QuickSightTemplateTooltipOptions;
146816
147307
  VisualPalette?: QuickSightTemplateVisualPalette;
146817
147308
  XAxisDisplayOptions?: QuickSightTemplateAxisDisplayOptions;
@@ -146930,6 +147421,7 @@ export type QuickSightTemplateInsightConfiguration = {
146930
147421
  */
146931
147422
  Computations?: QuickSightTemplateComputation[];
146932
147423
  CustomNarrative?: QuickSightTemplateCustomNarrativeOptions;
147424
+ Interactions?: QuickSightTemplateVisualInteractionOptions;
146933
147425
  };
146934
147426
  /**
146935
147427
  * Type definition for `AWS::QuickSight::Template.InsightVisual`.
@@ -147052,6 +147544,7 @@ export type QuickSightTemplateKPIConditionalFormattingOption = {
147052
147544
  */
147053
147545
  export type QuickSightTemplateKPIConfiguration = {
147054
147546
  FieldWells?: QuickSightTemplateKPIFieldWells;
147547
+ Interactions?: QuickSightTemplateVisualInteractionOptions;
147055
147548
  KPIOptions?: QuickSightTemplateKPIOptions;
147056
147549
  SortConfiguration?: QuickSightTemplateKPISortConfiguration;
147057
147550
  };
@@ -147282,6 +147775,7 @@ export type QuickSightTemplateLineChartConfiguration = {
147282
147775
  * @maxLength `10`
147283
147776
  */
147284
147777
  ForecastConfigurations?: QuickSightTemplateForecastConfiguration[];
147778
+ Interactions?: QuickSightTemplateVisualInteractionOptions;
147285
147779
  Legend?: QuickSightTemplateLegendOptions;
147286
147780
  PrimaryYAxisDisplayOptions?: QuickSightTemplateLineSeriesAxisDisplayOptions;
147287
147781
  PrimaryYAxisLabelOptions?: QuickSightTemplateChartAxisLabelOptions;
@@ -148190,6 +148684,7 @@ export type QuickSightTemplatePieChartConfiguration = {
148190
148684
  DataLabels?: QuickSightTemplateDataLabelOptions;
148191
148685
  DonutOptions?: QuickSightTemplateDonutOptions;
148192
148686
  FieldWells?: QuickSightTemplatePieChartFieldWells;
148687
+ Interactions?: QuickSightTemplateVisualInteractionOptions;
148193
148688
  Legend?: QuickSightTemplateLegendOptions;
148194
148689
  SmallMultiplesOptions?: QuickSightTemplateSmallMultiplesOptions;
148195
148690
  SortConfiguration?: QuickSightTemplatePieChartSortConfiguration;
@@ -148340,6 +148835,7 @@ export type QuickSightTemplatePivotTableConditionalFormattingScopeRole = "FIELD"
148340
148835
  export type QuickSightTemplatePivotTableConfiguration = {
148341
148836
  FieldOptions?: QuickSightTemplatePivotTableFieldOptions;
148342
148837
  FieldWells?: QuickSightTemplatePivotTableFieldWells;
148838
+ Interactions?: QuickSightTemplateVisualInteractionOptions;
148343
148839
  PaginatedReportOptions?: QuickSightTemplatePivotTablePaginatedReportOptions;
148344
148840
  SortConfiguration?: QuickSightTemplatePivotTableSortConfiguration;
148345
148841
  TableOptions?: QuickSightTemplatePivotTableOptions;
@@ -148774,6 +149270,7 @@ export type QuickSightTemplateRadarChartConfiguration = {
148774
149270
  ColorAxis?: QuickSightTemplateAxisDisplayOptions;
148775
149271
  ColorLabelOptions?: QuickSightTemplateChartAxisLabelOptions;
148776
149272
  FieldWells?: QuickSightTemplateRadarChartFieldWells;
149273
+ Interactions?: QuickSightTemplateVisualInteractionOptions;
148777
149274
  Legend?: QuickSightTemplateLegendOptions;
148778
149275
  Shape?: QuickSightTemplateRadarChartShape;
148779
149276
  SortConfiguration?: QuickSightTemplateRadarChartSortConfiguration;
@@ -149125,6 +149622,7 @@ export type QuickSightTemplateSankeyDiagramAggregatedFieldWells = {
149125
149622
  export type QuickSightTemplateSankeyDiagramChartConfiguration = {
149126
149623
  DataLabels?: QuickSightTemplateDataLabelOptions;
149127
149624
  FieldWells?: QuickSightTemplateSankeyDiagramFieldWells;
149625
+ Interactions?: QuickSightTemplateVisualInteractionOptions;
149128
149626
  SortConfiguration?: QuickSightTemplateSankeyDiagramSortConfiguration;
149129
149627
  };
149130
149628
  /**
@@ -149210,7 +149708,9 @@ export type QuickSightTemplateScatterPlotCategoricallyAggregatedFieldWells = {
149210
149708
  export type QuickSightTemplateScatterPlotConfiguration = {
149211
149709
  DataLabels?: QuickSightTemplateDataLabelOptions;
149212
149710
  FieldWells?: QuickSightTemplateScatterPlotFieldWells;
149711
+ Interactions?: QuickSightTemplateVisualInteractionOptions;
149213
149712
  Legend?: QuickSightTemplateLegendOptions;
149713
+ SortConfiguration?: QuickSightTemplateScatterPlotSortConfiguration;
149214
149714
  Tooltip?: QuickSightTemplateTooltipOptions;
149215
149715
  VisualPalette?: QuickSightTemplateVisualPalette;
149216
149716
  XAxisDisplayOptions?: QuickSightTemplateAxisDisplayOptions;
@@ -149226,6 +149726,13 @@ export type QuickSightTemplateScatterPlotFieldWells = {
149226
149726
  ScatterPlotCategoricallyAggregatedFieldWells?: QuickSightTemplateScatterPlotCategoricallyAggregatedFieldWells;
149227
149727
  ScatterPlotUnaggregatedFieldWells?: QuickSightTemplateScatterPlotUnaggregatedFieldWells;
149228
149728
  };
149729
+ /**
149730
+ * Type definition for `AWS::QuickSight::Template.ScatterPlotSortConfiguration`.
149731
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-scatterplotsortconfiguration.html}
149732
+ */
149733
+ export type QuickSightTemplateScatterPlotSortConfiguration = {
149734
+ ScatterPlotLimitConfiguration?: QuickSightTemplateItemsLimitConfiguration;
149735
+ };
149229
149736
  /**
149230
149737
  * Type definition for `AWS::QuickSight::Template.ScatterPlotUnaggregatedFieldWells`.
149231
149738
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-scatterplotunaggregatedfieldwells.html}
@@ -149670,6 +150177,7 @@ export type QuickSightTemplateSheetTextBox = {
149670
150177
  * @maxLength `150000`
149671
150178
  */
149672
150179
  Content?: string;
150180
+ Interactions?: any;
149673
150181
  /**
149674
150182
  * @minLength `1`
149675
150183
  * @maxLength `512`
@@ -150008,6 +150516,7 @@ export type QuickSightTemplateTableConditionalFormattingOption = {
150008
150516
  export type QuickSightTemplateTableConfiguration = {
150009
150517
  FieldOptions?: QuickSightTemplateTableFieldOptions;
150010
150518
  FieldWells?: QuickSightTemplateTableFieldWells;
150519
+ Interactions?: QuickSightTemplateVisualInteractionOptions;
150011
150520
  PaginatedReportOptions?: QuickSightTemplateTablePaginatedReportOptions;
150012
150521
  SortConfiguration?: QuickSightTemplateTableSortConfiguration;
150013
150522
  /**
@@ -150469,6 +150978,7 @@ export type QuickSightTemplateTextWrap = "NONE" | "WRAP";
150469
150978
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-thousandseparatoroptions.html}
150470
150979
  */
150471
150980
  export type QuickSightTemplateThousandSeparatorOptions = {
150981
+ GroupingStyle?: QuickSightTemplateDigitGroupingStyle;
150472
150982
  Symbol?: QuickSightTemplateNumericSeparatorSymbol;
150473
150983
  Visibility?: any;
150474
150984
  };
@@ -150761,6 +151271,7 @@ export type QuickSightTemplateTreeMapConfiguration = {
150761
151271
  DataLabels?: QuickSightTemplateDataLabelOptions;
150762
151272
  FieldWells?: QuickSightTemplateTreeMapFieldWells;
150763
151273
  GroupLabelOptions?: QuickSightTemplateChartAxisLabelOptions;
151274
+ Interactions?: QuickSightTemplateVisualInteractionOptions;
150764
151275
  Legend?: QuickSightTemplateLegendOptions;
150765
151276
  SizeLabelOptions?: QuickSightTemplateChartAxisLabelOptions;
150766
151277
  SortConfiguration?: QuickSightTemplateTreeMapSortConfiguration;
@@ -150953,6 +151464,21 @@ export type QuickSightTemplateVisualCustomActionOperation = {
150953
151464
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-visualcustomactiontrigger.html}
150954
151465
  */
150955
151466
  export type QuickSightTemplateVisualCustomActionTrigger = "DATA_POINT_CLICK" | "DATA_POINT_MENU";
151467
+ /**
151468
+ * Type definition for `AWS::QuickSight::Template.VisualInteractionOptions`.
151469
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-visualinteractionoptions.html}
151470
+ */
151471
+ export type QuickSightTemplateVisualInteractionOptions = {
151472
+ ContextMenuOption?: QuickSightTemplateContextMenuOption;
151473
+ VisualMenuOption?: QuickSightTemplateVisualMenuOption;
151474
+ };
151475
+ /**
151476
+ * Type definition for `AWS::QuickSight::Template.VisualMenuOption`.
151477
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-visualmenuoption.html}
151478
+ */
151479
+ export type QuickSightTemplateVisualMenuOption = {
151480
+ AvailabilityStatus?: QuickSightTemplateDashboardBehavior;
151481
+ };
150956
151482
  /**
150957
151483
  * Type definition for `AWS::QuickSight::Template.VisualPalette`.
150958
151484
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-visualpalette.html}
@@ -151022,6 +151548,7 @@ export type QuickSightTemplateWaterfallChartConfiguration = {
151022
151548
  ColorConfiguration?: QuickSightTemplateWaterfallChartColorConfiguration;
151023
151549
  DataLabels?: QuickSightTemplateDataLabelOptions;
151024
151550
  FieldWells?: QuickSightTemplateWaterfallChartFieldWells;
151551
+ Interactions?: QuickSightTemplateVisualInteractionOptions;
151025
151552
  Legend?: QuickSightTemplateLegendOptions;
151026
151553
  PrimaryYAxisDisplayOptions?: QuickSightTemplateAxisDisplayOptions;
151027
151554
  PrimaryYAxisLabelOptions?: QuickSightTemplateChartAxisLabelOptions;
@@ -151148,6 +151675,7 @@ export type QuickSightTemplateWordCloudAggregatedFieldWells = {
151148
151675
  export type QuickSightTemplateWordCloudChartConfiguration = {
151149
151676
  CategoryLabelOptions?: QuickSightTemplateChartAxisLabelOptions;
151150
151677
  FieldWells?: QuickSightTemplateWordCloudFieldWells;
151678
+ Interactions?: QuickSightTemplateVisualInteractionOptions;
151151
151679
  SortConfiguration?: QuickSightTemplateWordCloudSortConfiguration;
151152
151680
  WordCloudOptions?: QuickSightTemplateWordCloudOptions;
151153
151681
  };
@@ -181924,7 +182452,37 @@ export type TransferAgreementProps = {
181924
182452
  * @maxLength `1024`
181925
182453
  * @pattern `^(|/.*)$`
181926
182454
  */
181927
- BaseDirectory: string;
182455
+ BaseDirectory?: string;
182456
+ /**
182457
+ * Specifies a separate directory for each type of file to store for an AS2 message.
182458
+ */
182459
+ CustomDirectories?: {
182460
+ /**
182461
+ * Specifies a location to store the failed files for an AS2 message.
182462
+ * @pattern `(|/.*)`
182463
+ */
182464
+ FailedFilesDirectory: string;
182465
+ /**
182466
+ * Specifies a location to store the MDN file for an AS2 message.
182467
+ * @pattern `(|/.*)`
182468
+ */
182469
+ MdnFilesDirectory: string;
182470
+ /**
182471
+ * Specifies a location to store the payload file for an AS2 message.
182472
+ * @pattern `(|/.*)`
182473
+ */
182474
+ PayloadFilesDirectory: string;
182475
+ /**
182476
+ * Specifies a location to store the status file for an AS2 message.
182477
+ * @pattern `(|/.*)`
182478
+ */
182479
+ StatusFilesDirectory: string;
182480
+ /**
182481
+ * Specifies a location to store the temporary processing file for an AS2 message.
182482
+ * @pattern `(|/.*)`
182483
+ */
182484
+ TemporaryFilesDirectory: string;
182485
+ };
181928
182486
  /**
181929
182487
  * A textual description for the agreement.
181930
182488
  * @minLength `1`