@awboost/cfntypes 0.100.55 → 0.100.57

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -31178,6 +31178,62 @@ export type CognitoLogDeliveryConfigurationLogConfiguration = {
31178
31178
  export type CognitoLogDeliveryConfigurationS3Configuration = {
31179
31179
  BucketArn?: string;
31180
31180
  };
31181
+ /**
31182
+ * Resource Type definition for AWS::Cognito::ManagedLoginBranding
31183
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-managedloginbranding.html}
31184
+ */
31185
+ export type CognitoManagedLoginBrandingProps = {
31186
+ Assets?: CognitoManagedLoginBrandingAssetType[];
31187
+ ClientId?: string;
31188
+ ReturnMergedResources?: boolean;
31189
+ Settings?: Record<string, any>;
31190
+ UseCognitoProvidedValues?: boolean;
31191
+ UserPoolId: string;
31192
+ };
31193
+ /**
31194
+ * Attribute type definition for `AWS::Cognito::ManagedLoginBranding`.
31195
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-managedloginbranding.html#aws-resource-cognito-managedloginbranding-return-values}
31196
+ */
31197
+ export type CognitoManagedLoginBrandingAttributes = {
31198
+ /**
31199
+ * @pattern `^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[4][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$`
31200
+ */
31201
+ ManagedLoginBrandingId: string;
31202
+ };
31203
+ /**
31204
+ * Type definition for `AWS::Cognito::ManagedLoginBranding.AssetType`.
31205
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-managedloginbranding-assettype.html}
31206
+ */
31207
+ export type CognitoManagedLoginBrandingAssetType = {
31208
+ /**
31209
+ * @maxLength `1000000`
31210
+ */
31211
+ Bytes?: string;
31212
+ Category: CognitoManagedLoginBrandingCategoryType;
31213
+ ColorMode: CognitoManagedLoginBrandingColorModeType;
31214
+ Extension: CognitoManagedLoginBrandingExtensionType;
31215
+ /**
31216
+ * @minLength `1`
31217
+ * @maxLength `40`
31218
+ * @pattern `^[\w\- ]+$`
31219
+ */
31220
+ ResourceId?: string;
31221
+ };
31222
+ /**
31223
+ * Type definition for `AWS::Cognito::ManagedLoginBranding.CategoryType`.
31224
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-managedloginbranding-categorytype.html}
31225
+ */
31226
+ export type CognitoManagedLoginBrandingCategoryType = "FAVICON_ICO" | "FAVICON_SVG" | "EMAIL_GRAPHIC" | "SMS_GRAPHIC" | "AUTH_APP_GRAPHIC" | "PASSWORD_GRAPHIC" | "PASSKEY_GRAPHIC" | "PAGE_HEADER_LOGO" | "PAGE_HEADER_BACKGROUND" | "PAGE_FOOTER_LOGO" | "PAGE_FOOTER_BACKGROUND" | "PAGE_BACKGROUND" | "FORM_BACKGROUND" | "FORM_LOGO" | "IDP_BUTTON_ICON";
31227
+ /**
31228
+ * Type definition for `AWS::Cognito::ManagedLoginBranding.ColorModeType`.
31229
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-managedloginbranding-colormodetype.html}
31230
+ */
31231
+ export type CognitoManagedLoginBrandingColorModeType = "LIGHT" | "DARK" | "DYNAMIC";
31232
+ /**
31233
+ * Type definition for `AWS::Cognito::ManagedLoginBranding.ExtensionType`.
31234
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-managedloginbranding-extensiontype.html}
31235
+ */
31236
+ export type CognitoManagedLoginBrandingExtensionType = "ICO" | "JPEG" | "PNG" | "SVG" | "WEBP";
31181
31237
  /**
31182
31238
  * Definition of AWS::Cognito::UserPool Resource Type
31183
31239
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html}
@@ -31234,9 +31290,20 @@ export type CognitoUserPoolProps = {
31234
31290
  */
31235
31291
  UserPoolName?: string;
31236
31292
  UserPoolTags?: Record<string, string>;
31293
+ UserPoolTier?: "LITE" | "ESSENTIALS" | "PLUS";
31237
31294
  UsernameAttributes?: string[];
31238
31295
  UsernameConfiguration?: CognitoUserPoolUsernameConfiguration;
31239
31296
  VerificationMessageTemplate?: CognitoUserPoolVerificationMessageTemplate;
31297
+ /**
31298
+ * @minLength `1`
31299
+ * @maxLength `63`
31300
+ */
31301
+ WebAuthnRelyingPartyID?: string;
31302
+ /**
31303
+ * @minLength `1`
31304
+ * @maxLength `9`
31305
+ */
31306
+ WebAuthnUserVerification?: string;
31240
31307
  };
31241
31308
  /**
31242
31309
  * Attribute type definition for `AWS::Cognito::UserPool`.
@@ -31362,6 +31429,7 @@ export type CognitoUserPoolPasswordPolicy = {
31362
31429
  */
31363
31430
  export type CognitoUserPoolPolicies = {
31364
31431
  PasswordPolicy?: CognitoUserPoolPasswordPolicy;
31432
+ SignInPolicy?: CognitoUserPoolSignInPolicy;
31365
31433
  };
31366
31434
  /**
31367
31435
  * Type definition for `AWS::Cognito::UserPool.PreTokenGenerationConfig`.
@@ -31392,6 +31460,13 @@ export type CognitoUserPoolSchemaAttribute = {
31392
31460
  Required?: boolean;
31393
31461
  StringAttributeConstraints?: CognitoUserPoolStringAttributeConstraints;
31394
31462
  };
31463
+ /**
31464
+ * Type definition for `AWS::Cognito::UserPool.SignInPolicy`.
31465
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-signinpolicy.html}
31466
+ */
31467
+ export type CognitoUserPoolSignInPolicy = {
31468
+ AllowedFirstAuthFactors?: string[];
31469
+ };
31395
31470
  /**
31396
31471
  * Type definition for `AWS::Cognito::UserPool.SmsConfiguration`.
31397
31472
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-smsconfiguration.html}
@@ -35135,7 +35210,7 @@ export type ConnectTaskTemplateFieldIdentifier = {
35135
35210
  * The type of the task template's field
35136
35211
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-tasktemplate-fieldtype.html}
35137
35212
  */
35138
- export type ConnectTaskTemplateFieldType = "NAME" | "DESCRIPTION" | "SCHEDULED_TIME" | "QUICK_CONNECT" | "URL" | "NUMBER" | "TEXT" | "TEXT_AREA" | "DATE_TIME" | "BOOLEAN" | "SINGLE_SELECT" | "EMAIL";
35213
+ export type ConnectTaskTemplateFieldType = "NAME" | "DESCRIPTION" | "SCHEDULED_TIME" | "QUICK_CONNECT" | "URL" | "NUMBER" | "TEXT" | "TEXT_AREA" | "DATE_TIME" | "BOOLEAN" | "SINGLE_SELECT" | "EMAIL" | "EXPIRY_DURATION" | "SELF_ASSIGN";
35139
35214
  /**
35140
35215
  * Type definition for `AWS::Connect::TaskTemplate.InvisibleFieldInfo`.
35141
35216
  * Invisible field info
@@ -58005,6 +58080,10 @@ export type EKSClusterProps = {
58005
58080
  * Set this value to false to avoid creating the default networking add-ons when the cluster is created.
58006
58081
  */
58007
58082
  BootstrapSelfManagedAddons?: boolean;
58083
+ /**
58084
+ * Todo: add description
58085
+ */
58086
+ ComputeConfig?: EKSClusterComputeConfig;
58008
58087
  EncryptionConfig?: EKSClusterEncryptionConfig[];
58009
58088
  /**
58010
58089
  * The Kubernetes network configuration for the cluster.
@@ -58025,6 +58104,10 @@ export type EKSClusterProps = {
58025
58104
  * An object representing the Outpost configuration to use for AWS EKS outpost cluster.
58026
58105
  */
58027
58106
  OutpostConfig?: EKSClusterOutpostConfig;
58107
+ /**
58108
+ * Configuration fields for specifying on-premises node and pod CIDRs that are external to the VPC passed during cluster creation.
58109
+ */
58110
+ RemoteNetworkConfig?: EKSClusterRemoteNetworkConfig;
58028
58111
  /**
58029
58112
  * An object representing the VPC configuration to use for an Amazon EKS cluster.
58030
58113
  */
@@ -58033,6 +58116,10 @@ export type EKSClusterProps = {
58033
58116
  * The Amazon Resource Name (ARN) of the IAM role that provides permissions for the Kubernetes control plane to make calls to AWS API operations on your behalf.
58034
58117
  */
58035
58118
  RoleArn: string;
58119
+ /**
58120
+ * Todo: add description
58121
+ */
58122
+ StorageConfig?: EKSClusterStorageConfig;
58036
58123
  /**
58037
58124
  * An array of key-value pairs to apply to this resource.
58038
58125
  */
@@ -58109,6 +58196,17 @@ export type EKSClusterAccessConfig = {
58109
58196
  */
58110
58197
  BootstrapClusterCreatorAdminPermissions?: boolean;
58111
58198
  };
58199
+ /**
58200
+ * Type definition for `AWS::EKS::Cluster.BlockStorage`.
58201
+ * Todo: add description
58202
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-blockstorage.html}
58203
+ */
58204
+ export type EKSClusterBlockStorage = {
58205
+ /**
58206
+ * Todo: add description
58207
+ */
58208
+ Enabled?: boolean;
58209
+ };
58112
58210
  /**
58113
58211
  * Type definition for `AWS::EKS::Cluster.ClusterLogging`.
58114
58212
  * The cluster control plane logging configuration for your cluster.
@@ -58120,6 +58218,25 @@ export type EKSClusterClusterLogging = {
58120
58218
  */
58121
58219
  EnabledTypes?: EKSClusterLoggingTypeConfig[];
58122
58220
  };
58221
+ /**
58222
+ * Type definition for `AWS::EKS::Cluster.ComputeConfig`.
58223
+ * Todo: add description
58224
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-computeconfig.html}
58225
+ */
58226
+ export type EKSClusterComputeConfig = {
58227
+ /**
58228
+ * Todo: add description
58229
+ */
58230
+ Enabled?: boolean;
58231
+ /**
58232
+ * Todo: add description
58233
+ */
58234
+ NodePools?: string[];
58235
+ /**
58236
+ * Todo: add description
58237
+ */
58238
+ NodeRoleArn?: string;
58239
+ };
58123
58240
  /**
58124
58241
  * Type definition for `AWS::EKS::Cluster.ControlPlanePlacement`.
58125
58242
  * Specify the placement group of the control plane machines for your cluster.
@@ -58131,6 +58248,17 @@ export type EKSClusterControlPlanePlacement = {
58131
58248
  */
58132
58249
  GroupName?: string;
58133
58250
  };
58251
+ /**
58252
+ * Type definition for `AWS::EKS::Cluster.ElasticLoadBalancing`.
58253
+ * Todo: add description
58254
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-elasticloadbalancing.html}
58255
+ */
58256
+ export type EKSClusterElasticLoadBalancing = {
58257
+ /**
58258
+ * Todo: add description
58259
+ */
58260
+ Enabled?: boolean;
58261
+ };
58134
58262
  /**
58135
58263
  * Type definition for `AWS::EKS::Cluster.EncryptionConfig`.
58136
58264
  * The encryption configuration for the cluster
@@ -58152,6 +58280,10 @@ export type EKSClusterEncryptionConfig = {
58152
58280
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-kubernetesnetworkconfig.html}
58153
58281
  */
58154
58282
  export type EKSClusterKubernetesNetworkConfig = {
58283
+ /**
58284
+ * Todo: add description
58285
+ */
58286
+ ElasticLoadBalancing?: EKSClusterElasticLoadBalancing;
58155
58287
  /**
58156
58288
  * Ipv4 or Ipv6. You can only specify ipv6 for 1.21 and later clusters that use version 1.10.1 or later of the Amazon VPC CNI add-on
58157
58289
  */
@@ -58212,6 +58344,43 @@ export type EKSClusterProvider = {
58212
58344
  */
58213
58345
  KeyArn?: string;
58214
58346
  };
58347
+ /**
58348
+ * Type definition for `AWS::EKS::Cluster.RemoteNetworkConfig`.
58349
+ * Configuration fields for specifying on-premises node and pod CIDRs that are external to the VPC passed during cluster creation.
58350
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-remotenetworkconfig.html}
58351
+ */
58352
+ export type EKSClusterRemoteNetworkConfig = {
58353
+ /**
58354
+ * Network configuration of nodes run on-premises with EKS Hybrid Nodes.
58355
+ */
58356
+ RemoteNodeNetworks: EKSClusterRemoteNodeNetwork[];
58357
+ /**
58358
+ * Network configuration of pods run on-premises with EKS Hybrid Nodes.
58359
+ */
58360
+ RemotePodNetworks?: EKSClusterRemotePodNetwork[];
58361
+ };
58362
+ /**
58363
+ * Type definition for `AWS::EKS::Cluster.RemoteNodeNetwork`.
58364
+ * Network configuration of nodes run on-premises with EKS Hybrid Nodes.
58365
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-remotenodenetwork.html}
58366
+ */
58367
+ export type EKSClusterRemoteNodeNetwork = {
58368
+ /**
58369
+ * Specifies the list of remote node CIDRs.
58370
+ */
58371
+ Cidrs: string[];
58372
+ };
58373
+ /**
58374
+ * Type definition for `AWS::EKS::Cluster.RemotePodNetwork`.
58375
+ * Network configuration of pods run on-premises with EKS Hybrid Nodes.
58376
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-remotepodnetwork.html}
58377
+ */
58378
+ export type EKSClusterRemotePodNetwork = {
58379
+ /**
58380
+ * Specifies the list of remote pod CIDRs.
58381
+ */
58382
+ Cidrs: string[];
58383
+ };
58215
58384
  /**
58216
58385
  * Type definition for `AWS::EKS::Cluster.ResourcesVpcConfig`.
58217
58386
  * An object representing the VPC configuration to use for an Amazon EKS cluster.
@@ -58239,6 +58408,17 @@ export type EKSClusterResourcesVpcConfig = {
58239
58408
  */
58240
58409
  SubnetIds: string[];
58241
58410
  };
58411
+ /**
58412
+ * Type definition for `AWS::EKS::Cluster.StorageConfig`.
58413
+ * Todo: add description
58414
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-storageconfig.html}
58415
+ */
58416
+ export type EKSClusterStorageConfig = {
58417
+ /**
58418
+ * Todo: add description
58419
+ */
58420
+ BlockStorage?: EKSClusterBlockStorage;
58421
+ };
58242
58422
  /**
58243
58423
  * Type definition for `AWS::EKS::Cluster.Tag`.
58244
58424
  * A key-value pair to associate with a resource.
@@ -118717,6 +118897,11 @@ export type QuickSightAnalysisAnalysisDefinition = {
118717
118897
  * @maxLength `20`
118718
118898
  */
118719
118899
  Sheets?: QuickSightAnalysisSheetDefinition[];
118900
+ /**
118901
+ * @minLength `0`
118902
+ * @maxLength `200`
118903
+ */
118904
+ StaticFiles?: QuickSightAnalysisStaticFile[];
118720
118905
  };
118721
118906
  /**
118722
118907
  * Type definition for `AWS::QuickSight::Analysis.AnalysisError`.
@@ -119055,6 +119240,11 @@ export type QuickSightAnalysisBarChartVisual = {
119055
119240
  ColumnHierarchies?: QuickSightAnalysisColumnHierarchy[];
119056
119241
  Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
119057
119242
  Title?: QuickSightAnalysisVisualTitleLabelOptions;
119243
+ /**
119244
+ * @minLength `1`
119245
+ * @maxLength `1024`
119246
+ */
119247
+ VisualContentAltText?: string;
119058
119248
  /**
119059
119249
  * @minLength `1`
119060
119250
  * @maxLength `512`
@@ -119214,6 +119404,11 @@ export type QuickSightAnalysisBoxPlotVisual = {
119214
119404
  ColumnHierarchies?: QuickSightAnalysisColumnHierarchy[];
119215
119405
  Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
119216
119406
  Title?: QuickSightAnalysisVisualTitleLabelOptions;
119407
+ /**
119408
+ * @minLength `1`
119409
+ * @maxLength `1024`
119410
+ */
119411
+ VisualContentAltText?: string;
119217
119412
  /**
119218
119413
  * @minLength `1`
119219
119414
  * @maxLength `512`
@@ -119581,6 +119776,11 @@ export type QuickSightAnalysisComboChartVisual = {
119581
119776
  ColumnHierarchies?: QuickSightAnalysisColumnHierarchy[];
119582
119777
  Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
119583
119778
  Title?: QuickSightAnalysisVisualTitleLabelOptions;
119779
+ /**
119780
+ * @minLength `1`
119781
+ * @maxLength `1024`
119782
+ */
119783
+ VisualContentAltText?: string;
119584
119784
  /**
119585
119785
  * @minLength `1`
119586
119786
  * @maxLength `512`
@@ -119871,6 +120071,11 @@ export type QuickSightAnalysisCustomContentVisual = {
119871
120071
  DataSetIdentifier: string;
119872
120072
  Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
119873
120073
  Title?: QuickSightAnalysisVisualTitleLabelOptions;
120074
+ /**
120075
+ * @minLength `1`
120076
+ * @maxLength `1024`
120077
+ */
120078
+ VisualContentAltText?: string;
119874
120079
  /**
119875
120080
  * @minLength `1`
119876
120081
  * @maxLength `512`
@@ -120790,6 +120995,11 @@ export type QuickSightAnalysisFilledMapVisual = {
120790
120995
  ConditionalFormatting?: QuickSightAnalysisFilledMapConditionalFormatting;
120791
120996
  Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
120792
120997
  Title?: QuickSightAnalysisVisualTitleLabelOptions;
120998
+ /**
120999
+ * @minLength `1`
121000
+ * @maxLength `1024`
121001
+ */
121002
+ VisualContentAltText?: string;
120793
121003
  /**
120794
121004
  * @minLength `1`
120795
121005
  * @maxLength `512`
@@ -121143,6 +121353,10 @@ export type QuickSightAnalysisFontDecoration = "UNDERLINE" | "NONE";
121143
121353
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-fontsize.html}
121144
121354
  */
121145
121355
  export type QuickSightAnalysisFontSize = {
121356
+ /**
121357
+ * String based length that is composed of value and unit in px
121358
+ */
121359
+ Absolute?: string;
121146
121360
  Relative?: QuickSightAnalysisRelativeFontSize;
121147
121361
  };
121148
121362
  /**
@@ -121418,6 +121632,11 @@ export type QuickSightAnalysisFunnelChartVisual = {
121418
121632
  ColumnHierarchies?: QuickSightAnalysisColumnHierarchy[];
121419
121633
  Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
121420
121634
  Title?: QuickSightAnalysisVisualTitleLabelOptions;
121635
+ /**
121636
+ * @minLength `1`
121637
+ * @maxLength `1024`
121638
+ */
121639
+ VisualContentAltText?: string;
121421
121640
  /**
121422
121641
  * @minLength `1`
121423
121642
  * @maxLength `512`
@@ -121511,6 +121730,11 @@ export type QuickSightAnalysisGaugeChartVisual = {
121511
121730
  ConditionalFormatting?: QuickSightAnalysisGaugeChartConditionalFormatting;
121512
121731
  Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
121513
121732
  Title?: QuickSightAnalysisVisualTitleLabelOptions;
121733
+ /**
121734
+ * @minLength `1`
121735
+ * @maxLength `1024`
121736
+ */
121737
+ VisualContentAltText?: string;
121514
121738
  /**
121515
121739
  * @minLength `1`
121516
121740
  * @maxLength `512`
@@ -121518,6 +121742,69 @@ export type QuickSightAnalysisGaugeChartVisual = {
121518
121742
  */
121519
121743
  VisualId: string;
121520
121744
  };
121745
+ /**
121746
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialCategoricalColor`.
121747
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialcategoricalcolor.html}
121748
+ */
121749
+ export type QuickSightAnalysisGeospatialCategoricalColor = {
121750
+ CategoryDataColors: QuickSightAnalysisGeospatialCategoricalDataColor[];
121751
+ /**
121752
+ * @min `0`
121753
+ * @max `1`
121754
+ */
121755
+ DefaultOpacity?: number;
121756
+ NullDataSettings?: QuickSightAnalysisGeospatialNullDataSettings;
121757
+ NullDataVisibility?: QuickSightAnalysisVisibility;
121758
+ };
121759
+ /**
121760
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialCategoricalDataColor`.
121761
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialcategoricaldatacolor.html}
121762
+ */
121763
+ export type QuickSightAnalysisGeospatialCategoricalDataColor = {
121764
+ /**
121765
+ * @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
121766
+ */
121767
+ Color: string;
121768
+ DataValue: string;
121769
+ };
121770
+ /**
121771
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialCircleRadius`.
121772
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialcircleradius.html}
121773
+ */
121774
+ export type QuickSightAnalysisGeospatialCircleRadius = {
121775
+ /**
121776
+ * @min `0`
121777
+ */
121778
+ Radius?: number;
121779
+ };
121780
+ /**
121781
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialCircleSymbolStyle`.
121782
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialcirclesymbolstyle.html}
121783
+ */
121784
+ export type QuickSightAnalysisGeospatialCircleSymbolStyle = {
121785
+ CircleRadius?: QuickSightAnalysisGeospatialCircleRadius;
121786
+ FillColor?: QuickSightAnalysisGeospatialColor;
121787
+ StrokeColor?: QuickSightAnalysisGeospatialColor;
121788
+ StrokeWidth?: QuickSightAnalysisGeospatialLineWidth;
121789
+ };
121790
+ /**
121791
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialColor`.
121792
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialcolor.html}
121793
+ */
121794
+ export type QuickSightAnalysisGeospatialColor = {
121795
+ Categorical?: QuickSightAnalysisGeospatialCategoricalColor;
121796
+ Gradient?: QuickSightAnalysisGeospatialGradientColor;
121797
+ /**
121798
+ * Describes the properties for a solid color
121799
+ */
121800
+ Solid?: QuickSightAnalysisGeospatialSolidColor;
121801
+ };
121802
+ /**
121803
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialColorState`.
121804
+ * Defines view state of the color
121805
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialcolorstate.html}
121806
+ */
121807
+ export type QuickSightAnalysisGeospatialColorState = "ENABLED" | "DISABLED";
121521
121808
  /**
121522
121809
  * Type definition for `AWS::QuickSight::Analysis.GeospatialCoordinateBounds`.
121523
121810
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialcoordinatebounds.html}
@@ -121544,6 +121831,42 @@ export type QuickSightAnalysisGeospatialCoordinateBounds = {
121544
121831
  */
121545
121832
  West: number;
121546
121833
  };
121834
+ /**
121835
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialDataSourceItem`.
121836
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialdatasourceitem.html}
121837
+ */
121838
+ export type QuickSightAnalysisGeospatialDataSourceItem = {
121839
+ StaticFileDataSource?: QuickSightAnalysisGeospatialStaticFileSource;
121840
+ };
121841
+ /**
121842
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialGradientColor`.
121843
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialgradientcolor.html}
121844
+ */
121845
+ export type QuickSightAnalysisGeospatialGradientColor = {
121846
+ /**
121847
+ * @min `0`
121848
+ * @max `1`
121849
+ */
121850
+ DefaultOpacity?: number;
121851
+ NullDataSettings?: QuickSightAnalysisGeospatialNullDataSettings;
121852
+ NullDataVisibility?: QuickSightAnalysisVisibility;
121853
+ /**
121854
+ * @minLength `2`
121855
+ * @maxLength `3`
121856
+ */
121857
+ StepColors: QuickSightAnalysisGeospatialGradientStepColor[];
121858
+ };
121859
+ /**
121860
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialGradientStepColor`.
121861
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialgradientstepcolor.html}
121862
+ */
121863
+ export type QuickSightAnalysisGeospatialGradientStepColor = {
121864
+ /**
121865
+ * @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
121866
+ */
121867
+ Color: string;
121868
+ DataValue: number;
121869
+ };
121547
121870
  /**
121548
121871
  * Type definition for `AWS::QuickSight::Analysis.GeospatialHeatmapColorScale`.
121549
121872
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialheatmapcolorscale.html}
@@ -121572,6 +121895,107 @@ export type QuickSightAnalysisGeospatialHeatmapDataColor = {
121572
121895
  */
121573
121896
  Color: string;
121574
121897
  };
121898
+ /**
121899
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialLayerColorField`.
121900
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatiallayercolorfield.html}
121901
+ */
121902
+ export type QuickSightAnalysisGeospatialLayerColorField = {
121903
+ /**
121904
+ * @minLength `0`
121905
+ * @maxLength `1`
121906
+ */
121907
+ ColorDimensionsFields?: QuickSightAnalysisDimensionField[];
121908
+ /**
121909
+ * @minLength `0`
121910
+ * @maxLength `1`
121911
+ */
121912
+ ColorValuesFields?: QuickSightAnalysisMeasureField[];
121913
+ };
121914
+ /**
121915
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialLayerDefinition`.
121916
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatiallayerdefinition.html}
121917
+ */
121918
+ export type QuickSightAnalysisGeospatialLayerDefinition = {
121919
+ LineLayer?: QuickSightAnalysisGeospatialLineLayer;
121920
+ PointLayer?: QuickSightAnalysisGeospatialPointLayer;
121921
+ PolygonLayer?: QuickSightAnalysisGeospatialPolygonLayer;
121922
+ };
121923
+ /**
121924
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialLayerItem`.
121925
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatiallayeritem.html}
121926
+ */
121927
+ export type QuickSightAnalysisGeospatialLayerItem = {
121928
+ /**
121929
+ * @minLength `0`
121930
+ * @maxLength `10`
121931
+ */
121932
+ Actions?: QuickSightAnalysisLayerCustomAction[];
121933
+ DataSource?: QuickSightAnalysisGeospatialDataSourceItem;
121934
+ JoinDefinition?: QuickSightAnalysisGeospatialLayerJoinDefinition;
121935
+ Label?: string;
121936
+ LayerDefinition?: QuickSightAnalysisGeospatialLayerDefinition;
121937
+ LayerId: string;
121938
+ LayerType?: QuickSightAnalysisGeospatialLayerType;
121939
+ Tooltip?: QuickSightAnalysisTooltipOptions;
121940
+ Visibility?: QuickSightAnalysisVisibility;
121941
+ };
121942
+ /**
121943
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialLayerJoinDefinition`.
121944
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatiallayerjoindefinition.html}
121945
+ */
121946
+ export type QuickSightAnalysisGeospatialLayerJoinDefinition = {
121947
+ ColorField?: QuickSightAnalysisGeospatialLayerColorField;
121948
+ DatasetKeyField?: QuickSightAnalysisUnaggregatedField;
121949
+ ShapeKeyField?: string;
121950
+ };
121951
+ /**
121952
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialLayerMapConfiguration`.
121953
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatiallayermapconfiguration.html}
121954
+ */
121955
+ export type QuickSightAnalysisGeospatialLayerMapConfiguration = {
121956
+ Interactions?: unknown;
121957
+ Legend?: QuickSightAnalysisLegendOptions;
121958
+ MapLayers?: QuickSightAnalysisGeospatialLayerItem[];
121959
+ MapState?: QuickSightAnalysisGeospatialMapState;
121960
+ MapStyle?: QuickSightAnalysisGeospatialMapStyle;
121961
+ };
121962
+ /**
121963
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialLayerType`.
121964
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatiallayertype.html}
121965
+ */
121966
+ export type QuickSightAnalysisGeospatialLayerType = "POINT" | "LINE" | "POLYGON";
121967
+ /**
121968
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialLineLayer`.
121969
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatiallinelayer.html}
121970
+ */
121971
+ export type QuickSightAnalysisGeospatialLineLayer = {
121972
+ Style: QuickSightAnalysisGeospatialLineStyle;
121973
+ };
121974
+ /**
121975
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialLineStyle`.
121976
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatiallinestyle.html}
121977
+ */
121978
+ export type QuickSightAnalysisGeospatialLineStyle = {
121979
+ LineSymbolStyle?: QuickSightAnalysisGeospatialLineSymbolStyle;
121980
+ };
121981
+ /**
121982
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialLineSymbolStyle`.
121983
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatiallinesymbolstyle.html}
121984
+ */
121985
+ export type QuickSightAnalysisGeospatialLineSymbolStyle = {
121986
+ FillColor?: QuickSightAnalysisGeospatialColor;
121987
+ LineWidth?: QuickSightAnalysisGeospatialLineWidth;
121988
+ };
121989
+ /**
121990
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialLineWidth`.
121991
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatiallinewidth.html}
121992
+ */
121993
+ export type QuickSightAnalysisGeospatialLineWidth = {
121994
+ /**
121995
+ * @min `0`
121996
+ */
121997
+ LineWidth?: number;
121998
+ };
121575
121999
  /**
121576
122000
  * Type definition for `AWS::QuickSight::Analysis.GeospatialMapAggregatedFieldWells`.
121577
122001
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialmapaggregatedfieldwells.html}
@@ -121599,6 +122023,7 @@ export type QuickSightAnalysisGeospatialMapAggregatedFieldWells = {
121599
122023
  */
121600
122024
  export type QuickSightAnalysisGeospatialMapConfiguration = {
121601
122025
  FieldWells?: QuickSightAnalysisGeospatialMapFieldWells;
122026
+ Interactions?: unknown;
121602
122027
  Legend?: QuickSightAnalysisLegendOptions;
121603
122028
  MapStyleOptions?: QuickSightAnalysisGeospatialMapStyleOptions;
121604
122029
  PointStyleOptions?: QuickSightAnalysisGeospatialPointStyleOptions;
@@ -121613,6 +122038,31 @@ export type QuickSightAnalysisGeospatialMapConfiguration = {
121613
122038
  export type QuickSightAnalysisGeospatialMapFieldWells = {
121614
122039
  GeospatialMapAggregatedFieldWells?: QuickSightAnalysisGeospatialMapAggregatedFieldWells;
121615
122040
  };
122041
+ /**
122042
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialMapNavigation`.
122043
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialmapnavigation.html}
122044
+ */
122045
+ export type QuickSightAnalysisGeospatialMapNavigation = "ENABLED" | "DISABLED";
122046
+ /**
122047
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialMapState`.
122048
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialmapstate.html}
122049
+ */
122050
+ export type QuickSightAnalysisGeospatialMapState = {
122051
+ Bounds?: QuickSightAnalysisGeospatialCoordinateBounds;
122052
+ MapNavigation?: QuickSightAnalysisGeospatialMapNavigation;
122053
+ };
122054
+ /**
122055
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialMapStyle`.
122056
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialmapstyle.html}
122057
+ */
122058
+ export type QuickSightAnalysisGeospatialMapStyle = {
122059
+ /**
122060
+ * @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
122061
+ */
122062
+ BackgroundColor?: string;
122063
+ BaseMapStyle?: QuickSightAnalysisBaseMapStyleType;
122064
+ BaseMapVisibility?: QuickSightAnalysisVisibility;
122065
+ };
121616
122066
  /**
121617
122067
  * Type definition for `AWS::QuickSight::Analysis.GeospatialMapStyleOptions`.
121618
122068
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialmapstyleoptions.html}
@@ -121638,6 +122088,11 @@ export type QuickSightAnalysisGeospatialMapVisual = {
121638
122088
  ColumnHierarchies?: QuickSightAnalysisColumnHierarchy[];
121639
122089
  Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
121640
122090
  Title?: QuickSightAnalysisVisualTitleLabelOptions;
122091
+ /**
122092
+ * @minLength `1`
122093
+ * @maxLength `1024`
122094
+ */
122095
+ VisualContentAltText?: string;
121641
122096
  /**
121642
122097
  * @minLength `1`
121643
122098
  * @maxLength `512`
@@ -121645,6 +122100,45 @@ export type QuickSightAnalysisGeospatialMapVisual = {
121645
122100
  */
121646
122101
  VisualId: string;
121647
122102
  };
122103
+ /**
122104
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialNullDataSettings`.
122105
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialnulldatasettings.html}
122106
+ */
122107
+ export type QuickSightAnalysisGeospatialNullDataSettings = {
122108
+ SymbolStyle: QuickSightAnalysisGeospatialNullSymbolStyle;
122109
+ };
122110
+ /**
122111
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialNullSymbolStyle`.
122112
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialnullsymbolstyle.html}
122113
+ */
122114
+ export type QuickSightAnalysisGeospatialNullSymbolStyle = {
122115
+ /**
122116
+ * @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
122117
+ */
122118
+ FillColor?: string;
122119
+ /**
122120
+ * @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
122121
+ */
122122
+ StrokeColor?: string;
122123
+ /**
122124
+ * @min `0`
122125
+ */
122126
+ StrokeWidth?: number;
122127
+ };
122128
+ /**
122129
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialPointLayer`.
122130
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialpointlayer.html}
122131
+ */
122132
+ export type QuickSightAnalysisGeospatialPointLayer = {
122133
+ Style: QuickSightAnalysisGeospatialPointStyle;
122134
+ };
122135
+ /**
122136
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialPointStyle`.
122137
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialpointstyle.html}
122138
+ */
122139
+ export type QuickSightAnalysisGeospatialPointStyle = {
122140
+ CircleSymbolStyle?: QuickSightAnalysisGeospatialCircleSymbolStyle;
122141
+ };
121648
122142
  /**
121649
122143
  * Type definition for `AWS::QuickSight::Analysis.GeospatialPointStyleOptions`.
121650
122144
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialpointstyleoptions.html}
@@ -121654,11 +122148,61 @@ export type QuickSightAnalysisGeospatialPointStyleOptions = {
121654
122148
  HeatmapConfiguration?: QuickSightAnalysisGeospatialHeatmapConfiguration;
121655
122149
  SelectedPointStyle?: QuickSightAnalysisGeospatialSelectedPointStyle;
121656
122150
  };
122151
+ /**
122152
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialPolygonLayer`.
122153
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialpolygonlayer.html}
122154
+ */
122155
+ export type QuickSightAnalysisGeospatialPolygonLayer = {
122156
+ Style: QuickSightAnalysisGeospatialPolygonStyle;
122157
+ };
122158
+ /**
122159
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialPolygonStyle`.
122160
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialpolygonstyle.html}
122161
+ */
122162
+ export type QuickSightAnalysisGeospatialPolygonStyle = {
122163
+ PolygonSymbolStyle?: QuickSightAnalysisGeospatialPolygonSymbolStyle;
122164
+ };
122165
+ /**
122166
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialPolygonSymbolStyle`.
122167
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialpolygonsymbolstyle.html}
122168
+ */
122169
+ export type QuickSightAnalysisGeospatialPolygonSymbolStyle = {
122170
+ FillColor?: QuickSightAnalysisGeospatialColor;
122171
+ StrokeColor?: QuickSightAnalysisGeospatialColor;
122172
+ StrokeWidth?: QuickSightAnalysisGeospatialLineWidth;
122173
+ };
121657
122174
  /**
121658
122175
  * Type definition for `AWS::QuickSight::Analysis.GeospatialSelectedPointStyle`.
121659
122176
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialselectedpointstyle.html}
121660
122177
  */
121661
122178
  export type QuickSightAnalysisGeospatialSelectedPointStyle = "POINT" | "CLUSTER" | "HEATMAP";
122179
+ /**
122180
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialSolidColor`.
122181
+ * Describes the properties for a solid color
122182
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialsolidcolor.html}
122183
+ */
122184
+ export type QuickSightAnalysisGeospatialSolidColor = {
122185
+ /**
122186
+ * @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
122187
+ */
122188
+ Color: string;
122189
+ /**
122190
+ * Defines view state of the color
122191
+ */
122192
+ State?: QuickSightAnalysisGeospatialColorState;
122193
+ };
122194
+ /**
122195
+ * Type definition for `AWS::QuickSight::Analysis.GeospatialStaticFileSource`.
122196
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialstaticfilesource.html}
122197
+ */
122198
+ export type QuickSightAnalysisGeospatialStaticFileSource = {
122199
+ /**
122200
+ * @minLength `1`
122201
+ * @maxLength `512`
122202
+ * @pattern `^[\w\-]+$`
122203
+ */
122204
+ StaticFileId: string;
122205
+ };
121662
122206
  /**
121663
122207
  * Type definition for `AWS::QuickSight::Analysis.GeospatialWindowOptions`.
121664
122208
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialwindowoptions.html}
@@ -121873,6 +122417,11 @@ export type QuickSightAnalysisHeatMapVisual = {
121873
122417
  ColumnHierarchies?: QuickSightAnalysisColumnHierarchy[];
121874
122418
  Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
121875
122419
  Title?: QuickSightAnalysisVisualTitleLabelOptions;
122420
+ /**
122421
+ * @minLength `1`
122422
+ * @maxLength `1024`
122423
+ */
122424
+ VisualContentAltText?: string;
121876
122425
  /**
121877
122426
  * @minLength `1`
121878
122427
  * @maxLength `512`
@@ -121940,6 +122489,11 @@ export type QuickSightAnalysisHistogramVisual = {
121940
122489
  ChartConfiguration?: QuickSightAnalysisHistogramConfiguration;
121941
122490
  Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
121942
122491
  Title?: QuickSightAnalysisVisualTitleLabelOptions;
122492
+ /**
122493
+ * @minLength `1`
122494
+ * @maxLength `1024`
122495
+ */
122496
+ VisualContentAltText?: string;
121943
122497
  /**
121944
122498
  * @minLength `1`
121945
122499
  * @maxLength `512`
@@ -121957,6 +122511,71 @@ export type QuickSightAnalysisHorizontalTextAlignment = "LEFT" | "CENTER" | "RIG
121957
122511
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-icon.html}
121958
122512
  */
121959
122513
  export type QuickSightAnalysisIcon = "CARET_UP" | "CARET_DOWN" | "PLUS" | "MINUS" | "ARROW_UP" | "ARROW_DOWN" | "ARROW_LEFT" | "ARROW_UP_LEFT" | "ARROW_DOWN_LEFT" | "ARROW_RIGHT" | "ARROW_UP_RIGHT" | "ARROW_DOWN_RIGHT" | "FACE_UP" | "FACE_DOWN" | "FACE_FLAT" | "ONE_BAR" | "TWO_BAR" | "THREE_BAR" | "CIRCLE" | "TRIANGLE" | "SQUARE" | "FLAG" | "THUMBS_UP" | "THUMBS_DOWN" | "CHECKMARK" | "X";
122514
+ /**
122515
+ * Type definition for `AWS::QuickSight::Analysis.ImageCustomAction`.
122516
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-imagecustomaction.html}
122517
+ */
122518
+ export type QuickSightAnalysisImageCustomAction = {
122519
+ /**
122520
+ * @minLength `1`
122521
+ * @maxLength `2`
122522
+ */
122523
+ ActionOperations: QuickSightAnalysisImageCustomActionOperation[];
122524
+ /**
122525
+ * @minLength `1`
122526
+ * @maxLength `512`
122527
+ * @pattern `^[\w\-]+$`
122528
+ */
122529
+ CustomActionId: string;
122530
+ /**
122531
+ * @minLength `1`
122532
+ * @maxLength `256`
122533
+ */
122534
+ Name: string;
122535
+ Status?: QuickSightAnalysisWidgetStatus;
122536
+ Trigger: QuickSightAnalysisImageCustomActionTrigger;
122537
+ };
122538
+ /**
122539
+ * Type definition for `AWS::QuickSight::Analysis.ImageCustomActionOperation`.
122540
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-imagecustomactionoperation.html}
122541
+ */
122542
+ export type QuickSightAnalysisImageCustomActionOperation = {
122543
+ NavigationOperation?: QuickSightAnalysisCustomActionNavigationOperation;
122544
+ SetParametersOperation?: QuickSightAnalysisCustomActionSetParametersOperation;
122545
+ URLOperation?: QuickSightAnalysisCustomActionURLOperation;
122546
+ };
122547
+ /**
122548
+ * Type definition for `AWS::QuickSight::Analysis.ImageCustomActionTrigger`.
122549
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-imagecustomactiontrigger.html}
122550
+ */
122551
+ export type QuickSightAnalysisImageCustomActionTrigger = "CLICK" | "MENU";
122552
+ /**
122553
+ * Type definition for `AWS::QuickSight::Analysis.ImageInteractionOptions`.
122554
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-imageinteractionoptions.html}
122555
+ */
122556
+ export type QuickSightAnalysisImageInteractionOptions = {
122557
+ ImageMenuOption?: QuickSightAnalysisImageMenuOption;
122558
+ };
122559
+ /**
122560
+ * Type definition for `AWS::QuickSight::Analysis.ImageMenuOption`.
122561
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-imagemenuoption.html}
122562
+ */
122563
+ export type QuickSightAnalysisImageMenuOption = {
122564
+ AvailabilityStatus?: unknown;
122565
+ };
122566
+ /**
122567
+ * Type definition for `AWS::QuickSight::Analysis.ImageStaticFile`.
122568
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-imagestaticfile.html}
122569
+ */
122570
+ export type QuickSightAnalysisImageStaticFile = {
122571
+ Source?: QuickSightAnalysisStaticFileSource;
122572
+ /**
122573
+ * @minLength `1`
122574
+ * @maxLength `512`
122575
+ * @pattern `^[\w\-]+$`
122576
+ */
122577
+ StaticFileId: string;
122578
+ };
121960
122579
  /**
121961
122580
  * Type definition for `AWS::QuickSight::Analysis.InnerFilter`.
121962
122581
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-innerfilter.html}
@@ -121994,6 +122613,11 @@ export type QuickSightAnalysisInsightVisual = {
121994
122613
  InsightConfiguration?: QuickSightAnalysisInsightConfiguration;
121995
122614
  Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
121996
122615
  Title?: QuickSightAnalysisVisualTitleLabelOptions;
122616
+ /**
122617
+ * @minLength `1`
122618
+ * @maxLength `1024`
122619
+ */
122620
+ VisualContentAltText?: string;
121997
122621
  /**
121998
122622
  * @minLength `1`
121999
122623
  * @maxLength `512`
@@ -122210,6 +122834,11 @@ export type QuickSightAnalysisKPIVisual = {
122210
122834
  ConditionalFormatting?: QuickSightAnalysisKPIConditionalFormatting;
122211
122835
  Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
122212
122836
  Title?: QuickSightAnalysisVisualTitleLabelOptions;
122837
+ /**
122838
+ * @minLength `1`
122839
+ * @maxLength `1024`
122840
+ */
122841
+ VisualContentAltText?: string;
122213
122842
  /**
122214
122843
  * @minLength `1`
122215
122844
  * @maxLength `512`
@@ -122245,6 +122874,70 @@ export type QuickSightAnalysisLabelOptions = {
122245
122874
  FontConfiguration?: QuickSightAnalysisFontConfiguration;
122246
122875
  Visibility?: QuickSightAnalysisVisibility;
122247
122876
  };
122877
+ /**
122878
+ * Type definition for `AWS::QuickSight::Analysis.LayerCustomAction`.
122879
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-layercustomaction.html}
122880
+ */
122881
+ export type QuickSightAnalysisLayerCustomAction = {
122882
+ /**
122883
+ * @minLength `1`
122884
+ * @maxLength `2`
122885
+ */
122886
+ ActionOperations: QuickSightAnalysisLayerCustomActionOperation[];
122887
+ /**
122888
+ * @minLength `1`
122889
+ * @maxLength `512`
122890
+ * @pattern `^[\w\-]+$`
122891
+ */
122892
+ CustomActionId: string;
122893
+ /**
122894
+ * @minLength `1`
122895
+ * @maxLength `256`
122896
+ */
122897
+ Name: string;
122898
+ Status?: QuickSightAnalysisWidgetStatus;
122899
+ Trigger: QuickSightAnalysisLayerCustomActionTrigger;
122900
+ };
122901
+ /**
122902
+ * Type definition for `AWS::QuickSight::Analysis.LayerCustomActionOperation`.
122903
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-layercustomactionoperation.html}
122904
+ */
122905
+ export type QuickSightAnalysisLayerCustomActionOperation = {
122906
+ FilterOperation?: QuickSightAnalysisCustomActionFilterOperation;
122907
+ NavigationOperation?: QuickSightAnalysisCustomActionNavigationOperation;
122908
+ SetParametersOperation?: QuickSightAnalysisCustomActionSetParametersOperation;
122909
+ URLOperation?: QuickSightAnalysisCustomActionURLOperation;
122910
+ };
122911
+ /**
122912
+ * Type definition for `AWS::QuickSight::Analysis.LayerCustomActionTrigger`.
122913
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-layercustomactiontrigger.html}
122914
+ */
122915
+ export type QuickSightAnalysisLayerCustomActionTrigger = "DATA_POINT_CLICK" | "DATA_POINT_MENU";
122916
+ /**
122917
+ * Type definition for `AWS::QuickSight::Analysis.LayerMapVisual`.
122918
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-layermapvisual.html}
122919
+ */
122920
+ export type QuickSightAnalysisLayerMapVisual = {
122921
+ ChartConfiguration?: QuickSightAnalysisGeospatialLayerMapConfiguration;
122922
+ /**
122923
+ * @minLength `1`
122924
+ * @maxLength `2048`
122925
+ */
122926
+ DataSetIdentifier: string;
122927
+ Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
122928
+ Title?: QuickSightAnalysisVisualTitleLabelOptions;
122929
+ /**
122930
+ * @minLength `1`
122931
+ * @maxLength `1024`
122932
+ */
122933
+ VisualContentAltText?: string;
122934
+ /**
122935
+ * @minLength `1`
122936
+ * @maxLength `512`
122937
+ * @pattern `^[\w\-]+$`
122938
+ */
122939
+ VisualId: string;
122940
+ };
122248
122941
  /**
122249
122942
  * Type definition for `AWS::QuickSight::Analysis.Layout`.
122250
122943
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-layout.html}
@@ -122277,6 +122970,7 @@ export type QuickSightAnalysisLegendOptions = {
122277
122970
  Height?: string;
122278
122971
  Position?: QuickSightAnalysisLegendPosition;
122279
122972
  Title?: QuickSightAnalysisLabelOptions;
122973
+ ValueFontConfiguration?: QuickSightAnalysisFontConfiguration;
122280
122974
  Visibility?: QuickSightAnalysisVisibility;
122281
122975
  /**
122282
122976
  * String based length that is composed of value and unit in px
@@ -122461,6 +123155,11 @@ export type QuickSightAnalysisLineChartVisual = {
122461
123155
  ColumnHierarchies?: QuickSightAnalysisColumnHierarchy[];
122462
123156
  Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
122463
123157
  Title?: QuickSightAnalysisVisualTitleLabelOptions;
123158
+ /**
123159
+ * @minLength `1`
123160
+ * @maxLength `1024`
123161
+ */
123162
+ VisualContentAltText?: string;
122464
123163
  /**
122465
123164
  * @minLength `1`
122466
123165
  * @maxLength `512`
@@ -123316,6 +124015,11 @@ export type QuickSightAnalysisPieChartVisual = {
123316
124015
  ColumnHierarchies?: QuickSightAnalysisColumnHierarchy[];
123317
124016
  Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
123318
124017
  Title?: QuickSightAnalysisVisualTitleLabelOptions;
124018
+ /**
124019
+ * @minLength `1`
124020
+ * @maxLength `1024`
124021
+ */
124022
+ VisualContentAltText?: string;
123319
124023
  /**
123320
124024
  * @minLength `1`
123321
124025
  * @maxLength `512`
@@ -123614,6 +124318,11 @@ export type QuickSightAnalysisPivotTableVisual = {
123614
124318
  ConditionalFormatting?: QuickSightAnalysisPivotTableConditionalFormatting;
123615
124319
  Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
123616
124320
  Title?: QuickSightAnalysisVisualTitleLabelOptions;
124321
+ /**
124322
+ * @minLength `1`
124323
+ * @maxLength `1024`
124324
+ */
124325
+ VisualContentAltText?: string;
123617
124326
  /**
123618
124327
  * @minLength `1`
123619
124328
  * @maxLength `512`
@@ -123639,6 +124348,108 @@ export type QuickSightAnalysisPivotTotalOptions = {
123639
124348
  TotalsVisibility?: QuickSightAnalysisVisibility;
123640
124349
  ValueCellStyle?: QuickSightAnalysisTableCellStyle;
123641
124350
  };
124351
+ /**
124352
+ * Type definition for `AWS::QuickSight::Analysis.PluginVisual`.
124353
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-pluginvisual.html}
124354
+ */
124355
+ export type QuickSightAnalysisPluginVisual = {
124356
+ ChartConfiguration?: QuickSightAnalysisPluginVisualConfiguration;
124357
+ PluginArn: string;
124358
+ Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
124359
+ Title?: QuickSightAnalysisVisualTitleLabelOptions;
124360
+ /**
124361
+ * @minLength `1`
124362
+ * @maxLength `1024`
124363
+ */
124364
+ VisualContentAltText?: string;
124365
+ /**
124366
+ * @minLength `1`
124367
+ * @maxLength `512`
124368
+ * @pattern `^[\w\-]+$`
124369
+ */
124370
+ VisualId: string;
124371
+ };
124372
+ /**
124373
+ * Type definition for `AWS::QuickSight::Analysis.PluginVisualAxisName`.
124374
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-pluginvisualaxisname.html}
124375
+ */
124376
+ export type QuickSightAnalysisPluginVisualAxisName = "GROUP_BY" | "VALUE";
124377
+ /**
124378
+ * Type definition for `AWS::QuickSight::Analysis.PluginVisualConfiguration`.
124379
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-pluginvisualconfiguration.html}
124380
+ */
124381
+ export type QuickSightAnalysisPluginVisualConfiguration = {
124382
+ /**
124383
+ * @minLength `0`
124384
+ * @maxLength `10`
124385
+ */
124386
+ FieldWells?: QuickSightAnalysisPluginVisualFieldWell[];
124387
+ SortConfiguration?: QuickSightAnalysisPluginVisualSortConfiguration;
124388
+ VisualOptions?: QuickSightAnalysisPluginVisualOptions;
124389
+ };
124390
+ /**
124391
+ * Type definition for `AWS::QuickSight::Analysis.PluginVisualFieldWell`.
124392
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-pluginvisualfieldwell.html}
124393
+ */
124394
+ export type QuickSightAnalysisPluginVisualFieldWell = {
124395
+ AxisName?: QuickSightAnalysisPluginVisualAxisName;
124396
+ /**
124397
+ * @minLength `0`
124398
+ * @maxLength `200`
124399
+ */
124400
+ Dimensions?: QuickSightAnalysisDimensionField[];
124401
+ /**
124402
+ * @minLength `0`
124403
+ * @maxLength `200`
124404
+ */
124405
+ Measures?: QuickSightAnalysisMeasureField[];
124406
+ /**
124407
+ * @minLength `0`
124408
+ * @maxLength `200`
124409
+ */
124410
+ Unaggregated?: QuickSightAnalysisUnaggregatedField[];
124411
+ };
124412
+ /**
124413
+ * Type definition for `AWS::QuickSight::Analysis.PluginVisualItemsLimitConfiguration`.
124414
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-pluginvisualitemslimitconfiguration.html}
124415
+ */
124416
+ export type QuickSightAnalysisPluginVisualItemsLimitConfiguration = {
124417
+ ItemsLimit?: number;
124418
+ };
124419
+ /**
124420
+ * Type definition for `AWS::QuickSight::Analysis.PluginVisualOptions`.
124421
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-pluginvisualoptions.html}
124422
+ */
124423
+ export type QuickSightAnalysisPluginVisualOptions = {
124424
+ VisualProperties?: QuickSightAnalysisPluginVisualProperty[];
124425
+ };
124426
+ /**
124427
+ * Type definition for `AWS::QuickSight::Analysis.PluginVisualProperty`.
124428
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-pluginvisualproperty.html}
124429
+ */
124430
+ export type QuickSightAnalysisPluginVisualProperty = {
124431
+ Name?: string;
124432
+ Value?: string;
124433
+ };
124434
+ /**
124435
+ * Type definition for `AWS::QuickSight::Analysis.PluginVisualSortConfiguration`.
124436
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-pluginvisualsortconfiguration.html}
124437
+ */
124438
+ export type QuickSightAnalysisPluginVisualSortConfiguration = {
124439
+ PluginVisualTableQuerySort?: QuickSightAnalysisPluginVisualTableQuerySort;
124440
+ };
124441
+ /**
124442
+ * Type definition for `AWS::QuickSight::Analysis.PluginVisualTableQuerySort`.
124443
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-pluginvisualtablequerysort.html}
124444
+ */
124445
+ export type QuickSightAnalysisPluginVisualTableQuerySort = {
124446
+ ItemsLimitConfiguration?: QuickSightAnalysisPluginVisualItemsLimitConfiguration;
124447
+ /**
124448
+ * @minLength `0`
124449
+ * @maxLength `100`
124450
+ */
124451
+ RowSort?: QuickSightAnalysisFieldSortOptions[];
124452
+ };
123642
124453
  /**
123643
124454
  * Type definition for `AWS::QuickSight::Analysis.PredefinedHierarchy`.
123644
124455
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-predefinedhierarchy.html}
@@ -123803,6 +124614,11 @@ export type QuickSightAnalysisRadarChartVisual = {
123803
124614
  ColumnHierarchies?: QuickSightAnalysisColumnHierarchy[];
123804
124615
  Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
123805
124616
  Title?: QuickSightAnalysisVisualTitleLabelOptions;
124617
+ /**
124618
+ * @minLength `1`
124619
+ * @maxLength `1024`
124620
+ */
124621
+ VisualContentAltText?: string;
123806
124622
  /**
123807
124623
  * @minLength `1`
123808
124624
  * @maxLength `512`
@@ -124119,6 +124935,11 @@ export type QuickSightAnalysisSankeyDiagramVisual = {
124119
124935
  ChartConfiguration?: QuickSightAnalysisSankeyDiagramChartConfiguration;
124120
124936
  Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
124121
124937
  Title?: QuickSightAnalysisVisualTitleLabelOptions;
124938
+ /**
124939
+ * @minLength `1`
124940
+ * @maxLength `1024`
124941
+ */
124942
+ VisualContentAltText?: string;
124122
124943
  /**
124123
124944
  * @minLength `1`
124124
124945
  * @maxLength `512`
@@ -124229,6 +125050,11 @@ export type QuickSightAnalysisScatterPlotVisual = {
124229
125050
  ColumnHierarchies?: QuickSightAnalysisColumnHierarchy[];
124230
125051
  Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
124231
125052
  Title?: QuickSightAnalysisVisualTitleLabelOptions;
125053
+ /**
125054
+ * @minLength `1`
125055
+ * @maxLength `1024`
125056
+ */
125057
+ VisualContentAltText?: string;
124232
125058
  /**
124233
125059
  * @minLength `1`
124234
125060
  * @maxLength `512`
@@ -124390,6 +125216,11 @@ export type QuickSightAnalysisShapeConditionalFormat = {
124390
125216
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-sheet.html}
124391
125217
  */
124392
125218
  export type QuickSightAnalysisSheet = {
125219
+ /**
125220
+ * @minLength `0`
125221
+ * @maxLength `10`
125222
+ */
125223
+ Images?: QuickSightAnalysisSheetImage[];
124393
125224
  /**
124394
125225
  * <p>The name of a sheet. This name is displayed on the sheet's tab in the Amazon QuickSight
124395
125226
  console.</p>
@@ -124467,6 +125298,11 @@ export type QuickSightAnalysisSheetDefinition = {
124467
125298
  * @maxLength `200`
124468
125299
  */
124469
125300
  FilterControls?: QuickSightAnalysisFilterControl[];
125301
+ /**
125302
+ * @minLength `0`
125303
+ * @maxLength `10`
125304
+ */
125305
+ Images?: QuickSightAnalysisSheetImage[];
124470
125306
  /**
124471
125307
  * @minLength `1`
124472
125308
  * @maxLength `1`
@@ -124528,6 +125364,82 @@ export type QuickSightAnalysisSheetElementRenderingRule = {
124528
125364
  */
124529
125365
  Expression: string;
124530
125366
  };
125367
+ /**
125368
+ * Type definition for `AWS::QuickSight::Analysis.SheetImage`.
125369
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-sheetimage.html}
125370
+ */
125371
+ export type QuickSightAnalysisSheetImage = {
125372
+ /**
125373
+ * @minLength `0`
125374
+ * @maxLength `10`
125375
+ */
125376
+ Actions?: QuickSightAnalysisImageCustomAction[];
125377
+ /**
125378
+ * @minLength `1`
125379
+ * @maxLength `1024`
125380
+ */
125381
+ ImageContentAltText?: string;
125382
+ Interactions?: QuickSightAnalysisImageInteractionOptions;
125383
+ Scaling?: QuickSightAnalysisSheetImageScalingConfiguration;
125384
+ /**
125385
+ * @minLength `1`
125386
+ * @maxLength `512`
125387
+ * @pattern `^[\w\-]+$`
125388
+ */
125389
+ SheetImageId: string;
125390
+ Source: QuickSightAnalysisSheetImageSource;
125391
+ Tooltip?: QuickSightAnalysisSheetImageTooltipConfiguration;
125392
+ };
125393
+ /**
125394
+ * Type definition for `AWS::QuickSight::Analysis.SheetImageScalingConfiguration`.
125395
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-sheetimagescalingconfiguration.html}
125396
+ */
125397
+ export type QuickSightAnalysisSheetImageScalingConfiguration = {
125398
+ ScalingType?: QuickSightAnalysisSheetImageScalingType;
125399
+ };
125400
+ /**
125401
+ * Type definition for `AWS::QuickSight::Analysis.SheetImageScalingType`.
125402
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-sheetimagescalingtype.html}
125403
+ */
125404
+ export type QuickSightAnalysisSheetImageScalingType = "SCALE_TO_WIDTH" | "SCALE_TO_HEIGHT" | "SCALE_TO_CONTAINER" | "SCALE_NONE";
125405
+ /**
125406
+ * Type definition for `AWS::QuickSight::Analysis.SheetImageSource`.
125407
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-sheetimagesource.html}
125408
+ */
125409
+ export type QuickSightAnalysisSheetImageSource = {
125410
+ SheetImageStaticFileSource?: QuickSightAnalysisSheetImageStaticFileSource;
125411
+ };
125412
+ /**
125413
+ * Type definition for `AWS::QuickSight::Analysis.SheetImageStaticFileSource`.
125414
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-sheetimagestaticfilesource.html}
125415
+ */
125416
+ export type QuickSightAnalysisSheetImageStaticFileSource = {
125417
+ /**
125418
+ * @minLength `1`
125419
+ * @maxLength `512`
125420
+ * @pattern `^[\w\-]+$`
125421
+ */
125422
+ StaticFileId: string;
125423
+ };
125424
+ /**
125425
+ * Type definition for `AWS::QuickSight::Analysis.SheetImageTooltipConfiguration`.
125426
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-sheetimagetooltipconfiguration.html}
125427
+ */
125428
+ export type QuickSightAnalysisSheetImageTooltipConfiguration = {
125429
+ TooltipText?: QuickSightAnalysisSheetImageTooltipText;
125430
+ Visibility?: QuickSightAnalysisVisibility;
125431
+ };
125432
+ /**
125433
+ * Type definition for `AWS::QuickSight::Analysis.SheetImageTooltipText`.
125434
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-sheetimagetooltiptext.html}
125435
+ */
125436
+ export type QuickSightAnalysisSheetImageTooltipText = {
125437
+ /**
125438
+ * @minLength `1`
125439
+ * @maxLength `1024`
125440
+ */
125441
+ PlainText?: string;
125442
+ };
124531
125443
  /**
124532
125444
  * Type definition for `AWS::QuickSight::Analysis.SheetTextBox`.
124533
125445
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-sheettextbox.html}
@@ -124688,11 +125600,56 @@ export type QuickSightAnalysisSpacing = {
124688
125600
  */
124689
125601
  Top?: string;
124690
125602
  };
125603
+ /**
125604
+ * Type definition for `AWS::QuickSight::Analysis.SpatialStaticFile`.
125605
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-spatialstaticfile.html}
125606
+ */
125607
+ export type QuickSightAnalysisSpatialStaticFile = {
125608
+ Source?: QuickSightAnalysisStaticFileSource;
125609
+ /**
125610
+ * @minLength `1`
125611
+ * @maxLength `512`
125612
+ * @pattern `^[\w\-]+$`
125613
+ */
125614
+ StaticFileId: string;
125615
+ };
124691
125616
  /**
124692
125617
  * Type definition for `AWS::QuickSight::Analysis.SpecialValue`.
124693
125618
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-specialvalue.html}
124694
125619
  */
124695
125620
  export type QuickSightAnalysisSpecialValue = "EMPTY" | "NULL" | "OTHER";
125621
+ /**
125622
+ * Type definition for `AWS::QuickSight::Analysis.StaticFile`.
125623
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-staticfile.html}
125624
+ */
125625
+ export type QuickSightAnalysisStaticFile = {
125626
+ ImageStaticFile?: QuickSightAnalysisImageStaticFile;
125627
+ SpatialStaticFile?: QuickSightAnalysisSpatialStaticFile;
125628
+ };
125629
+ /**
125630
+ * Type definition for `AWS::QuickSight::Analysis.StaticFileS3SourceOptions`.
125631
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-staticfiles3sourceoptions.html}
125632
+ */
125633
+ export type QuickSightAnalysisStaticFileS3SourceOptions = {
125634
+ BucketName: string;
125635
+ ObjectKey: string;
125636
+ Region: string;
125637
+ };
125638
+ /**
125639
+ * Type definition for `AWS::QuickSight::Analysis.StaticFileSource`.
125640
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-staticfilesource.html}
125641
+ */
125642
+ export type QuickSightAnalysisStaticFileSource = {
125643
+ S3Options?: QuickSightAnalysisStaticFileS3SourceOptions;
125644
+ UrlOptions?: QuickSightAnalysisStaticFileUrlSourceOptions;
125645
+ };
125646
+ /**
125647
+ * Type definition for `AWS::QuickSight::Analysis.StaticFileUrlSourceOptions`.
125648
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-staticfileurlsourceoptions.html}
125649
+ */
125650
+ export type QuickSightAnalysisStaticFileUrlSourceOptions = {
125651
+ Url: string;
125652
+ };
124696
125653
  /**
124697
125654
  * Type definition for `AWS::QuickSight::Analysis.StringDefaultValues`.
124698
125655
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-stringdefaultvalues.html}
@@ -125115,6 +126072,11 @@ export type QuickSightAnalysisTableVisual = {
125115
126072
  ConditionalFormatting?: QuickSightAnalysisTableConditionalFormatting;
125116
126073
  Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
125117
126074
  Title?: QuickSightAnalysisVisualTitleLabelOptions;
126075
+ /**
126076
+ * @minLength `1`
126077
+ * @maxLength `1024`
126078
+ */
126079
+ VisualContentAltText?: string;
125118
126080
  /**
125119
126081
  * @minLength `1`
125120
126082
  * @maxLength `512`
@@ -125525,6 +126487,11 @@ export type QuickSightAnalysisTreeMapVisual = {
125525
126487
  ColumnHierarchies?: QuickSightAnalysisColumnHierarchy[];
125526
126488
  Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
125527
126489
  Title?: QuickSightAnalysisVisualTitleLabelOptions;
126490
+ /**
126491
+ * @minLength `1`
126492
+ * @maxLength `1024`
126493
+ */
126494
+ VisualContentAltText?: string;
125528
126495
  /**
125529
126496
  * @minLength `1`
125530
126497
  * @maxLength `512`
@@ -125624,9 +126591,11 @@ export type QuickSightAnalysisVisual = {
125624
126591
  HistogramVisual?: QuickSightAnalysisHistogramVisual;
125625
126592
  InsightVisual?: QuickSightAnalysisInsightVisual;
125626
126593
  KPIVisual?: QuickSightAnalysisKPIVisual;
126594
+ LayerMapVisual?: QuickSightAnalysisLayerMapVisual;
125627
126595
  LineChartVisual?: QuickSightAnalysisLineChartVisual;
125628
126596
  PieChartVisual?: QuickSightAnalysisPieChartVisual;
125629
126597
  PivotTableVisual?: QuickSightAnalysisPivotTableVisual;
126598
+ PluginVisual?: QuickSightAnalysisPluginVisual;
125630
126599
  RadarChartVisual?: QuickSightAnalysisRadarChartVisual;
125631
126600
  SankeyDiagramVisual?: QuickSightAnalysisSankeyDiagramVisual;
125632
126601
  ScatterPlotVisual?: QuickSightAnalysisScatterPlotVisual;
@@ -125812,6 +126781,11 @@ export type QuickSightAnalysisWaterfallVisual = {
125812
126781
  ColumnHierarchies?: QuickSightAnalysisColumnHierarchy[];
125813
126782
  Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
125814
126783
  Title?: QuickSightAnalysisVisualTitleLabelOptions;
126784
+ /**
126785
+ * @minLength `1`
126786
+ * @maxLength `1024`
126787
+ */
126788
+ VisualContentAltText?: string;
125815
126789
  /**
125816
126790
  * @minLength `1`
125817
126791
  * @maxLength `512`
@@ -125925,6 +126899,11 @@ export type QuickSightAnalysisWordCloudVisual = {
125925
126899
  ColumnHierarchies?: QuickSightAnalysisColumnHierarchy[];
125926
126900
  Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
125927
126901
  Title?: QuickSightAnalysisVisualTitleLabelOptions;
126902
+ /**
126903
+ * @minLength `1`
126904
+ * @maxLength `1024`
126905
+ */
126906
+ VisualContentAltText?: string;
125928
126907
  /**
125929
126908
  * @minLength `1`
125930
126909
  * @maxLength `512`
@@ -126101,6 +127080,154 @@ export type QuickSightDashboardAttributes = {
126101
127080
  * @maxLength `20`
126102
127081
  */
126103
127082
  Sheets: {
127083
+ /**
127084
+ * @minLength `0`
127085
+ * @maxLength `10`
127086
+ */
127087
+ Images: {
127088
+ /**
127089
+ * @minLength `0`
127090
+ * @maxLength `10`
127091
+ */
127092
+ Actions: {
127093
+ /**
127094
+ * @minLength `1`
127095
+ * @maxLength `2`
127096
+ */
127097
+ ActionOperations: {
127098
+ NavigationOperation: {
127099
+ LocalNavigationConfiguration: {
127100
+ /**
127101
+ * @minLength `1`
127102
+ * @maxLength `512`
127103
+ * @pattern `^[\w\-]+$`
127104
+ */
127105
+ TargetSheetId: string;
127106
+ };
127107
+ };
127108
+ SetParametersOperation: {
127109
+ /**
127110
+ * @minLength `1`
127111
+ * @maxLength `200`
127112
+ */
127113
+ ParameterValueConfigurations: {
127114
+ /**
127115
+ * @minLength `1`
127116
+ * @maxLength `2048`
127117
+ * @pattern `^[a-zA-Z0-9]+$`
127118
+ */
127119
+ DestinationParameterName: string;
127120
+ Value: {
127121
+ CustomValuesConfiguration: {
127122
+ CustomValues: {
127123
+ /**
127124
+ * @minLength `0`
127125
+ * @maxLength `50000`
127126
+ */
127127
+ DateTimeValues: string[];
127128
+ /**
127129
+ * @minLength `0`
127130
+ * @maxLength `50000`
127131
+ */
127132
+ DecimalValues: number[];
127133
+ /**
127134
+ * @minLength `0`
127135
+ * @maxLength `50000`
127136
+ */
127137
+ IntegerValues: number[];
127138
+ /**
127139
+ * @minLength `0`
127140
+ * @maxLength `50000`
127141
+ */
127142
+ StringValues: string[];
127143
+ };
127144
+ IncludeNullValue: boolean;
127145
+ };
127146
+ SelectAllValueOptions: QuickSightDashboardSelectAllValueOptions;
127147
+ SourceColumn: {
127148
+ /**
127149
+ * @minLength `1`
127150
+ * @maxLength `127`
127151
+ */
127152
+ ColumnName: string;
127153
+ /**
127154
+ * @minLength `1`
127155
+ * @maxLength `2048`
127156
+ */
127157
+ DataSetIdentifier: string;
127158
+ };
127159
+ /**
127160
+ * @minLength `1`
127161
+ * @maxLength `512`
127162
+ */
127163
+ SourceField: string;
127164
+ SourceParameterName: string;
127165
+ };
127166
+ }[];
127167
+ };
127168
+ URLOperation: {
127169
+ URLTarget: QuickSightDashboardURLTargetConfiguration;
127170
+ /**
127171
+ * @minLength `1`
127172
+ * @maxLength `2048`
127173
+ */
127174
+ URLTemplate: string;
127175
+ };
127176
+ }[];
127177
+ /**
127178
+ * @minLength `1`
127179
+ * @maxLength `512`
127180
+ * @pattern `^[\w\-]+$`
127181
+ */
127182
+ CustomActionId: string;
127183
+ /**
127184
+ * @minLength `1`
127185
+ * @maxLength `256`
127186
+ */
127187
+ Name: string;
127188
+ Status: QuickSightDashboardWidgetStatus;
127189
+ Trigger: QuickSightDashboardImageCustomActionTrigger;
127190
+ }[];
127191
+ /**
127192
+ * @minLength `1`
127193
+ * @maxLength `1024`
127194
+ */
127195
+ ImageContentAltText: string;
127196
+ Interactions: {
127197
+ ImageMenuOption: {
127198
+ AvailabilityStatus: QuickSightDashboardDashboardBehavior;
127199
+ };
127200
+ };
127201
+ Scaling: {
127202
+ ScalingType: QuickSightDashboardSheetImageScalingType;
127203
+ };
127204
+ /**
127205
+ * @minLength `1`
127206
+ * @maxLength `512`
127207
+ * @pattern `^[\w\-]+$`
127208
+ */
127209
+ SheetImageId: string;
127210
+ Source: {
127211
+ SheetImageStaticFileSource: {
127212
+ /**
127213
+ * @minLength `1`
127214
+ * @maxLength `512`
127215
+ * @pattern `^[\w\-]+$`
127216
+ */
127217
+ StaticFileId: string;
127218
+ };
127219
+ };
127220
+ Tooltip: {
127221
+ TooltipText: {
127222
+ /**
127223
+ * @minLength `1`
127224
+ * @maxLength `1024`
127225
+ */
127226
+ PlainText: string;
127227
+ };
127228
+ Visibility: QuickSightDashboardVisibility;
127229
+ };
127230
+ }[];
126104
127231
  /**
126105
127232
  * <p>The name of a sheet. This name is displayed on the sheet's tab in the Amazon QuickSight
126106
127233
  console.</p>
@@ -126457,6 +127584,11 @@ export type QuickSightDashboardBarChartVisual = {
126457
127584
  ColumnHierarchies?: QuickSightDashboardColumnHierarchy[];
126458
127585
  Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
126459
127586
  Title?: QuickSightDashboardVisualTitleLabelOptions;
127587
+ /**
127588
+ * @minLength `1`
127589
+ * @maxLength `1024`
127590
+ */
127591
+ VisualContentAltText?: string;
126460
127592
  /**
126461
127593
  * @minLength `1`
126462
127594
  * @maxLength `512`
@@ -126616,6 +127748,11 @@ export type QuickSightDashboardBoxPlotVisual = {
126616
127748
  ColumnHierarchies?: QuickSightDashboardColumnHierarchy[];
126617
127749
  Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
126618
127750
  Title?: QuickSightDashboardVisualTitleLabelOptions;
127751
+ /**
127752
+ * @minLength `1`
127753
+ * @maxLength `1024`
127754
+ */
127755
+ VisualContentAltText?: string;
126619
127756
  /**
126620
127757
  * @minLength `1`
126621
127758
  * @maxLength `512`
@@ -126983,6 +128120,11 @@ export type QuickSightDashboardComboChartVisual = {
126983
128120
  ColumnHierarchies?: QuickSightDashboardColumnHierarchy[];
126984
128121
  Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
126985
128122
  Title?: QuickSightDashboardVisualTitleLabelOptions;
128123
+ /**
128124
+ * @minLength `1`
128125
+ * @maxLength `1024`
128126
+ */
128127
+ VisualContentAltText?: string;
126986
128128
  /**
126987
128129
  * @minLength `1`
126988
128130
  * @maxLength `512`
@@ -127273,6 +128415,11 @@ export type QuickSightDashboardCustomContentVisual = {
127273
128415
  DataSetIdentifier: string;
127274
128416
  Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
127275
128417
  Title?: QuickSightDashboardVisualTitleLabelOptions;
128418
+ /**
128419
+ * @minLength `1`
128420
+ * @maxLength `1024`
128421
+ */
128422
+ VisualContentAltText?: string;
127276
128423
  /**
127277
128424
  * @minLength `1`
127278
128425
  * @maxLength `512`
@@ -127555,6 +128702,11 @@ export type QuickSightDashboardDashboardVersionDefinition = {
127555
128702
  * @maxLength `20`
127556
128703
  */
127557
128704
  Sheets?: QuickSightDashboardSheetDefinition[];
128705
+ /**
128706
+ * @minLength `0`
128707
+ * @maxLength `200`
128708
+ */
128709
+ StaticFiles?: QuickSightDashboardStaticFile[];
127558
128710
  };
127559
128711
  /**
127560
128712
  * Type definition for `AWS::QuickSight::Dashboard.DashboardVisualPublishOptions`.
@@ -128448,6 +129600,11 @@ export type QuickSightDashboardFilledMapVisual = {
128448
129600
  ConditionalFormatting?: QuickSightDashboardFilledMapConditionalFormatting;
128449
129601
  Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
128450
129602
  Title?: QuickSightDashboardVisualTitleLabelOptions;
129603
+ /**
129604
+ * @minLength `1`
129605
+ * @maxLength `1024`
129606
+ */
129607
+ VisualContentAltText?: string;
128451
129608
  /**
128452
129609
  * @minLength `1`
128453
129610
  * @maxLength `512`
@@ -128801,6 +129958,10 @@ export type QuickSightDashboardFontDecoration = "UNDERLINE" | "NONE";
128801
129958
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-fontsize.html}
128802
129959
  */
128803
129960
  export type QuickSightDashboardFontSize = {
129961
+ /**
129962
+ * String based length that is composed of value and unit in px
129963
+ */
129964
+ Absolute?: string;
128804
129965
  Relative?: QuickSightDashboardRelativeFontSize;
128805
129966
  };
128806
129967
  /**
@@ -129076,6 +130237,11 @@ export type QuickSightDashboardFunnelChartVisual = {
129076
130237
  ColumnHierarchies?: QuickSightDashboardColumnHierarchy[];
129077
130238
  Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
129078
130239
  Title?: QuickSightDashboardVisualTitleLabelOptions;
130240
+ /**
130241
+ * @minLength `1`
130242
+ * @maxLength `1024`
130243
+ */
130244
+ VisualContentAltText?: string;
129079
130245
  /**
129080
130246
  * @minLength `1`
129081
130247
  * @maxLength `512`
@@ -129169,6 +130335,11 @@ export type QuickSightDashboardGaugeChartVisual = {
129169
130335
  ConditionalFormatting?: QuickSightDashboardGaugeChartConditionalFormatting;
129170
130336
  Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
129171
130337
  Title?: QuickSightDashboardVisualTitleLabelOptions;
130338
+ /**
130339
+ * @minLength `1`
130340
+ * @maxLength `1024`
130341
+ */
130342
+ VisualContentAltText?: string;
129172
130343
  /**
129173
130344
  * @minLength `1`
129174
130345
  * @maxLength `512`
@@ -129176,6 +130347,69 @@ export type QuickSightDashboardGaugeChartVisual = {
129176
130347
  */
129177
130348
  VisualId: string;
129178
130349
  };
130350
+ /**
130351
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialCategoricalColor`.
130352
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialcategoricalcolor.html}
130353
+ */
130354
+ export type QuickSightDashboardGeospatialCategoricalColor = {
130355
+ CategoryDataColors: QuickSightDashboardGeospatialCategoricalDataColor[];
130356
+ /**
130357
+ * @min `0`
130358
+ * @max `1`
130359
+ */
130360
+ DefaultOpacity?: number;
130361
+ NullDataSettings?: QuickSightDashboardGeospatialNullDataSettings;
130362
+ NullDataVisibility?: QuickSightDashboardVisibility;
130363
+ };
130364
+ /**
130365
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialCategoricalDataColor`.
130366
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialcategoricaldatacolor.html}
130367
+ */
130368
+ export type QuickSightDashboardGeospatialCategoricalDataColor = {
130369
+ /**
130370
+ * @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
130371
+ */
130372
+ Color: string;
130373
+ DataValue: string;
130374
+ };
130375
+ /**
130376
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialCircleRadius`.
130377
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialcircleradius.html}
130378
+ */
130379
+ export type QuickSightDashboardGeospatialCircleRadius = {
130380
+ /**
130381
+ * @min `0`
130382
+ */
130383
+ Radius?: number;
130384
+ };
130385
+ /**
130386
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialCircleSymbolStyle`.
130387
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialcirclesymbolstyle.html}
130388
+ */
130389
+ export type QuickSightDashboardGeospatialCircleSymbolStyle = {
130390
+ CircleRadius?: QuickSightDashboardGeospatialCircleRadius;
130391
+ FillColor?: QuickSightDashboardGeospatialColor;
130392
+ StrokeColor?: QuickSightDashboardGeospatialColor;
130393
+ StrokeWidth?: QuickSightDashboardGeospatialLineWidth;
130394
+ };
130395
+ /**
130396
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialColor`.
130397
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialcolor.html}
130398
+ */
130399
+ export type QuickSightDashboardGeospatialColor = {
130400
+ Categorical?: QuickSightDashboardGeospatialCategoricalColor;
130401
+ Gradient?: QuickSightDashboardGeospatialGradientColor;
130402
+ /**
130403
+ * Describes the properties for a solid color
130404
+ */
130405
+ Solid?: QuickSightDashboardGeospatialSolidColor;
130406
+ };
130407
+ /**
130408
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialColorState`.
130409
+ * Defines view state of the color
130410
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialcolorstate.html}
130411
+ */
130412
+ export type QuickSightDashboardGeospatialColorState = "ENABLED" | "DISABLED";
129179
130413
  /**
129180
130414
  * Type definition for `AWS::QuickSight::Dashboard.GeospatialCoordinateBounds`.
129181
130415
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialcoordinatebounds.html}
@@ -129202,6 +130436,42 @@ export type QuickSightDashboardGeospatialCoordinateBounds = {
129202
130436
  */
129203
130437
  West: number;
129204
130438
  };
130439
+ /**
130440
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialDataSourceItem`.
130441
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialdatasourceitem.html}
130442
+ */
130443
+ export type QuickSightDashboardGeospatialDataSourceItem = {
130444
+ StaticFileDataSource?: QuickSightDashboardGeospatialStaticFileSource;
130445
+ };
130446
+ /**
130447
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialGradientColor`.
130448
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialgradientcolor.html}
130449
+ */
130450
+ export type QuickSightDashboardGeospatialGradientColor = {
130451
+ /**
130452
+ * @min `0`
130453
+ * @max `1`
130454
+ */
130455
+ DefaultOpacity?: number;
130456
+ NullDataSettings?: QuickSightDashboardGeospatialNullDataSettings;
130457
+ NullDataVisibility?: QuickSightDashboardVisibility;
130458
+ /**
130459
+ * @minLength `2`
130460
+ * @maxLength `3`
130461
+ */
130462
+ StepColors: QuickSightDashboardGeospatialGradientStepColor[];
130463
+ };
130464
+ /**
130465
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialGradientStepColor`.
130466
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialgradientstepcolor.html}
130467
+ */
130468
+ export type QuickSightDashboardGeospatialGradientStepColor = {
130469
+ /**
130470
+ * @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
130471
+ */
130472
+ Color: string;
130473
+ DataValue: number;
130474
+ };
129205
130475
  /**
129206
130476
  * Type definition for `AWS::QuickSight::Dashboard.GeospatialHeatmapColorScale`.
129207
130477
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialheatmapcolorscale.html}
@@ -129230,6 +130500,107 @@ export type QuickSightDashboardGeospatialHeatmapDataColor = {
129230
130500
  */
129231
130501
  Color: string;
129232
130502
  };
130503
+ /**
130504
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialLayerColorField`.
130505
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallayercolorfield.html}
130506
+ */
130507
+ export type QuickSightDashboardGeospatialLayerColorField = {
130508
+ /**
130509
+ * @minLength `0`
130510
+ * @maxLength `1`
130511
+ */
130512
+ ColorDimensionsFields?: QuickSightDashboardDimensionField[];
130513
+ /**
130514
+ * @minLength `0`
130515
+ * @maxLength `1`
130516
+ */
130517
+ ColorValuesFields?: QuickSightDashboardMeasureField[];
130518
+ };
130519
+ /**
130520
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialLayerDefinition`.
130521
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallayerdefinition.html}
130522
+ */
130523
+ export type QuickSightDashboardGeospatialLayerDefinition = {
130524
+ LineLayer?: QuickSightDashboardGeospatialLineLayer;
130525
+ PointLayer?: QuickSightDashboardGeospatialPointLayer;
130526
+ PolygonLayer?: QuickSightDashboardGeospatialPolygonLayer;
130527
+ };
130528
+ /**
130529
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialLayerItem`.
130530
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallayeritem.html}
130531
+ */
130532
+ export type QuickSightDashboardGeospatialLayerItem = {
130533
+ /**
130534
+ * @minLength `0`
130535
+ * @maxLength `10`
130536
+ */
130537
+ Actions?: QuickSightDashboardLayerCustomAction[];
130538
+ DataSource?: QuickSightDashboardGeospatialDataSourceItem;
130539
+ JoinDefinition?: QuickSightDashboardGeospatialLayerJoinDefinition;
130540
+ Label?: string;
130541
+ LayerDefinition?: QuickSightDashboardGeospatialLayerDefinition;
130542
+ LayerId: string;
130543
+ LayerType?: QuickSightDashboardGeospatialLayerType;
130544
+ Tooltip?: QuickSightDashboardTooltipOptions;
130545
+ Visibility?: QuickSightDashboardVisibility;
130546
+ };
130547
+ /**
130548
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialLayerJoinDefinition`.
130549
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallayerjoindefinition.html}
130550
+ */
130551
+ export type QuickSightDashboardGeospatialLayerJoinDefinition = {
130552
+ ColorField?: QuickSightDashboardGeospatialLayerColorField;
130553
+ DatasetKeyField?: QuickSightDashboardUnaggregatedField;
130554
+ ShapeKeyField?: string;
130555
+ };
130556
+ /**
130557
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialLayerMapConfiguration`.
130558
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallayermapconfiguration.html}
130559
+ */
130560
+ export type QuickSightDashboardGeospatialLayerMapConfiguration = {
130561
+ Interactions?: unknown;
130562
+ Legend?: QuickSightDashboardLegendOptions;
130563
+ MapLayers?: QuickSightDashboardGeospatialLayerItem[];
130564
+ MapState?: QuickSightDashboardGeospatialMapState;
130565
+ MapStyle?: QuickSightDashboardGeospatialMapStyle;
130566
+ };
130567
+ /**
130568
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialLayerType`.
130569
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallayertype.html}
130570
+ */
130571
+ export type QuickSightDashboardGeospatialLayerType = "POINT" | "LINE" | "POLYGON";
130572
+ /**
130573
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialLineLayer`.
130574
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallinelayer.html}
130575
+ */
130576
+ export type QuickSightDashboardGeospatialLineLayer = {
130577
+ Style: QuickSightDashboardGeospatialLineStyle;
130578
+ };
130579
+ /**
130580
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialLineStyle`.
130581
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallinestyle.html}
130582
+ */
130583
+ export type QuickSightDashboardGeospatialLineStyle = {
130584
+ LineSymbolStyle?: QuickSightDashboardGeospatialLineSymbolStyle;
130585
+ };
130586
+ /**
130587
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialLineSymbolStyle`.
130588
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallinesymbolstyle.html}
130589
+ */
130590
+ export type QuickSightDashboardGeospatialLineSymbolStyle = {
130591
+ FillColor?: QuickSightDashboardGeospatialColor;
130592
+ LineWidth?: QuickSightDashboardGeospatialLineWidth;
130593
+ };
130594
+ /**
130595
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialLineWidth`.
130596
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallinewidth.html}
130597
+ */
130598
+ export type QuickSightDashboardGeospatialLineWidth = {
130599
+ /**
130600
+ * @min `0`
130601
+ */
130602
+ LineWidth?: number;
130603
+ };
129233
130604
  /**
129234
130605
  * Type definition for `AWS::QuickSight::Dashboard.GeospatialMapAggregatedFieldWells`.
129235
130606
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialmapaggregatedfieldwells.html}
@@ -129257,6 +130628,7 @@ export type QuickSightDashboardGeospatialMapAggregatedFieldWells = {
129257
130628
  */
129258
130629
  export type QuickSightDashboardGeospatialMapConfiguration = {
129259
130630
  FieldWells?: QuickSightDashboardGeospatialMapFieldWells;
130631
+ Interactions?: unknown;
129260
130632
  Legend?: QuickSightDashboardLegendOptions;
129261
130633
  MapStyleOptions?: QuickSightDashboardGeospatialMapStyleOptions;
129262
130634
  PointStyleOptions?: QuickSightDashboardGeospatialPointStyleOptions;
@@ -129271,6 +130643,31 @@ export type QuickSightDashboardGeospatialMapConfiguration = {
129271
130643
  export type QuickSightDashboardGeospatialMapFieldWells = {
129272
130644
  GeospatialMapAggregatedFieldWells?: QuickSightDashboardGeospatialMapAggregatedFieldWells;
129273
130645
  };
130646
+ /**
130647
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialMapNavigation`.
130648
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialmapnavigation.html}
130649
+ */
130650
+ export type QuickSightDashboardGeospatialMapNavigation = "ENABLED" | "DISABLED";
130651
+ /**
130652
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialMapState`.
130653
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialmapstate.html}
130654
+ */
130655
+ export type QuickSightDashboardGeospatialMapState = {
130656
+ Bounds?: QuickSightDashboardGeospatialCoordinateBounds;
130657
+ MapNavigation?: QuickSightDashboardGeospatialMapNavigation;
130658
+ };
130659
+ /**
130660
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialMapStyle`.
130661
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialmapstyle.html}
130662
+ */
130663
+ export type QuickSightDashboardGeospatialMapStyle = {
130664
+ /**
130665
+ * @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
130666
+ */
130667
+ BackgroundColor?: string;
130668
+ BaseMapStyle?: QuickSightDashboardBaseMapStyleType;
130669
+ BaseMapVisibility?: QuickSightDashboardVisibility;
130670
+ };
129274
130671
  /**
129275
130672
  * Type definition for `AWS::QuickSight::Dashboard.GeospatialMapStyleOptions`.
129276
130673
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialmapstyleoptions.html}
@@ -129296,6 +130693,11 @@ export type QuickSightDashboardGeospatialMapVisual = {
129296
130693
  ColumnHierarchies?: QuickSightDashboardColumnHierarchy[];
129297
130694
  Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
129298
130695
  Title?: QuickSightDashboardVisualTitleLabelOptions;
130696
+ /**
130697
+ * @minLength `1`
130698
+ * @maxLength `1024`
130699
+ */
130700
+ VisualContentAltText?: string;
129299
130701
  /**
129300
130702
  * @minLength `1`
129301
130703
  * @maxLength `512`
@@ -129303,6 +130705,45 @@ export type QuickSightDashboardGeospatialMapVisual = {
129303
130705
  */
129304
130706
  VisualId: string;
129305
130707
  };
130708
+ /**
130709
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialNullDataSettings`.
130710
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialnulldatasettings.html}
130711
+ */
130712
+ export type QuickSightDashboardGeospatialNullDataSettings = {
130713
+ SymbolStyle: QuickSightDashboardGeospatialNullSymbolStyle;
130714
+ };
130715
+ /**
130716
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialNullSymbolStyle`.
130717
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialnullsymbolstyle.html}
130718
+ */
130719
+ export type QuickSightDashboardGeospatialNullSymbolStyle = {
130720
+ /**
130721
+ * @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
130722
+ */
130723
+ FillColor?: string;
130724
+ /**
130725
+ * @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
130726
+ */
130727
+ StrokeColor?: string;
130728
+ /**
130729
+ * @min `0`
130730
+ */
130731
+ StrokeWidth?: number;
130732
+ };
130733
+ /**
130734
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialPointLayer`.
130735
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialpointlayer.html}
130736
+ */
130737
+ export type QuickSightDashboardGeospatialPointLayer = {
130738
+ Style: QuickSightDashboardGeospatialPointStyle;
130739
+ };
130740
+ /**
130741
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialPointStyle`.
130742
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialpointstyle.html}
130743
+ */
130744
+ export type QuickSightDashboardGeospatialPointStyle = {
130745
+ CircleSymbolStyle?: QuickSightDashboardGeospatialCircleSymbolStyle;
130746
+ };
129306
130747
  /**
129307
130748
  * Type definition for `AWS::QuickSight::Dashboard.GeospatialPointStyleOptions`.
129308
130749
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialpointstyleoptions.html}
@@ -129312,11 +130753,61 @@ export type QuickSightDashboardGeospatialPointStyleOptions = {
129312
130753
  HeatmapConfiguration?: QuickSightDashboardGeospatialHeatmapConfiguration;
129313
130754
  SelectedPointStyle?: QuickSightDashboardGeospatialSelectedPointStyle;
129314
130755
  };
130756
+ /**
130757
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialPolygonLayer`.
130758
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialpolygonlayer.html}
130759
+ */
130760
+ export type QuickSightDashboardGeospatialPolygonLayer = {
130761
+ Style: QuickSightDashboardGeospatialPolygonStyle;
130762
+ };
130763
+ /**
130764
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialPolygonStyle`.
130765
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialpolygonstyle.html}
130766
+ */
130767
+ export type QuickSightDashboardGeospatialPolygonStyle = {
130768
+ PolygonSymbolStyle?: QuickSightDashboardGeospatialPolygonSymbolStyle;
130769
+ };
130770
+ /**
130771
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialPolygonSymbolStyle`.
130772
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialpolygonsymbolstyle.html}
130773
+ */
130774
+ export type QuickSightDashboardGeospatialPolygonSymbolStyle = {
130775
+ FillColor?: QuickSightDashboardGeospatialColor;
130776
+ StrokeColor?: QuickSightDashboardGeospatialColor;
130777
+ StrokeWidth?: QuickSightDashboardGeospatialLineWidth;
130778
+ };
129315
130779
  /**
129316
130780
  * Type definition for `AWS::QuickSight::Dashboard.GeospatialSelectedPointStyle`.
129317
130781
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialselectedpointstyle.html}
129318
130782
  */
129319
130783
  export type QuickSightDashboardGeospatialSelectedPointStyle = "POINT" | "CLUSTER" | "HEATMAP";
130784
+ /**
130785
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialSolidColor`.
130786
+ * Describes the properties for a solid color
130787
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialsolidcolor.html}
130788
+ */
130789
+ export type QuickSightDashboardGeospatialSolidColor = {
130790
+ /**
130791
+ * @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
130792
+ */
130793
+ Color: string;
130794
+ /**
130795
+ * Defines view state of the color
130796
+ */
130797
+ State?: QuickSightDashboardGeospatialColorState;
130798
+ };
130799
+ /**
130800
+ * Type definition for `AWS::QuickSight::Dashboard.GeospatialStaticFileSource`.
130801
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialstaticfilesource.html}
130802
+ */
130803
+ export type QuickSightDashboardGeospatialStaticFileSource = {
130804
+ /**
130805
+ * @minLength `1`
130806
+ * @maxLength `512`
130807
+ * @pattern `^[\w\-]+$`
130808
+ */
130809
+ StaticFileId: string;
130810
+ };
129320
130811
  /**
129321
130812
  * Type definition for `AWS::QuickSight::Dashboard.GeospatialWindowOptions`.
129322
130813
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialwindowoptions.html}
@@ -129531,6 +131022,11 @@ export type QuickSightDashboardHeatMapVisual = {
129531
131022
  ColumnHierarchies?: QuickSightDashboardColumnHierarchy[];
129532
131023
  Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
129533
131024
  Title?: QuickSightDashboardVisualTitleLabelOptions;
131025
+ /**
131026
+ * @minLength `1`
131027
+ * @maxLength `1024`
131028
+ */
131029
+ VisualContentAltText?: string;
129534
131030
  /**
129535
131031
  * @minLength `1`
129536
131032
  * @maxLength `512`
@@ -129598,6 +131094,11 @@ export type QuickSightDashboardHistogramVisual = {
129598
131094
  ChartConfiguration?: QuickSightDashboardHistogramConfiguration;
129599
131095
  Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
129600
131096
  Title?: QuickSightDashboardVisualTitleLabelOptions;
131097
+ /**
131098
+ * @minLength `1`
131099
+ * @maxLength `1024`
131100
+ */
131101
+ VisualContentAltText?: string;
129601
131102
  /**
129602
131103
  * @minLength `1`
129603
131104
  * @maxLength `512`
@@ -129615,6 +131116,71 @@ export type QuickSightDashboardHorizontalTextAlignment = "LEFT" | "CENTER" | "RI
129615
131116
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-icon.html}
129616
131117
  */
129617
131118
  export type QuickSightDashboardIcon = "CARET_UP" | "CARET_DOWN" | "PLUS" | "MINUS" | "ARROW_UP" | "ARROW_DOWN" | "ARROW_LEFT" | "ARROW_UP_LEFT" | "ARROW_DOWN_LEFT" | "ARROW_RIGHT" | "ARROW_UP_RIGHT" | "ARROW_DOWN_RIGHT" | "FACE_UP" | "FACE_DOWN" | "FACE_FLAT" | "ONE_BAR" | "TWO_BAR" | "THREE_BAR" | "CIRCLE" | "TRIANGLE" | "SQUARE" | "FLAG" | "THUMBS_UP" | "THUMBS_DOWN" | "CHECKMARK" | "X";
131119
+ /**
131120
+ * Type definition for `AWS::QuickSight::Dashboard.ImageCustomAction`.
131121
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-imagecustomaction.html}
131122
+ */
131123
+ export type QuickSightDashboardImageCustomAction = {
131124
+ /**
131125
+ * @minLength `1`
131126
+ * @maxLength `2`
131127
+ */
131128
+ ActionOperations: QuickSightDashboardImageCustomActionOperation[];
131129
+ /**
131130
+ * @minLength `1`
131131
+ * @maxLength `512`
131132
+ * @pattern `^[\w\-]+$`
131133
+ */
131134
+ CustomActionId: string;
131135
+ /**
131136
+ * @minLength `1`
131137
+ * @maxLength `256`
131138
+ */
131139
+ Name: string;
131140
+ Status?: QuickSightDashboardWidgetStatus;
131141
+ Trigger: QuickSightDashboardImageCustomActionTrigger;
131142
+ };
131143
+ /**
131144
+ * Type definition for `AWS::QuickSight::Dashboard.ImageCustomActionOperation`.
131145
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-imagecustomactionoperation.html}
131146
+ */
131147
+ export type QuickSightDashboardImageCustomActionOperation = {
131148
+ NavigationOperation?: QuickSightDashboardCustomActionNavigationOperation;
131149
+ SetParametersOperation?: QuickSightDashboardCustomActionSetParametersOperation;
131150
+ URLOperation?: QuickSightDashboardCustomActionURLOperation;
131151
+ };
131152
+ /**
131153
+ * Type definition for `AWS::QuickSight::Dashboard.ImageCustomActionTrigger`.
131154
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-imagecustomactiontrigger.html}
131155
+ */
131156
+ export type QuickSightDashboardImageCustomActionTrigger = "CLICK" | "MENU";
131157
+ /**
131158
+ * Type definition for `AWS::QuickSight::Dashboard.ImageInteractionOptions`.
131159
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-imageinteractionoptions.html}
131160
+ */
131161
+ export type QuickSightDashboardImageInteractionOptions = {
131162
+ ImageMenuOption?: QuickSightDashboardImageMenuOption;
131163
+ };
131164
+ /**
131165
+ * Type definition for `AWS::QuickSight::Dashboard.ImageMenuOption`.
131166
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-imagemenuoption.html}
131167
+ */
131168
+ export type QuickSightDashboardImageMenuOption = {
131169
+ AvailabilityStatus?: QuickSightDashboardDashboardBehavior;
131170
+ };
131171
+ /**
131172
+ * Type definition for `AWS::QuickSight::Dashboard.ImageStaticFile`.
131173
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-imagestaticfile.html}
131174
+ */
131175
+ export type QuickSightDashboardImageStaticFile = {
131176
+ Source?: QuickSightDashboardStaticFileSource;
131177
+ /**
131178
+ * @minLength `1`
131179
+ * @maxLength `512`
131180
+ * @pattern `^[\w\-]+$`
131181
+ */
131182
+ StaticFileId: string;
131183
+ };
129618
131184
  /**
129619
131185
  * Type definition for `AWS::QuickSight::Dashboard.InnerFilter`.
129620
131186
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-innerfilter.html}
@@ -129652,6 +131218,11 @@ export type QuickSightDashboardInsightVisual = {
129652
131218
  InsightConfiguration?: QuickSightDashboardInsightConfiguration;
129653
131219
  Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
129654
131220
  Title?: QuickSightDashboardVisualTitleLabelOptions;
131221
+ /**
131222
+ * @minLength `1`
131223
+ * @maxLength `1024`
131224
+ */
131225
+ VisualContentAltText?: string;
129655
131226
  /**
129656
131227
  * @minLength `1`
129657
131228
  * @maxLength `512`
@@ -129868,6 +131439,11 @@ export type QuickSightDashboardKPIVisual = {
129868
131439
  ConditionalFormatting?: QuickSightDashboardKPIConditionalFormatting;
129869
131440
  Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
129870
131441
  Title?: QuickSightDashboardVisualTitleLabelOptions;
131442
+ /**
131443
+ * @minLength `1`
131444
+ * @maxLength `1024`
131445
+ */
131446
+ VisualContentAltText?: string;
129871
131447
  /**
129872
131448
  * @minLength `1`
129873
131449
  * @maxLength `512`
@@ -129903,6 +131479,70 @@ export type QuickSightDashboardLabelOptions = {
129903
131479
  FontConfiguration?: QuickSightDashboardFontConfiguration;
129904
131480
  Visibility?: QuickSightDashboardVisibility;
129905
131481
  };
131482
+ /**
131483
+ * Type definition for `AWS::QuickSight::Dashboard.LayerCustomAction`.
131484
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-layercustomaction.html}
131485
+ */
131486
+ export type QuickSightDashboardLayerCustomAction = {
131487
+ /**
131488
+ * @minLength `1`
131489
+ * @maxLength `2`
131490
+ */
131491
+ ActionOperations: QuickSightDashboardLayerCustomActionOperation[];
131492
+ /**
131493
+ * @minLength `1`
131494
+ * @maxLength `512`
131495
+ * @pattern `^[\w\-]+$`
131496
+ */
131497
+ CustomActionId: string;
131498
+ /**
131499
+ * @minLength `1`
131500
+ * @maxLength `256`
131501
+ */
131502
+ Name: string;
131503
+ Status?: QuickSightDashboardWidgetStatus;
131504
+ Trigger: QuickSightDashboardLayerCustomActionTrigger;
131505
+ };
131506
+ /**
131507
+ * Type definition for `AWS::QuickSight::Dashboard.LayerCustomActionOperation`.
131508
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-layercustomactionoperation.html}
131509
+ */
131510
+ export type QuickSightDashboardLayerCustomActionOperation = {
131511
+ FilterOperation?: QuickSightDashboardCustomActionFilterOperation;
131512
+ NavigationOperation?: QuickSightDashboardCustomActionNavigationOperation;
131513
+ SetParametersOperation?: QuickSightDashboardCustomActionSetParametersOperation;
131514
+ URLOperation?: QuickSightDashboardCustomActionURLOperation;
131515
+ };
131516
+ /**
131517
+ * Type definition for `AWS::QuickSight::Dashboard.LayerCustomActionTrigger`.
131518
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-layercustomactiontrigger.html}
131519
+ */
131520
+ export type QuickSightDashboardLayerCustomActionTrigger = "DATA_POINT_CLICK" | "DATA_POINT_MENU";
131521
+ /**
131522
+ * Type definition for `AWS::QuickSight::Dashboard.LayerMapVisual`.
131523
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-layermapvisual.html}
131524
+ */
131525
+ export type QuickSightDashboardLayerMapVisual = {
131526
+ ChartConfiguration?: QuickSightDashboardGeospatialLayerMapConfiguration;
131527
+ /**
131528
+ * @minLength `1`
131529
+ * @maxLength `2048`
131530
+ */
131531
+ DataSetIdentifier: string;
131532
+ Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
131533
+ Title?: QuickSightDashboardVisualTitleLabelOptions;
131534
+ /**
131535
+ * @minLength `1`
131536
+ * @maxLength `1024`
131537
+ */
131538
+ VisualContentAltText?: string;
131539
+ /**
131540
+ * @minLength `1`
131541
+ * @maxLength `512`
131542
+ * @pattern `^[\w\-]+$`
131543
+ */
131544
+ VisualId: string;
131545
+ };
129906
131546
  /**
129907
131547
  * Type definition for `AWS::QuickSight::Dashboard.Layout`.
129908
131548
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-layout.html}
@@ -129935,6 +131575,7 @@ export type QuickSightDashboardLegendOptions = {
129935
131575
  Height?: string;
129936
131576
  Position?: QuickSightDashboardLegendPosition;
129937
131577
  Title?: QuickSightDashboardLabelOptions;
131578
+ ValueFontConfiguration?: QuickSightDashboardFontConfiguration;
129938
131579
  Visibility?: QuickSightDashboardVisibility;
129939
131580
  /**
129940
131581
  * String based length that is composed of value and unit in px
@@ -130119,6 +131760,11 @@ export type QuickSightDashboardLineChartVisual = {
130119
131760
  ColumnHierarchies?: QuickSightDashboardColumnHierarchy[];
130120
131761
  Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
130121
131762
  Title?: QuickSightDashboardVisualTitleLabelOptions;
131763
+ /**
131764
+ * @minLength `1`
131765
+ * @maxLength `1024`
131766
+ */
131767
+ VisualContentAltText?: string;
130122
131768
  /**
130123
131769
  * @minLength `1`
130124
131770
  * @maxLength `512`
@@ -130985,6 +132631,11 @@ export type QuickSightDashboardPieChartVisual = {
130985
132631
  ColumnHierarchies?: QuickSightDashboardColumnHierarchy[];
130986
132632
  Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
130987
132633
  Title?: QuickSightDashboardVisualTitleLabelOptions;
132634
+ /**
132635
+ * @minLength `1`
132636
+ * @maxLength `1024`
132637
+ */
132638
+ VisualContentAltText?: string;
130988
132639
  /**
130989
132640
  * @minLength `1`
130990
132641
  * @maxLength `512`
@@ -131283,6 +132934,11 @@ export type QuickSightDashboardPivotTableVisual = {
131283
132934
  ConditionalFormatting?: QuickSightDashboardPivotTableConditionalFormatting;
131284
132935
  Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
131285
132936
  Title?: QuickSightDashboardVisualTitleLabelOptions;
132937
+ /**
132938
+ * @minLength `1`
132939
+ * @maxLength `1024`
132940
+ */
132941
+ VisualContentAltText?: string;
131286
132942
  /**
131287
132943
  * @minLength `1`
131288
132944
  * @maxLength `512`
@@ -131308,6 +132964,108 @@ export type QuickSightDashboardPivotTotalOptions = {
131308
132964
  TotalsVisibility?: QuickSightDashboardVisibility;
131309
132965
  ValueCellStyle?: QuickSightDashboardTableCellStyle;
131310
132966
  };
132967
+ /**
132968
+ * Type definition for `AWS::QuickSight::Dashboard.PluginVisual`.
132969
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-pluginvisual.html}
132970
+ */
132971
+ export type QuickSightDashboardPluginVisual = {
132972
+ ChartConfiguration?: QuickSightDashboardPluginVisualConfiguration;
132973
+ PluginArn: string;
132974
+ Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
132975
+ Title?: QuickSightDashboardVisualTitleLabelOptions;
132976
+ /**
132977
+ * @minLength `1`
132978
+ * @maxLength `1024`
132979
+ */
132980
+ VisualContentAltText?: string;
132981
+ /**
132982
+ * @minLength `1`
132983
+ * @maxLength `512`
132984
+ * @pattern `^[\w\-]+$`
132985
+ */
132986
+ VisualId: string;
132987
+ };
132988
+ /**
132989
+ * Type definition for `AWS::QuickSight::Dashboard.PluginVisualAxisName`.
132990
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-pluginvisualaxisname.html}
132991
+ */
132992
+ export type QuickSightDashboardPluginVisualAxisName = "GROUP_BY" | "VALUE";
132993
+ /**
132994
+ * Type definition for `AWS::QuickSight::Dashboard.PluginVisualConfiguration`.
132995
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-pluginvisualconfiguration.html}
132996
+ */
132997
+ export type QuickSightDashboardPluginVisualConfiguration = {
132998
+ /**
132999
+ * @minLength `0`
133000
+ * @maxLength `10`
133001
+ */
133002
+ FieldWells?: QuickSightDashboardPluginVisualFieldWell[];
133003
+ SortConfiguration?: QuickSightDashboardPluginVisualSortConfiguration;
133004
+ VisualOptions?: QuickSightDashboardPluginVisualOptions;
133005
+ };
133006
+ /**
133007
+ * Type definition for `AWS::QuickSight::Dashboard.PluginVisualFieldWell`.
133008
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-pluginvisualfieldwell.html}
133009
+ */
133010
+ export type QuickSightDashboardPluginVisualFieldWell = {
133011
+ AxisName?: QuickSightDashboardPluginVisualAxisName;
133012
+ /**
133013
+ * @minLength `0`
133014
+ * @maxLength `200`
133015
+ */
133016
+ Dimensions?: QuickSightDashboardDimensionField[];
133017
+ /**
133018
+ * @minLength `0`
133019
+ * @maxLength `200`
133020
+ */
133021
+ Measures?: QuickSightDashboardMeasureField[];
133022
+ /**
133023
+ * @minLength `0`
133024
+ * @maxLength `200`
133025
+ */
133026
+ Unaggregated?: QuickSightDashboardUnaggregatedField[];
133027
+ };
133028
+ /**
133029
+ * Type definition for `AWS::QuickSight::Dashboard.PluginVisualItemsLimitConfiguration`.
133030
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-pluginvisualitemslimitconfiguration.html}
133031
+ */
133032
+ export type QuickSightDashboardPluginVisualItemsLimitConfiguration = {
133033
+ ItemsLimit?: number;
133034
+ };
133035
+ /**
133036
+ * Type definition for `AWS::QuickSight::Dashboard.PluginVisualOptions`.
133037
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-pluginvisualoptions.html}
133038
+ */
133039
+ export type QuickSightDashboardPluginVisualOptions = {
133040
+ VisualProperties?: QuickSightDashboardPluginVisualProperty[];
133041
+ };
133042
+ /**
133043
+ * Type definition for `AWS::QuickSight::Dashboard.PluginVisualProperty`.
133044
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-pluginvisualproperty.html}
133045
+ */
133046
+ export type QuickSightDashboardPluginVisualProperty = {
133047
+ Name?: string;
133048
+ Value?: string;
133049
+ };
133050
+ /**
133051
+ * Type definition for `AWS::QuickSight::Dashboard.PluginVisualSortConfiguration`.
133052
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-pluginvisualsortconfiguration.html}
133053
+ */
133054
+ export type QuickSightDashboardPluginVisualSortConfiguration = {
133055
+ PluginVisualTableQuerySort?: QuickSightDashboardPluginVisualTableQuerySort;
133056
+ };
133057
+ /**
133058
+ * Type definition for `AWS::QuickSight::Dashboard.PluginVisualTableQuerySort`.
133059
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-pluginvisualtablequerysort.html}
133060
+ */
133061
+ export type QuickSightDashboardPluginVisualTableQuerySort = {
133062
+ ItemsLimitConfiguration?: QuickSightDashboardPluginVisualItemsLimitConfiguration;
133063
+ /**
133064
+ * @minLength `0`
133065
+ * @maxLength `100`
133066
+ */
133067
+ RowSort?: QuickSightDashboardFieldSortOptions[];
133068
+ };
131311
133069
  /**
131312
133070
  * Type definition for `AWS::QuickSight::Dashboard.PredefinedHierarchy`.
131313
133071
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-predefinedhierarchy.html}
@@ -131460,6 +133218,11 @@ export type QuickSightDashboardRadarChartVisual = {
131460
133218
  ColumnHierarchies?: QuickSightDashboardColumnHierarchy[];
131461
133219
  Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
131462
133220
  Title?: QuickSightDashboardVisualTitleLabelOptions;
133221
+ /**
133222
+ * @minLength `1`
133223
+ * @maxLength `1024`
133224
+ */
133225
+ VisualContentAltText?: string;
131463
133226
  /**
131464
133227
  * @minLength `1`
131465
133228
  * @maxLength `512`
@@ -131776,6 +133539,11 @@ export type QuickSightDashboardSankeyDiagramVisual = {
131776
133539
  ChartConfiguration?: QuickSightDashboardSankeyDiagramChartConfiguration;
131777
133540
  Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
131778
133541
  Title?: QuickSightDashboardVisualTitleLabelOptions;
133542
+ /**
133543
+ * @minLength `1`
133544
+ * @maxLength `1024`
133545
+ */
133546
+ VisualContentAltText?: string;
131779
133547
  /**
131780
133548
  * @minLength `1`
131781
133549
  * @maxLength `512`
@@ -131886,6 +133654,11 @@ export type QuickSightDashboardScatterPlotVisual = {
131886
133654
  ColumnHierarchies?: QuickSightDashboardColumnHierarchy[];
131887
133655
  Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
131888
133656
  Title?: QuickSightDashboardVisualTitleLabelOptions;
133657
+ /**
133658
+ * @minLength `1`
133659
+ * @maxLength `1024`
133660
+ */
133661
+ VisualContentAltText?: string;
131889
133662
  /**
131890
133663
  * @minLength `1`
131891
133664
  * @maxLength `512`
@@ -132047,6 +133820,11 @@ export type QuickSightDashboardShapeConditionalFormat = {
132047
133820
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-sheet.html}
132048
133821
  */
132049
133822
  export type QuickSightDashboardSheet = {
133823
+ /**
133824
+ * @minLength `0`
133825
+ * @maxLength `10`
133826
+ */
133827
+ Images?: QuickSightDashboardSheetImage[];
132050
133828
  /**
132051
133829
  * <p>The name of a sheet. This name is displayed on the sheet's tab in the Amazon QuickSight
132052
133830
  console.</p>
@@ -132132,6 +133910,11 @@ export type QuickSightDashboardSheetDefinition = {
132132
133910
  * @maxLength `200`
132133
133911
  */
132134
133912
  FilterControls?: QuickSightDashboardFilterControl[];
133913
+ /**
133914
+ * @minLength `0`
133915
+ * @maxLength `10`
133916
+ */
133917
+ Images?: QuickSightDashboardSheetImage[];
132135
133918
  /**
132136
133919
  * @minLength `1`
132137
133920
  * @maxLength `1`
@@ -132193,6 +133976,82 @@ export type QuickSightDashboardSheetElementRenderingRule = {
132193
133976
  */
132194
133977
  Expression: string;
132195
133978
  };
133979
+ /**
133980
+ * Type definition for `AWS::QuickSight::Dashboard.SheetImage`.
133981
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-sheetimage.html}
133982
+ */
133983
+ export type QuickSightDashboardSheetImage = {
133984
+ /**
133985
+ * @minLength `0`
133986
+ * @maxLength `10`
133987
+ */
133988
+ Actions?: QuickSightDashboardImageCustomAction[];
133989
+ /**
133990
+ * @minLength `1`
133991
+ * @maxLength `1024`
133992
+ */
133993
+ ImageContentAltText?: string;
133994
+ Interactions?: QuickSightDashboardImageInteractionOptions;
133995
+ Scaling?: QuickSightDashboardSheetImageScalingConfiguration;
133996
+ /**
133997
+ * @minLength `1`
133998
+ * @maxLength `512`
133999
+ * @pattern `^[\w\-]+$`
134000
+ */
134001
+ SheetImageId: string;
134002
+ Source: QuickSightDashboardSheetImageSource;
134003
+ Tooltip?: QuickSightDashboardSheetImageTooltipConfiguration;
134004
+ };
134005
+ /**
134006
+ * Type definition for `AWS::QuickSight::Dashboard.SheetImageScalingConfiguration`.
134007
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-sheetimagescalingconfiguration.html}
134008
+ */
134009
+ export type QuickSightDashboardSheetImageScalingConfiguration = {
134010
+ ScalingType?: QuickSightDashboardSheetImageScalingType;
134011
+ };
134012
+ /**
134013
+ * Type definition for `AWS::QuickSight::Dashboard.SheetImageScalingType`.
134014
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-sheetimagescalingtype.html}
134015
+ */
134016
+ export type QuickSightDashboardSheetImageScalingType = "SCALE_TO_WIDTH" | "SCALE_TO_HEIGHT" | "SCALE_TO_CONTAINER" | "SCALE_NONE";
134017
+ /**
134018
+ * Type definition for `AWS::QuickSight::Dashboard.SheetImageSource`.
134019
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-sheetimagesource.html}
134020
+ */
134021
+ export type QuickSightDashboardSheetImageSource = {
134022
+ SheetImageStaticFileSource?: QuickSightDashboardSheetImageStaticFileSource;
134023
+ };
134024
+ /**
134025
+ * Type definition for `AWS::QuickSight::Dashboard.SheetImageStaticFileSource`.
134026
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-sheetimagestaticfilesource.html}
134027
+ */
134028
+ export type QuickSightDashboardSheetImageStaticFileSource = {
134029
+ /**
134030
+ * @minLength `1`
134031
+ * @maxLength `512`
134032
+ * @pattern `^[\w\-]+$`
134033
+ */
134034
+ StaticFileId: string;
134035
+ };
134036
+ /**
134037
+ * Type definition for `AWS::QuickSight::Dashboard.SheetImageTooltipConfiguration`.
134038
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-sheetimagetooltipconfiguration.html}
134039
+ */
134040
+ export type QuickSightDashboardSheetImageTooltipConfiguration = {
134041
+ TooltipText?: QuickSightDashboardSheetImageTooltipText;
134042
+ Visibility?: QuickSightDashboardVisibility;
134043
+ };
134044
+ /**
134045
+ * Type definition for `AWS::QuickSight::Dashboard.SheetImageTooltipText`.
134046
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-sheetimagetooltiptext.html}
134047
+ */
134048
+ export type QuickSightDashboardSheetImageTooltipText = {
134049
+ /**
134050
+ * @minLength `1`
134051
+ * @maxLength `1024`
134052
+ */
134053
+ PlainText?: string;
134054
+ };
132196
134055
  /**
132197
134056
  * Type definition for `AWS::QuickSight::Dashboard.SheetLayoutElementMaximizationOption`.
132198
134057
  * <p>The sheet layout maximization options of a dashbaord.</p>
@@ -132361,11 +134220,56 @@ export type QuickSightDashboardSpacing = {
132361
134220
  */
132362
134221
  Top?: string;
132363
134222
  };
134223
+ /**
134224
+ * Type definition for `AWS::QuickSight::Dashboard.SpatialStaticFile`.
134225
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-spatialstaticfile.html}
134226
+ */
134227
+ export type QuickSightDashboardSpatialStaticFile = {
134228
+ Source?: QuickSightDashboardStaticFileSource;
134229
+ /**
134230
+ * @minLength `1`
134231
+ * @maxLength `512`
134232
+ * @pattern `^[\w\-]+$`
134233
+ */
134234
+ StaticFileId: string;
134235
+ };
132364
134236
  /**
132365
134237
  * Type definition for `AWS::QuickSight::Dashboard.SpecialValue`.
132366
134238
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-specialvalue.html}
132367
134239
  */
132368
134240
  export type QuickSightDashboardSpecialValue = "EMPTY" | "NULL" | "OTHER";
134241
+ /**
134242
+ * Type definition for `AWS::QuickSight::Dashboard.StaticFile`.
134243
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-staticfile.html}
134244
+ */
134245
+ export type QuickSightDashboardStaticFile = {
134246
+ ImageStaticFile?: QuickSightDashboardImageStaticFile;
134247
+ SpatialStaticFile?: QuickSightDashboardSpatialStaticFile;
134248
+ };
134249
+ /**
134250
+ * Type definition for `AWS::QuickSight::Dashboard.StaticFileS3SourceOptions`.
134251
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-staticfiles3sourceoptions.html}
134252
+ */
134253
+ export type QuickSightDashboardStaticFileS3SourceOptions = {
134254
+ BucketName: string;
134255
+ ObjectKey: string;
134256
+ Region: string;
134257
+ };
134258
+ /**
134259
+ * Type definition for `AWS::QuickSight::Dashboard.StaticFileSource`.
134260
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-staticfilesource.html}
134261
+ */
134262
+ export type QuickSightDashboardStaticFileSource = {
134263
+ S3Options?: QuickSightDashboardStaticFileS3SourceOptions;
134264
+ UrlOptions?: QuickSightDashboardStaticFileUrlSourceOptions;
134265
+ };
134266
+ /**
134267
+ * Type definition for `AWS::QuickSight::Dashboard.StaticFileUrlSourceOptions`.
134268
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-staticfileurlsourceoptions.html}
134269
+ */
134270
+ export type QuickSightDashboardStaticFileUrlSourceOptions = {
134271
+ Url: string;
134272
+ };
132369
134273
  /**
132370
134274
  * Type definition for `AWS::QuickSight::Dashboard.StringDefaultValues`.
132371
134275
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-stringdefaultvalues.html}
@@ -132788,6 +134692,11 @@ export type QuickSightDashboardTableVisual = {
132788
134692
  ConditionalFormatting?: QuickSightDashboardTableConditionalFormatting;
132789
134693
  Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
132790
134694
  Title?: QuickSightDashboardVisualTitleLabelOptions;
134695
+ /**
134696
+ * @minLength `1`
134697
+ * @maxLength `1024`
134698
+ */
134699
+ VisualContentAltText?: string;
132791
134700
  /**
132792
134701
  * @minLength `1`
132793
134702
  * @maxLength `512`
@@ -133198,6 +135107,11 @@ export type QuickSightDashboardTreeMapVisual = {
133198
135107
  ColumnHierarchies?: QuickSightDashboardColumnHierarchy[];
133199
135108
  Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
133200
135109
  Title?: QuickSightDashboardVisualTitleLabelOptions;
135110
+ /**
135111
+ * @minLength `1`
135112
+ * @maxLength `1024`
135113
+ */
135114
+ VisualContentAltText?: string;
133201
135115
  /**
133202
135116
  * @minLength `1`
133203
135117
  * @maxLength `512`
@@ -133297,9 +135211,11 @@ export type QuickSightDashboardVisual = {
133297
135211
  HistogramVisual?: QuickSightDashboardHistogramVisual;
133298
135212
  InsightVisual?: QuickSightDashboardInsightVisual;
133299
135213
  KPIVisual?: QuickSightDashboardKPIVisual;
135214
+ LayerMapVisual?: QuickSightDashboardLayerMapVisual;
133300
135215
  LineChartVisual?: QuickSightDashboardLineChartVisual;
133301
135216
  PieChartVisual?: QuickSightDashboardPieChartVisual;
133302
135217
  PivotTableVisual?: QuickSightDashboardPivotTableVisual;
135218
+ PluginVisual?: QuickSightDashboardPluginVisual;
133303
135219
  RadarChartVisual?: QuickSightDashboardRadarChartVisual;
133304
135220
  SankeyDiagramVisual?: QuickSightDashboardSankeyDiagramVisual;
133305
135221
  ScatterPlotVisual?: QuickSightDashboardScatterPlotVisual;
@@ -133499,6 +135415,11 @@ export type QuickSightDashboardWaterfallVisual = {
133499
135415
  ColumnHierarchies?: QuickSightDashboardColumnHierarchy[];
133500
135416
  Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
133501
135417
  Title?: QuickSightDashboardVisualTitleLabelOptions;
135418
+ /**
135419
+ * @minLength `1`
135420
+ * @maxLength `1024`
135421
+ */
135422
+ VisualContentAltText?: string;
133502
135423
  /**
133503
135424
  * @minLength `1`
133504
135425
  * @maxLength `512`
@@ -133612,6 +135533,11 @@ export type QuickSightDashboardWordCloudVisual = {
133612
135533
  ColumnHierarchies?: QuickSightDashboardColumnHierarchy[];
133613
135534
  Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
133614
135535
  Title?: QuickSightDashboardVisualTitleLabelOptions;
135536
+ /**
135537
+ * @minLength `1`
135538
+ * @maxLength `1024`
135539
+ */
135540
+ VisualContentAltText?: string;
133615
135541
  /**
133616
135542
  * @minLength `1`
133617
135543
  * @maxLength `512`
@@ -136163,6 +138089,154 @@ export type QuickSightTemplateAttributes = {
136163
138089
  * @maxLength `20`
136164
138090
  */
136165
138091
  Sheets: {
138092
+ /**
138093
+ * @minLength `0`
138094
+ * @maxLength `10`
138095
+ */
138096
+ Images: {
138097
+ /**
138098
+ * @minLength `0`
138099
+ * @maxLength `10`
138100
+ */
138101
+ Actions: {
138102
+ /**
138103
+ * @minLength `1`
138104
+ * @maxLength `2`
138105
+ */
138106
+ ActionOperations: {
138107
+ NavigationOperation: {
138108
+ LocalNavigationConfiguration: {
138109
+ /**
138110
+ * @minLength `1`
138111
+ * @maxLength `512`
138112
+ * @pattern `^[\w\-]+$`
138113
+ */
138114
+ TargetSheetId: string;
138115
+ };
138116
+ };
138117
+ SetParametersOperation: {
138118
+ /**
138119
+ * @minLength `1`
138120
+ * @maxLength `200`
138121
+ */
138122
+ ParameterValueConfigurations: {
138123
+ /**
138124
+ * @minLength `1`
138125
+ * @maxLength `2048`
138126
+ * @pattern `^[a-zA-Z0-9]+$`
138127
+ */
138128
+ DestinationParameterName: string;
138129
+ Value: {
138130
+ CustomValuesConfiguration: {
138131
+ CustomValues: {
138132
+ /**
138133
+ * @minLength `0`
138134
+ * @maxLength `50000`
138135
+ */
138136
+ DateTimeValues: string[];
138137
+ /**
138138
+ * @minLength `0`
138139
+ * @maxLength `50000`
138140
+ */
138141
+ DecimalValues: number[];
138142
+ /**
138143
+ * @minLength `0`
138144
+ * @maxLength `50000`
138145
+ */
138146
+ IntegerValues: number[];
138147
+ /**
138148
+ * @minLength `0`
138149
+ * @maxLength `50000`
138150
+ */
138151
+ StringValues: string[];
138152
+ };
138153
+ IncludeNullValue: boolean;
138154
+ };
138155
+ SelectAllValueOptions: QuickSightTemplateSelectAllValueOptions;
138156
+ SourceColumn: {
138157
+ /**
138158
+ * @minLength `1`
138159
+ * @maxLength `127`
138160
+ */
138161
+ ColumnName: string;
138162
+ /**
138163
+ * @minLength `1`
138164
+ * @maxLength `2048`
138165
+ */
138166
+ DataSetIdentifier: string;
138167
+ };
138168
+ /**
138169
+ * @minLength `1`
138170
+ * @maxLength `512`
138171
+ */
138172
+ SourceField: string;
138173
+ SourceParameterName: string;
138174
+ };
138175
+ }[];
138176
+ };
138177
+ URLOperation: {
138178
+ URLTarget: QuickSightTemplateURLTargetConfiguration;
138179
+ /**
138180
+ * @minLength `1`
138181
+ * @maxLength `2048`
138182
+ */
138183
+ URLTemplate: string;
138184
+ };
138185
+ }[];
138186
+ /**
138187
+ * @minLength `1`
138188
+ * @maxLength `512`
138189
+ * @pattern `^[\w\-]+$`
138190
+ */
138191
+ CustomActionId: string;
138192
+ /**
138193
+ * @minLength `1`
138194
+ * @maxLength `256`
138195
+ */
138196
+ Name: string;
138197
+ Status: QuickSightTemplateWidgetStatus;
138198
+ Trigger: QuickSightTemplateImageCustomActionTrigger;
138199
+ }[];
138200
+ /**
138201
+ * @minLength `1`
138202
+ * @maxLength `1024`
138203
+ */
138204
+ ImageContentAltText: string;
138205
+ Interactions: {
138206
+ ImageMenuOption: {
138207
+ AvailabilityStatus: unknown;
138208
+ };
138209
+ };
138210
+ Scaling: {
138211
+ ScalingType: QuickSightTemplateSheetImageScalingType;
138212
+ };
138213
+ /**
138214
+ * @minLength `1`
138215
+ * @maxLength `512`
138216
+ * @pattern `^[\w\-]+$`
138217
+ */
138218
+ SheetImageId: string;
138219
+ Source: {
138220
+ SheetImageStaticFileSource: {
138221
+ /**
138222
+ * @minLength `1`
138223
+ * @maxLength `512`
138224
+ * @pattern `^[\w\-]+$`
138225
+ */
138226
+ StaticFileId: string;
138227
+ };
138228
+ };
138229
+ Tooltip: {
138230
+ TooltipText: {
138231
+ /**
138232
+ * @minLength `1`
138233
+ * @maxLength `1024`
138234
+ */
138235
+ PlainText: string;
138236
+ };
138237
+ Visibility: QuickSightTemplateVisibility;
138238
+ };
138239
+ }[];
136166
138240
  /**
136167
138241
  * <p>The name of a sheet. This name is displayed on the sheet's tab in the Amazon QuickSight
136168
138242
  console.</p>
@@ -136512,6 +138586,11 @@ export type QuickSightTemplateBarChartVisual = {
136512
138586
  ColumnHierarchies?: QuickSightTemplateColumnHierarchy[];
136513
138587
  Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
136514
138588
  Title?: QuickSightTemplateVisualTitleLabelOptions;
138589
+ /**
138590
+ * @minLength `1`
138591
+ * @maxLength `1024`
138592
+ */
138593
+ VisualContentAltText?: string;
136515
138594
  /**
136516
138595
  * @minLength `1`
136517
138596
  * @maxLength `512`
@@ -136671,6 +138750,11 @@ export type QuickSightTemplateBoxPlotVisual = {
136671
138750
  ColumnHierarchies?: QuickSightTemplateColumnHierarchy[];
136672
138751
  Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
136673
138752
  Title?: QuickSightTemplateVisualTitleLabelOptions;
138753
+ /**
138754
+ * @minLength `1`
138755
+ * @maxLength `1024`
138756
+ */
138757
+ VisualContentAltText?: string;
136674
138758
  /**
136675
138759
  * @minLength `1`
136676
138760
  * @maxLength `512`
@@ -137085,6 +139169,11 @@ export type QuickSightTemplateComboChartVisual = {
137085
139169
  ColumnHierarchies?: QuickSightTemplateColumnHierarchy[];
137086
139170
  Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
137087
139171
  Title?: QuickSightTemplateVisualTitleLabelOptions;
139172
+ /**
139173
+ * @minLength `1`
139174
+ * @maxLength `1024`
139175
+ */
139176
+ VisualContentAltText?: string;
137088
139177
  /**
137089
139178
  * @minLength `1`
137090
139179
  * @maxLength `512`
@@ -137375,6 +139464,11 @@ export type QuickSightTemplateCustomContentVisual = {
137375
139464
  DataSetIdentifier: string;
137376
139465
  Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
137377
139466
  Title?: QuickSightTemplateVisualTitleLabelOptions;
139467
+ /**
139468
+ * @minLength `1`
139469
+ * @maxLength `1024`
139470
+ */
139471
+ VisualContentAltText?: string;
137378
139472
  /**
137379
139473
  * @minLength `1`
137380
139474
  * @maxLength `512`
@@ -138284,6 +140378,11 @@ export type QuickSightTemplateFilledMapVisual = {
138284
140378
  ConditionalFormatting?: QuickSightTemplateFilledMapConditionalFormatting;
138285
140379
  Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
138286
140380
  Title?: QuickSightTemplateVisualTitleLabelOptions;
140381
+ /**
140382
+ * @minLength `1`
140383
+ * @maxLength `1024`
140384
+ */
140385
+ VisualContentAltText?: string;
138287
140386
  /**
138288
140387
  * @minLength `1`
138289
140388
  * @maxLength `512`
@@ -138912,6 +141011,11 @@ export type QuickSightTemplateFunnelChartVisual = {
138912
141011
  ColumnHierarchies?: QuickSightTemplateColumnHierarchy[];
138913
141012
  Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
138914
141013
  Title?: QuickSightTemplateVisualTitleLabelOptions;
141014
+ /**
141015
+ * @minLength `1`
141016
+ * @maxLength `1024`
141017
+ */
141018
+ VisualContentAltText?: string;
138915
141019
  /**
138916
141020
  * @minLength `1`
138917
141021
  * @maxLength `512`
@@ -139005,6 +141109,11 @@ export type QuickSightTemplateGaugeChartVisual = {
139005
141109
  ConditionalFormatting?: QuickSightTemplateGaugeChartConditionalFormatting;
139006
141110
  Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
139007
141111
  Title?: QuickSightTemplateVisualTitleLabelOptions;
141112
+ /**
141113
+ * @minLength `1`
141114
+ * @maxLength `1024`
141115
+ */
141116
+ VisualContentAltText?: string;
139008
141117
  /**
139009
141118
  * @minLength `1`
139010
141119
  * @maxLength `512`
@@ -139132,6 +141241,11 @@ export type QuickSightTemplateGeospatialMapVisual = {
139132
141241
  ColumnHierarchies?: QuickSightTemplateColumnHierarchy[];
139133
141242
  Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
139134
141243
  Title?: QuickSightTemplateVisualTitleLabelOptions;
141244
+ /**
141245
+ * @minLength `1`
141246
+ * @maxLength `1024`
141247
+ */
141248
+ VisualContentAltText?: string;
139135
141249
  /**
139136
141250
  * @minLength `1`
139137
141251
  * @maxLength `512`
@@ -139367,6 +141481,11 @@ export type QuickSightTemplateHeatMapVisual = {
139367
141481
  ColumnHierarchies?: QuickSightTemplateColumnHierarchy[];
139368
141482
  Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
139369
141483
  Title?: QuickSightTemplateVisualTitleLabelOptions;
141484
+ /**
141485
+ * @minLength `1`
141486
+ * @maxLength `1024`
141487
+ */
141488
+ VisualContentAltText?: string;
139370
141489
  /**
139371
141490
  * @minLength `1`
139372
141491
  * @maxLength `512`
@@ -139434,6 +141553,11 @@ export type QuickSightTemplateHistogramVisual = {
139434
141553
  ChartConfiguration?: QuickSightTemplateHistogramConfiguration;
139435
141554
  Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
139436
141555
  Title?: QuickSightTemplateVisualTitleLabelOptions;
141556
+ /**
141557
+ * @minLength `1`
141558
+ * @maxLength `1024`
141559
+ */
141560
+ VisualContentAltText?: string;
139437
141561
  /**
139438
141562
  * @minLength `1`
139439
141563
  * @maxLength `512`
@@ -139451,6 +141575,58 @@ export type QuickSightTemplateHorizontalTextAlignment = "LEFT" | "CENTER" | "RIG
139451
141575
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-icon.html}
139452
141576
  */
139453
141577
  export type QuickSightTemplateIcon = "CARET_UP" | "CARET_DOWN" | "PLUS" | "MINUS" | "ARROW_UP" | "ARROW_DOWN" | "ARROW_LEFT" | "ARROW_UP_LEFT" | "ARROW_DOWN_LEFT" | "ARROW_RIGHT" | "ARROW_UP_RIGHT" | "ARROW_DOWN_RIGHT" | "FACE_UP" | "FACE_DOWN" | "FACE_FLAT" | "ONE_BAR" | "TWO_BAR" | "THREE_BAR" | "CIRCLE" | "TRIANGLE" | "SQUARE" | "FLAG" | "THUMBS_UP" | "THUMBS_DOWN" | "CHECKMARK" | "X";
141578
+ /**
141579
+ * Type definition for `AWS::QuickSight::Template.ImageCustomAction`.
141580
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-imagecustomaction.html}
141581
+ */
141582
+ export type QuickSightTemplateImageCustomAction = {
141583
+ /**
141584
+ * @minLength `1`
141585
+ * @maxLength `2`
141586
+ */
141587
+ ActionOperations: QuickSightTemplateImageCustomActionOperation[];
141588
+ /**
141589
+ * @minLength `1`
141590
+ * @maxLength `512`
141591
+ * @pattern `^[\w\-]+$`
141592
+ */
141593
+ CustomActionId: string;
141594
+ /**
141595
+ * @minLength `1`
141596
+ * @maxLength `256`
141597
+ */
141598
+ Name: string;
141599
+ Status?: QuickSightTemplateWidgetStatus;
141600
+ Trigger: QuickSightTemplateImageCustomActionTrigger;
141601
+ };
141602
+ /**
141603
+ * Type definition for `AWS::QuickSight::Template.ImageCustomActionOperation`.
141604
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-imagecustomactionoperation.html}
141605
+ */
141606
+ export type QuickSightTemplateImageCustomActionOperation = {
141607
+ NavigationOperation?: QuickSightTemplateCustomActionNavigationOperation;
141608
+ SetParametersOperation?: QuickSightTemplateCustomActionSetParametersOperation;
141609
+ URLOperation?: QuickSightTemplateCustomActionURLOperation;
141610
+ };
141611
+ /**
141612
+ * Type definition for `AWS::QuickSight::Template.ImageCustomActionTrigger`.
141613
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-imagecustomactiontrigger.html}
141614
+ */
141615
+ export type QuickSightTemplateImageCustomActionTrigger = "CLICK" | "MENU";
141616
+ /**
141617
+ * Type definition for `AWS::QuickSight::Template.ImageInteractionOptions`.
141618
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-imageinteractionoptions.html}
141619
+ */
141620
+ export type QuickSightTemplateImageInteractionOptions = {
141621
+ ImageMenuOption?: QuickSightTemplateImageMenuOption;
141622
+ };
141623
+ /**
141624
+ * Type definition for `AWS::QuickSight::Template.ImageMenuOption`.
141625
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-imagemenuoption.html}
141626
+ */
141627
+ export type QuickSightTemplateImageMenuOption = {
141628
+ AvailabilityStatus?: unknown;
141629
+ };
139454
141630
  /**
139455
141631
  * Type definition for `AWS::QuickSight::Template.InnerFilter`.
139456
141632
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-innerfilter.html}
@@ -139488,6 +141664,11 @@ export type QuickSightTemplateInsightVisual = {
139488
141664
  InsightConfiguration?: QuickSightTemplateInsightConfiguration;
139489
141665
  Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
139490
141666
  Title?: QuickSightTemplateVisualTitleLabelOptions;
141667
+ /**
141668
+ * @minLength `1`
141669
+ * @maxLength `1024`
141670
+ */
141671
+ VisualContentAltText?: string;
139491
141672
  /**
139492
141673
  * @minLength `1`
139493
141674
  * @maxLength `512`
@@ -139688,6 +141869,11 @@ export type QuickSightTemplateKPIVisual = {
139688
141869
  ConditionalFormatting?: QuickSightTemplateKPIConditionalFormatting;
139689
141870
  Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
139690
141871
  Title?: QuickSightTemplateVisualTitleLabelOptions;
141872
+ /**
141873
+ * @minLength `1`
141874
+ * @maxLength `1024`
141875
+ */
141876
+ VisualContentAltText?: string;
139691
141877
  /**
139692
141878
  * @minLength `1`
139693
141879
  * @maxLength `512`
@@ -139755,6 +141941,7 @@ export type QuickSightTemplateLegendOptions = {
139755
141941
  Height?: string;
139756
141942
  Position?: QuickSightTemplateLegendPosition;
139757
141943
  Title?: QuickSightTemplateLabelOptions;
141944
+ ValueFontConfiguration?: QuickSightTemplateFontConfiguration;
139758
141945
  Visibility?: QuickSightTemplateVisibility;
139759
141946
  /**
139760
141947
  * String based length that is composed of value and unit in px
@@ -139939,6 +142126,11 @@ export type QuickSightTemplateLineChartVisual = {
139939
142126
  ColumnHierarchies?: QuickSightTemplateColumnHierarchy[];
139940
142127
  Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
139941
142128
  Title?: QuickSightTemplateVisualTitleLabelOptions;
142129
+ /**
142130
+ * @minLength `1`
142131
+ * @maxLength `1024`
142132
+ */
142133
+ VisualContentAltText?: string;
139942
142134
  /**
139943
142135
  * @minLength `1`
139944
142136
  * @maxLength `512`
@@ -140763,6 +142955,11 @@ export type QuickSightTemplatePieChartVisual = {
140763
142955
  ColumnHierarchies?: QuickSightTemplateColumnHierarchy[];
140764
142956
  Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
140765
142957
  Title?: QuickSightTemplateVisualTitleLabelOptions;
142958
+ /**
142959
+ * @minLength `1`
142960
+ * @maxLength `1024`
142961
+ */
142962
+ VisualContentAltText?: string;
140766
142963
  /**
140767
142964
  * @minLength `1`
140768
142965
  * @maxLength `512`
@@ -141061,6 +143258,11 @@ export type QuickSightTemplatePivotTableVisual = {
141061
143258
  ConditionalFormatting?: QuickSightTemplatePivotTableConditionalFormatting;
141062
143259
  Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
141063
143260
  Title?: QuickSightTemplateVisualTitleLabelOptions;
143261
+ /**
143262
+ * @minLength `1`
143263
+ * @maxLength `1024`
143264
+ */
143265
+ VisualContentAltText?: string;
141064
143266
  /**
141065
143267
  * @minLength `1`
141066
143268
  * @maxLength `512`
@@ -141086,6 +143288,108 @@ export type QuickSightTemplatePivotTotalOptions = {
141086
143288
  TotalsVisibility?: QuickSightTemplateVisibility;
141087
143289
  ValueCellStyle?: QuickSightTemplateTableCellStyle;
141088
143290
  };
143291
+ /**
143292
+ * Type definition for `AWS::QuickSight::Template.PluginVisual`.
143293
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-pluginvisual.html}
143294
+ */
143295
+ export type QuickSightTemplatePluginVisual = {
143296
+ ChartConfiguration?: QuickSightTemplatePluginVisualConfiguration;
143297
+ PluginArn: string;
143298
+ Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
143299
+ Title?: QuickSightTemplateVisualTitleLabelOptions;
143300
+ /**
143301
+ * @minLength `1`
143302
+ * @maxLength `1024`
143303
+ */
143304
+ VisualContentAltText?: string;
143305
+ /**
143306
+ * @minLength `1`
143307
+ * @maxLength `512`
143308
+ * @pattern `^[\w\-]+$`
143309
+ */
143310
+ VisualId: string;
143311
+ };
143312
+ /**
143313
+ * Type definition for `AWS::QuickSight::Template.PluginVisualAxisName`.
143314
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-pluginvisualaxisname.html}
143315
+ */
143316
+ export type QuickSightTemplatePluginVisualAxisName = "GROUP_BY" | "VALUE";
143317
+ /**
143318
+ * Type definition for `AWS::QuickSight::Template.PluginVisualConfiguration`.
143319
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-pluginvisualconfiguration.html}
143320
+ */
143321
+ export type QuickSightTemplatePluginVisualConfiguration = {
143322
+ /**
143323
+ * @minLength `0`
143324
+ * @maxLength `10`
143325
+ */
143326
+ FieldWells?: QuickSightTemplatePluginVisualFieldWell[];
143327
+ SortConfiguration?: QuickSightTemplatePluginVisualSortConfiguration;
143328
+ VisualOptions?: QuickSightTemplatePluginVisualOptions;
143329
+ };
143330
+ /**
143331
+ * Type definition for `AWS::QuickSight::Template.PluginVisualFieldWell`.
143332
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-pluginvisualfieldwell.html}
143333
+ */
143334
+ export type QuickSightTemplatePluginVisualFieldWell = {
143335
+ AxisName?: QuickSightTemplatePluginVisualAxisName;
143336
+ /**
143337
+ * @minLength `0`
143338
+ * @maxLength `200`
143339
+ */
143340
+ Dimensions?: QuickSightTemplateDimensionField[];
143341
+ /**
143342
+ * @minLength `0`
143343
+ * @maxLength `200`
143344
+ */
143345
+ Measures?: QuickSightTemplateMeasureField[];
143346
+ /**
143347
+ * @minLength `0`
143348
+ * @maxLength `200`
143349
+ */
143350
+ Unaggregated?: QuickSightTemplateUnaggregatedField[];
143351
+ };
143352
+ /**
143353
+ * Type definition for `AWS::QuickSight::Template.PluginVisualItemsLimitConfiguration`.
143354
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-pluginvisualitemslimitconfiguration.html}
143355
+ */
143356
+ export type QuickSightTemplatePluginVisualItemsLimitConfiguration = {
143357
+ ItemsLimit?: number;
143358
+ };
143359
+ /**
143360
+ * Type definition for `AWS::QuickSight::Template.PluginVisualOptions`.
143361
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-pluginvisualoptions.html}
143362
+ */
143363
+ export type QuickSightTemplatePluginVisualOptions = {
143364
+ VisualProperties?: QuickSightTemplatePluginVisualProperty[];
143365
+ };
143366
+ /**
143367
+ * Type definition for `AWS::QuickSight::Template.PluginVisualProperty`.
143368
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-pluginvisualproperty.html}
143369
+ */
143370
+ export type QuickSightTemplatePluginVisualProperty = {
143371
+ Name?: string;
143372
+ Value?: string;
143373
+ };
143374
+ /**
143375
+ * Type definition for `AWS::QuickSight::Template.PluginVisualSortConfiguration`.
143376
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-pluginvisualsortconfiguration.html}
143377
+ */
143378
+ export type QuickSightTemplatePluginVisualSortConfiguration = {
143379
+ PluginVisualTableQuerySort?: QuickSightTemplatePluginVisualTableQuerySort;
143380
+ };
143381
+ /**
143382
+ * Type definition for `AWS::QuickSight::Template.PluginVisualTableQuerySort`.
143383
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-pluginvisualtablequerysort.html}
143384
+ */
143385
+ export type QuickSightTemplatePluginVisualTableQuerySort = {
143386
+ ItemsLimitConfiguration?: QuickSightTemplatePluginVisualItemsLimitConfiguration;
143387
+ /**
143388
+ * @minLength `0`
143389
+ * @maxLength `100`
143390
+ */
143391
+ RowSort?: QuickSightTemplateFieldSortOptions[];
143392
+ };
141089
143393
  /**
141090
143394
  * Type definition for `AWS::QuickSight::Template.PredefinedHierarchy`.
141091
143395
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-predefinedhierarchy.html}
@@ -141250,6 +143554,11 @@ export type QuickSightTemplateRadarChartVisual = {
141250
143554
  ColumnHierarchies?: QuickSightTemplateColumnHierarchy[];
141251
143555
  Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
141252
143556
  Title?: QuickSightTemplateVisualTitleLabelOptions;
143557
+ /**
143558
+ * @minLength `1`
143559
+ * @maxLength `1024`
143560
+ */
143561
+ VisualContentAltText?: string;
141253
143562
  /**
141254
143563
  * @minLength `1`
141255
143564
  * @maxLength `512`
@@ -141566,6 +143875,11 @@ export type QuickSightTemplateSankeyDiagramVisual = {
141566
143875
  ChartConfiguration?: QuickSightTemplateSankeyDiagramChartConfiguration;
141567
143876
  Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
141568
143877
  Title?: QuickSightTemplateVisualTitleLabelOptions;
143878
+ /**
143879
+ * @minLength `1`
143880
+ * @maxLength `1024`
143881
+ */
143882
+ VisualContentAltText?: string;
141569
143883
  /**
141570
143884
  * @minLength `1`
141571
143885
  * @maxLength `512`
@@ -141676,6 +143990,11 @@ export type QuickSightTemplateScatterPlotVisual = {
141676
143990
  ColumnHierarchies?: QuickSightTemplateColumnHierarchy[];
141677
143991
  Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
141678
143992
  Title?: QuickSightTemplateVisualTitleLabelOptions;
143993
+ /**
143994
+ * @minLength `1`
143995
+ * @maxLength `1024`
143996
+ */
143997
+ VisualContentAltText?: string;
141679
143998
  /**
141680
143999
  * @minLength `1`
141681
144000
  * @maxLength `512`
@@ -141837,6 +144156,11 @@ export type QuickSightTemplateShapeConditionalFormat = {
141837
144156
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-sheet.html}
141838
144157
  */
141839
144158
  export type QuickSightTemplateSheet = {
144159
+ /**
144160
+ * @minLength `0`
144161
+ * @maxLength `10`
144162
+ */
144163
+ Images?: QuickSightTemplateSheetImage[];
141840
144164
  /**
141841
144165
  * <p>The name of a sheet. This name is displayed on the sheet's tab in the Amazon QuickSight
141842
144166
  console.</p>
@@ -141914,6 +144238,11 @@ export type QuickSightTemplateSheetDefinition = {
141914
144238
  * @maxLength `200`
141915
144239
  */
141916
144240
  FilterControls?: QuickSightTemplateFilterControl[];
144241
+ /**
144242
+ * @minLength `0`
144243
+ * @maxLength `10`
144244
+ */
144245
+ Images?: QuickSightTemplateSheetImage[];
141917
144246
  /**
141918
144247
  * @minLength `1`
141919
144248
  * @maxLength `1`
@@ -141975,6 +144304,82 @@ export type QuickSightTemplateSheetElementRenderingRule = {
141975
144304
  */
141976
144305
  Expression: string;
141977
144306
  };
144307
+ /**
144308
+ * Type definition for `AWS::QuickSight::Template.SheetImage`.
144309
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-sheetimage.html}
144310
+ */
144311
+ export type QuickSightTemplateSheetImage = {
144312
+ /**
144313
+ * @minLength `0`
144314
+ * @maxLength `10`
144315
+ */
144316
+ Actions?: QuickSightTemplateImageCustomAction[];
144317
+ /**
144318
+ * @minLength `1`
144319
+ * @maxLength `1024`
144320
+ */
144321
+ ImageContentAltText?: string;
144322
+ Interactions?: QuickSightTemplateImageInteractionOptions;
144323
+ Scaling?: QuickSightTemplateSheetImageScalingConfiguration;
144324
+ /**
144325
+ * @minLength `1`
144326
+ * @maxLength `512`
144327
+ * @pattern `^[\w\-]+$`
144328
+ */
144329
+ SheetImageId: string;
144330
+ Source: QuickSightTemplateSheetImageSource;
144331
+ Tooltip?: QuickSightTemplateSheetImageTooltipConfiguration;
144332
+ };
144333
+ /**
144334
+ * Type definition for `AWS::QuickSight::Template.SheetImageScalingConfiguration`.
144335
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-sheetimagescalingconfiguration.html}
144336
+ */
144337
+ export type QuickSightTemplateSheetImageScalingConfiguration = {
144338
+ ScalingType?: QuickSightTemplateSheetImageScalingType;
144339
+ };
144340
+ /**
144341
+ * Type definition for `AWS::QuickSight::Template.SheetImageScalingType`.
144342
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-sheetimagescalingtype.html}
144343
+ */
144344
+ export type QuickSightTemplateSheetImageScalingType = "SCALE_TO_WIDTH" | "SCALE_TO_HEIGHT" | "SCALE_TO_CONTAINER" | "SCALE_NONE";
144345
+ /**
144346
+ * Type definition for `AWS::QuickSight::Template.SheetImageSource`.
144347
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-sheetimagesource.html}
144348
+ */
144349
+ export type QuickSightTemplateSheetImageSource = {
144350
+ SheetImageStaticFileSource?: QuickSightTemplateSheetImageStaticFileSource;
144351
+ };
144352
+ /**
144353
+ * Type definition for `AWS::QuickSight::Template.SheetImageStaticFileSource`.
144354
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-sheetimagestaticfilesource.html}
144355
+ */
144356
+ export type QuickSightTemplateSheetImageStaticFileSource = {
144357
+ /**
144358
+ * @minLength `1`
144359
+ * @maxLength `512`
144360
+ * @pattern `^[\w\-]+$`
144361
+ */
144362
+ StaticFileId: string;
144363
+ };
144364
+ /**
144365
+ * Type definition for `AWS::QuickSight::Template.SheetImageTooltipConfiguration`.
144366
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-sheetimagetooltipconfiguration.html}
144367
+ */
144368
+ export type QuickSightTemplateSheetImageTooltipConfiguration = {
144369
+ TooltipText?: QuickSightTemplateSheetImageTooltipText;
144370
+ Visibility?: QuickSightTemplateVisibility;
144371
+ };
144372
+ /**
144373
+ * Type definition for `AWS::QuickSight::Template.SheetImageTooltipText`.
144374
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-sheetimagetooltiptext.html}
144375
+ */
144376
+ export type QuickSightTemplateSheetImageTooltipText = {
144377
+ /**
144378
+ * @minLength `1`
144379
+ * @maxLength `1024`
144380
+ */
144381
+ PlainText?: string;
144382
+ };
141978
144383
  /**
141979
144384
  * Type definition for `AWS::QuickSight::Template.SheetTextBox`.
141980
144385
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-sheettextbox.html}
@@ -142546,6 +144951,11 @@ export type QuickSightTemplateTableVisual = {
142546
144951
  ConditionalFormatting?: QuickSightTemplateTableConditionalFormatting;
142547
144952
  Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
142548
144953
  Title?: QuickSightTemplateVisualTitleLabelOptions;
144954
+ /**
144955
+ * @minLength `1`
144956
+ * @maxLength `1024`
144957
+ */
144958
+ VisualContentAltText?: string;
142549
144959
  /**
142550
144960
  * @minLength `1`
142551
144961
  * @maxLength `512`
@@ -143113,6 +145523,11 @@ export type QuickSightTemplateTreeMapVisual = {
143113
145523
  ColumnHierarchies?: QuickSightTemplateColumnHierarchy[];
143114
145524
  Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
143115
145525
  Title?: QuickSightTemplateVisualTitleLabelOptions;
145526
+ /**
145527
+ * @minLength `1`
145528
+ * @maxLength `1024`
145529
+ */
145530
+ VisualContentAltText?: string;
143116
145531
  /**
143117
145532
  * @minLength `1`
143118
145533
  * @maxLength `512`
@@ -143215,6 +145630,7 @@ export type QuickSightTemplateVisual = {
143215
145630
  LineChartVisual?: QuickSightTemplateLineChartVisual;
143216
145631
  PieChartVisual?: QuickSightTemplatePieChartVisual;
143217
145632
  PivotTableVisual?: QuickSightTemplatePivotTableVisual;
145633
+ PluginVisual?: QuickSightTemplatePluginVisual;
143218
145634
  RadarChartVisual?: QuickSightTemplateRadarChartVisual;
143219
145635
  SankeyDiagramVisual?: QuickSightTemplateSankeyDiagramVisual;
143220
145636
  ScatterPlotVisual?: QuickSightTemplateScatterPlotVisual;
@@ -143400,6 +145816,11 @@ export type QuickSightTemplateWaterfallVisual = {
143400
145816
  ColumnHierarchies?: QuickSightTemplateColumnHierarchy[];
143401
145817
  Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
143402
145818
  Title?: QuickSightTemplateVisualTitleLabelOptions;
145819
+ /**
145820
+ * @minLength `1`
145821
+ * @maxLength `1024`
145822
+ */
145823
+ VisualContentAltText?: string;
143403
145824
  /**
143404
145825
  * @minLength `1`
143405
145826
  * @maxLength `512`
@@ -143513,6 +145934,11 @@ export type QuickSightTemplateWordCloudVisual = {
143513
145934
  ColumnHierarchies?: QuickSightTemplateColumnHierarchy[];
143514
145935
  Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
143515
145936
  Title?: QuickSightTemplateVisualTitleLabelOptions;
145937
+ /**
145938
+ * @minLength `1`
145939
+ * @maxLength `1024`
145940
+ */
145941
+ VisualContentAltText?: string;
143516
145942
  /**
143517
145943
  * @minLength `1`
143518
145944
  * @maxLength `512`
@@ -179750,6 +182176,7 @@ export type WisdomKnowledgeBaseProps = {
179750
182176
  ServerSideEncryptionConfiguration?: WisdomKnowledgeBaseServerSideEncryptionConfiguration;
179751
182177
  SourceConfiguration?: WisdomKnowledgeBaseSourceConfiguration;
179752
182178
  Tags?: WisdomKnowledgeBaseTag[];
182179
+ VectorIngestionConfiguration?: WisdomKnowledgeBaseVectorIngestionConfiguration;
179753
182180
  };
179754
182181
  /**
179755
182182
  * Attribute type definition for `AWS::Wisdom::KnowledgeBase`.
@@ -179782,11 +182209,78 @@ export type WisdomKnowledgeBaseAppIntegrationsConfiguration = {
179782
182209
  */
179783
182210
  ObjectFields?: string[];
179784
182211
  };
182212
+ /**
182213
+ * Type definition for `AWS::Wisdom::KnowledgeBase.BedrockFoundationModelConfiguration`.
182214
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-bedrockfoundationmodelconfiguration.html}
182215
+ */
182216
+ export type WisdomKnowledgeBaseBedrockFoundationModelConfiguration = {
182217
+ /**
182218
+ * @minLength `1`
182219
+ * @maxLength `2048`
182220
+ * @pattern `^arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}::foundation-model\/anthropic.claude-3-haiku-20240307-v1:0$`
182221
+ */
182222
+ ModelArn: string;
182223
+ ParsingPrompt?: {
182224
+ /**
182225
+ * @minLength `1`
182226
+ * @maxLength `10000`
182227
+ */
182228
+ ParsingPromptText: string;
182229
+ };
182230
+ };
182231
+ /**
182232
+ * Type definition for `AWS::Wisdom::KnowledgeBase.FixedSizeChunkingConfiguration`.
182233
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-fixedsizechunkingconfiguration.html}
182234
+ */
182235
+ export type WisdomKnowledgeBaseFixedSizeChunkingConfiguration = {
182236
+ /**
182237
+ * @min `1`
182238
+ */
182239
+ MaxTokens: number;
182240
+ /**
182241
+ * @min `1`
182242
+ * @max `99`
182243
+ */
182244
+ OverlapPercentage: number;
182245
+ };
182246
+ /**
182247
+ * Type definition for `AWS::Wisdom::KnowledgeBase.HierarchicalChunkingConfiguration`.
182248
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-hierarchicalchunkingconfiguration.html}
182249
+ */
182250
+ export type WisdomKnowledgeBaseHierarchicalChunkingConfiguration = {
182251
+ /**
182252
+ * @minLength `2`
182253
+ * @maxLength `2`
182254
+ */
182255
+ LevelConfigurations: WisdomKnowledgeBaseHierarchicalChunkingLevelConfiguration[];
182256
+ /**
182257
+ * @min `1`
182258
+ */
182259
+ OverlapTokens: number;
182260
+ };
182261
+ /**
182262
+ * Type definition for `AWS::Wisdom::KnowledgeBase.HierarchicalChunkingLevelConfiguration`.
182263
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-hierarchicalchunkinglevelconfiguration.html}
182264
+ */
182265
+ export type WisdomKnowledgeBaseHierarchicalChunkingLevelConfiguration = {
182266
+ /**
182267
+ * @min `1`
182268
+ * @max `8192`
182269
+ */
182270
+ MaxTokens: number;
182271
+ };
179785
182272
  /**
179786
182273
  * Type definition for `AWS::Wisdom::KnowledgeBase.KnowledgeBaseType`.
179787
182274
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-knowledgebasetype.html}
179788
182275
  */
179789
- export type WisdomKnowledgeBaseKnowledgeBaseType = "EXTERNAL" | "CUSTOM" | "MESSAGE_TEMPLATES";
182276
+ export type WisdomKnowledgeBaseKnowledgeBaseType = "EXTERNAL" | "CUSTOM" | "MESSAGE_TEMPLATES" | "MANAGED";
182277
+ /**
182278
+ * Type definition for `AWS::Wisdom::KnowledgeBase.ManagedSourceConfiguration`.
182279
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-managedsourceconfiguration.html}
182280
+ */
182281
+ export type WisdomKnowledgeBaseManagedSourceConfiguration = {
182282
+ WebCrawlerConfiguration: WisdomKnowledgeBaseWebCrawlerConfiguration;
182283
+ };
179790
182284
  /**
179791
182285
  * Type definition for `AWS::Wisdom::KnowledgeBase.RenderingConfiguration`.
179792
182286
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-renderingconfiguration.html}
@@ -179798,6 +182292,36 @@ export type WisdomKnowledgeBaseRenderingConfiguration = {
179798
182292
  */
179799
182293
  TemplateUri?: string;
179800
182294
  };
182295
+ /**
182296
+ * Type definition for `AWS::Wisdom::KnowledgeBase.SeedUrl`.
182297
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-seedurl.html}
182298
+ */
182299
+ export type WisdomKnowledgeBaseSeedUrl = {
182300
+ /**
182301
+ * @pattern `^https?://[A-Za-z0-9][^\s]*$`
182302
+ */
182303
+ Url?: string;
182304
+ };
182305
+ /**
182306
+ * Type definition for `AWS::Wisdom::KnowledgeBase.SemanticChunkingConfiguration`.
182307
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-semanticchunkingconfiguration.html}
182308
+ */
182309
+ export type WisdomKnowledgeBaseSemanticChunkingConfiguration = {
182310
+ /**
182311
+ * @min `50`
182312
+ * @max `99`
182313
+ */
182314
+ BreakpointPercentileThreshold: number;
182315
+ /**
182316
+ * @min `0`
182317
+ * @max `1`
182318
+ */
182319
+ BufferSize: number;
182320
+ /**
182321
+ * @min `1`
182322
+ */
182323
+ MaxTokens: number;
182324
+ };
179801
182325
  /**
179802
182326
  * Type definition for `AWS::Wisdom::KnowledgeBase.ServerSideEncryptionConfiguration`.
179803
182327
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-serversideencryptionconfiguration.html}
@@ -179814,7 +182338,9 @@ export type WisdomKnowledgeBaseServerSideEncryptionConfiguration = {
179814
182338
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-sourceconfiguration.html}
179815
182339
  */
179816
182340
  export type WisdomKnowledgeBaseSourceConfiguration = {
179817
- AppIntegrations?: WisdomKnowledgeBaseAppIntegrationsConfiguration;
182341
+ AppIntegrations: WisdomKnowledgeBaseAppIntegrationsConfiguration;
182342
+ } | {
182343
+ ManagedSourceConfiguration: WisdomKnowledgeBaseManagedSourceConfiguration;
179818
182344
  };
179819
182345
  /**
179820
182346
  * Type definition for `AWS::Wisdom::KnowledgeBase.Tag`.
@@ -179833,6 +182359,53 @@ export type WisdomKnowledgeBaseTag = {
179833
182359
  */
179834
182360
  Value: string;
179835
182361
  };
182362
+ /**
182363
+ * Type definition for `AWS::Wisdom::KnowledgeBase.VectorIngestionConfiguration`.
182364
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-vectoringestionconfiguration.html}
182365
+ */
182366
+ export type WisdomKnowledgeBaseVectorIngestionConfiguration = {
182367
+ ChunkingConfiguration?: {
182368
+ ChunkingStrategy: "FIXED_SIZE" | "NONE" | "HIERARCHICAL" | "SEMANTIC";
182369
+ FixedSizeChunkingConfiguration?: WisdomKnowledgeBaseFixedSizeChunkingConfiguration;
182370
+ HierarchicalChunkingConfiguration?: WisdomKnowledgeBaseHierarchicalChunkingConfiguration;
182371
+ SemanticChunkingConfiguration?: WisdomKnowledgeBaseSemanticChunkingConfiguration;
182372
+ };
182373
+ ParsingConfiguration?: {
182374
+ BedrockFoundationModelConfiguration?: WisdomKnowledgeBaseBedrockFoundationModelConfiguration;
182375
+ ParsingStrategy: "BEDROCK_FOUNDATION_MODEL";
182376
+ };
182377
+ };
182378
+ /**
182379
+ * Type definition for `AWS::Wisdom::KnowledgeBase.WebCrawlerConfiguration`.
182380
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-webcrawlerconfiguration.html}
182381
+ */
182382
+ export type WisdomKnowledgeBaseWebCrawlerConfiguration = {
182383
+ CrawlerLimits?: {
182384
+ /**
182385
+ * @min `1`
182386
+ * @max `3000`
182387
+ */
182388
+ RateLimit?: number;
182389
+ };
182390
+ /**
182391
+ * @minLength `1`
182392
+ * @maxLength `25`
182393
+ */
182394
+ ExclusionFilters?: string[];
182395
+ /**
182396
+ * @minLength `1`
182397
+ * @maxLength `25`
182398
+ */
182399
+ InclusionFilters?: string[];
182400
+ Scope?: "HOST_ONLY" | "SUBDOMAINS";
182401
+ UrlConfiguration: {
182402
+ /**
182403
+ * @minLength `1`
182404
+ * @maxLength `100`
182405
+ */
182406
+ SeedUrls?: WisdomKnowledgeBaseSeedUrl[];
182407
+ };
182408
+ };
179836
182409
  /**
179837
182410
  * Definition of AWS::Wisdom::MessageTemplate Resource Type
179838
182411
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-messagetemplate.html}
@@ -182255,6 +184828,7 @@ export interface ResourceTypes {
182255
184828
  "AWS::Cognito::IdentityPoolPrincipalTag": CognitoIdentityPoolPrincipalTagProps;
182256
184829
  "AWS::Cognito::IdentityPoolRoleAttachment": CognitoIdentityPoolRoleAttachmentProps;
182257
184830
  "AWS::Cognito::LogDeliveryConfiguration": CognitoLogDeliveryConfigurationProps;
184831
+ "AWS::Cognito::ManagedLoginBranding": CognitoManagedLoginBrandingProps;
182258
184832
  "AWS::Cognito::UserPool": CognitoUserPoolProps;
182259
184833
  "AWS::Cognito::UserPoolClient": CognitoUserPoolClientProps;
182260
184834
  "AWS::Cognito::UserPoolDomain": CognitoUserPoolDomainProps;
@@ -183576,6 +186150,7 @@ export interface AttributeTypes {
183576
186150
  "AWS::Cognito::IdentityPool": CognitoIdentityPoolAttributes;
183577
186151
  "AWS::Cognito::IdentityPoolRoleAttachment": CognitoIdentityPoolRoleAttachmentAttributes;
183578
186152
  "AWS::Cognito::LogDeliveryConfiguration": CognitoLogDeliveryConfigurationAttributes;
186153
+ "AWS::Cognito::ManagedLoginBranding": CognitoManagedLoginBrandingAttributes;
183579
186154
  "AWS::Cognito::UserPool": CognitoUserPoolAttributes;
183580
186155
  "AWS::Cognito::UserPoolClient": CognitoUserPoolClientAttributes;
183581
186156
  "AWS::Cognito::UserPoolDomain": CognitoUserPoolDomainAttributes;
@@ -184803,6 +187378,7 @@ export declare const ResourceType: {
184803
187378
  readonly CognitoIdentityPoolPrincipalTag: "AWS::Cognito::IdentityPoolPrincipalTag";
184804
187379
  readonly CognitoIdentityPoolRoleAttachment: "AWS::Cognito::IdentityPoolRoleAttachment";
184805
187380
  readonly CognitoLogDeliveryConfiguration: "AWS::Cognito::LogDeliveryConfiguration";
187381
+ readonly CognitoManagedLoginBranding: "AWS::Cognito::ManagedLoginBranding";
184806
187382
  readonly CognitoUserPool: "AWS::Cognito::UserPool";
184807
187383
  readonly CognitoUserPoolClient: "AWS::Cognito::UserPoolClient";
184808
187384
  readonly CognitoUserPoolDomain: "AWS::Cognito::UserPoolDomain";