@awboost/cfntypes 0.100.54 → 0.100.56
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -31178,6 +31178,62 @@ export type CognitoLogDeliveryConfigurationLogConfiguration = {
|
|
31178
31178
|
export type CognitoLogDeliveryConfigurationS3Configuration = {
|
31179
31179
|
BucketArn?: string;
|
31180
31180
|
};
|
31181
|
+
/**
|
31182
|
+
* Resource Type definition for AWS::Cognito::ManagedLoginBranding
|
31183
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-managedloginbranding.html}
|
31184
|
+
*/
|
31185
|
+
export type CognitoManagedLoginBrandingProps = {
|
31186
|
+
Assets?: CognitoManagedLoginBrandingAssetType[];
|
31187
|
+
ClientId?: string;
|
31188
|
+
ReturnMergedResources?: boolean;
|
31189
|
+
Settings?: Record<string, any>;
|
31190
|
+
UseCognitoProvidedValues?: boolean;
|
31191
|
+
UserPoolId: string;
|
31192
|
+
};
|
31193
|
+
/**
|
31194
|
+
* Attribute type definition for `AWS::Cognito::ManagedLoginBranding`.
|
31195
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-managedloginbranding.html#aws-resource-cognito-managedloginbranding-return-values}
|
31196
|
+
*/
|
31197
|
+
export type CognitoManagedLoginBrandingAttributes = {
|
31198
|
+
/**
|
31199
|
+
* @pattern `^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[4][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$`
|
31200
|
+
*/
|
31201
|
+
ManagedLoginBrandingId: string;
|
31202
|
+
};
|
31203
|
+
/**
|
31204
|
+
* Type definition for `AWS::Cognito::ManagedLoginBranding.AssetType`.
|
31205
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-managedloginbranding-assettype.html}
|
31206
|
+
*/
|
31207
|
+
export type CognitoManagedLoginBrandingAssetType = {
|
31208
|
+
/**
|
31209
|
+
* @maxLength `1000000`
|
31210
|
+
*/
|
31211
|
+
Bytes?: string;
|
31212
|
+
Category: CognitoManagedLoginBrandingCategoryType;
|
31213
|
+
ColorMode: CognitoManagedLoginBrandingColorModeType;
|
31214
|
+
Extension: CognitoManagedLoginBrandingExtensionType;
|
31215
|
+
/**
|
31216
|
+
* @minLength `1`
|
31217
|
+
* @maxLength `40`
|
31218
|
+
* @pattern `^[\w\- ]+$`
|
31219
|
+
*/
|
31220
|
+
ResourceId?: string;
|
31221
|
+
};
|
31222
|
+
/**
|
31223
|
+
* Type definition for `AWS::Cognito::ManagedLoginBranding.CategoryType`.
|
31224
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-managedloginbranding-categorytype.html}
|
31225
|
+
*/
|
31226
|
+
export type CognitoManagedLoginBrandingCategoryType = "FAVICON_ICO" | "FAVICON_SVG" | "EMAIL_GRAPHIC" | "SMS_GRAPHIC" | "AUTH_APP_GRAPHIC" | "PASSWORD_GRAPHIC" | "PASSKEY_GRAPHIC" | "PAGE_HEADER_LOGO" | "PAGE_HEADER_BACKGROUND" | "PAGE_FOOTER_LOGO" | "PAGE_FOOTER_BACKGROUND" | "PAGE_BACKGROUND" | "FORM_BACKGROUND" | "FORM_LOGO" | "IDP_BUTTON_ICON";
|
31227
|
+
/**
|
31228
|
+
* Type definition for `AWS::Cognito::ManagedLoginBranding.ColorModeType`.
|
31229
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-managedloginbranding-colormodetype.html}
|
31230
|
+
*/
|
31231
|
+
export type CognitoManagedLoginBrandingColorModeType = "LIGHT" | "DARK" | "DYNAMIC";
|
31232
|
+
/**
|
31233
|
+
* Type definition for `AWS::Cognito::ManagedLoginBranding.ExtensionType`.
|
31234
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-managedloginbranding-extensiontype.html}
|
31235
|
+
*/
|
31236
|
+
export type CognitoManagedLoginBrandingExtensionType = "ICO" | "JPEG" | "PNG" | "SVG" | "WEBP";
|
31181
31237
|
/**
|
31182
31238
|
* Definition of AWS::Cognito::UserPool Resource Type
|
31183
31239
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html}
|
@@ -31234,9 +31290,20 @@ export type CognitoUserPoolProps = {
|
|
31234
31290
|
*/
|
31235
31291
|
UserPoolName?: string;
|
31236
31292
|
UserPoolTags?: Record<string, string>;
|
31293
|
+
UserPoolTier?: "LITE" | "ESSENTIALS" | "PLUS";
|
31237
31294
|
UsernameAttributes?: string[];
|
31238
31295
|
UsernameConfiguration?: CognitoUserPoolUsernameConfiguration;
|
31239
31296
|
VerificationMessageTemplate?: CognitoUserPoolVerificationMessageTemplate;
|
31297
|
+
/**
|
31298
|
+
* @minLength `1`
|
31299
|
+
* @maxLength `63`
|
31300
|
+
*/
|
31301
|
+
WebAuthnRelyingPartyID?: string;
|
31302
|
+
/**
|
31303
|
+
* @minLength `1`
|
31304
|
+
* @maxLength `9`
|
31305
|
+
*/
|
31306
|
+
WebAuthnUserVerification?: string;
|
31240
31307
|
};
|
31241
31308
|
/**
|
31242
31309
|
* Attribute type definition for `AWS::Cognito::UserPool`.
|
@@ -31362,6 +31429,7 @@ export type CognitoUserPoolPasswordPolicy = {
|
|
31362
31429
|
*/
|
31363
31430
|
export type CognitoUserPoolPolicies = {
|
31364
31431
|
PasswordPolicy?: CognitoUserPoolPasswordPolicy;
|
31432
|
+
SignInPolicy?: CognitoUserPoolSignInPolicy;
|
31365
31433
|
};
|
31366
31434
|
/**
|
31367
31435
|
* Type definition for `AWS::Cognito::UserPool.PreTokenGenerationConfig`.
|
@@ -31392,6 +31460,13 @@ export type CognitoUserPoolSchemaAttribute = {
|
|
31392
31460
|
Required?: boolean;
|
31393
31461
|
StringAttributeConstraints?: CognitoUserPoolStringAttributeConstraints;
|
31394
31462
|
};
|
31463
|
+
/**
|
31464
|
+
* Type definition for `AWS::Cognito::UserPool.SignInPolicy`.
|
31465
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-signinpolicy.html}
|
31466
|
+
*/
|
31467
|
+
export type CognitoUserPoolSignInPolicy = {
|
31468
|
+
AllowedFirstAuthFactors?: string[];
|
31469
|
+
};
|
31395
31470
|
/**
|
31396
31471
|
* Type definition for `AWS::Cognito::UserPool.SmsConfiguration`.
|
31397
31472
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-smsconfiguration.html}
|
@@ -60706,23 +60781,26 @@ export type ElasticLoadBalancingV2ListenerRuleTargetGroupTuple = {
|
|
60706
60781
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html}
|
60707
60782
|
*/
|
60708
60783
|
export type ElasticLoadBalancingV2LoadBalancerProps = {
|
60784
|
+
/**
|
60785
|
+
* [Network Load Balancers with UDP listeners] Indicates whether to use an IPv6 prefix from each subnet for source NAT. The IP address type must be ``dualstack``. The default value is ``off``.
|
60786
|
+
*/
|
60709
60787
|
EnablePrefixForIpv6SourceNat?: string;
|
60710
60788
|
/**
|
60711
60789
|
* Indicates whether to evaluate inbound security group rules for traffic sent to a Network Load Balancer through privatelink.
|
60712
60790
|
*/
|
60713
60791
|
EnforceSecurityGroupInboundRulesOnPrivateLinkTraffic?: string;
|
60714
60792
|
/**
|
60715
|
-
*
|
60716
|
-
[Application Load Balancers] The
|
60717
|
-
|
60718
|
-
[Network Load Balancers
|
60719
|
-
[Gateway Load Balancers] The IP address type. The possible values are ``ipv4`` (for only IPv4 addresses) and ``dualstack`` (for IPv4 and IPv6 addresses).
|
60793
|
+
* The IP address type. Internal load balancers must use ``ipv4``.
|
60794
|
+
[Application Load Balancers] The possible values are ``ipv4`` (IPv4 addresses), ``dualstack`` (IPv4 and IPv6 addresses), and ``dualstack-without-public-ipv4`` (public IPv6 addresses and private IPv4 and IPv6 addresses).
|
60795
|
+
Application Load Balancer authentication supports IPv4 addresses only when connecting to an Identity Provider (IdP) or Amazon Cognito endpoint. Without a public IPv4 address the load balancer can't complete the authentication process, resulting in HTTP 500 errors.
|
60796
|
+
[Network Load Balancers and Gateway Load Balancers] The possible values are ``ipv4`` (IPv4 addresses) and ``dualstack`` (IPv4 and IPv6 addresses).
|
60720
60797
|
*/
|
60721
60798
|
IpAddressType?: string;
|
60722
60799
|
/**
|
60723
60800
|
* The load balancer attributes.
|
60724
60801
|
*/
|
60725
60802
|
LoadBalancerAttributes?: ElasticLoadBalancingV2LoadBalancerLoadBalancerAttribute[];
|
60803
|
+
MinimumLoadBalancerCapacity?: ElasticLoadBalancingV2LoadBalancerMinimumLoadBalancerCapacity;
|
60726
60804
|
/**
|
60727
60805
|
* The name of the load balancer. This name must be unique per region per account, can have a maximum of 32 characters, must contain only alphanumeric characters or hyphens, must not begin or end with a hyphen, and must not begin with "internal-".
|
60728
60806
|
If you don't specify a name, AWS CloudFormation generates a unique physical ID for the load balancer. If you specify a name, you cannot perform updates that require replacement of this resource, but you can perform other updates. To replace the resource, specify a new name.
|
@@ -60732,7 +60810,7 @@ export type ElasticLoadBalancingV2LoadBalancerProps = {
|
|
60732
60810
|
* The nodes of an Internet-facing load balancer have public IP addresses. The DNS name of an Internet-facing load balancer is publicly resolvable to the public IP addresses of the nodes. Therefore, Internet-facing load balancers can route requests from clients over the internet.
|
60733
60811
|
The nodes of an internal load balancer have only private IP addresses. The DNS name of an internal load balancer is publicly resolvable to the private IP addresses of the nodes. Therefore, internal load balancers can route requests only from clients with access to the VPC for the load balancer.
|
60734
60812
|
The default is an Internet-facing load balancer.
|
60735
|
-
You
|
60813
|
+
You can't specify a scheme for a Gateway Load Balancer.
|
60736
60814
|
*/
|
60737
60815
|
Scheme?: string;
|
60738
60816
|
/**
|
@@ -60741,11 +60819,11 @@ export type ElasticLoadBalancingV2LoadBalancerProps = {
|
|
60741
60819
|
SecurityGroups?: string[];
|
60742
60820
|
/**
|
60743
60821
|
* The IDs of the subnets. You can specify only one subnet per Availability Zone. You must specify either subnets or subnet mappings, but not both.
|
60744
|
-
[Application Load Balancers] You must specify subnets from at least two Availability Zones. You
|
60822
|
+
[Application Load Balancers] You must specify subnets from at least two Availability Zones. You can't specify Elastic IP addresses for your subnets.
|
60745
60823
|
[Application Load Balancers on Outposts] You must specify one Outpost subnet.
|
60746
60824
|
[Application Load Balancers on Local Zones] You can specify subnets from one or more Local Zones.
|
60747
60825
|
[Network Load Balancers] You can specify subnets from one or more Availability Zones. You can specify one Elastic IP address per subnet if you need static IP addresses for your internet-facing load balancer. For internal load balancers, you can specify one private IP address per subnet from the IPv4 range of the subnet. For internet-facing load balancer, you can specify one IPv6 address per subnet.
|
60748
|
-
[Gateway Load Balancers] You can specify subnets from one or more Availability Zones. You
|
60826
|
+
[Gateway Load Balancers] You can specify subnets from one or more Availability Zones. You can't specify Elastic IP addresses for your subnets.
|
60749
60827
|
*/
|
60750
60828
|
SubnetMappings?: ElasticLoadBalancingV2LoadBalancerSubnetMapping[];
|
60751
60829
|
/**
|
@@ -60753,8 +60831,7 @@ export type ElasticLoadBalancingV2LoadBalancerProps = {
|
|
60753
60831
|
[Application Load Balancers] You must specify subnets from at least two Availability Zones.
|
60754
60832
|
[Application Load Balancers on Outposts] You must specify one Outpost subnet.
|
60755
60833
|
[Application Load Balancers on Local Zones] You can specify subnets from one or more Local Zones.
|
60756
|
-
[Network Load Balancers] You can specify subnets from one or more Availability Zones.
|
60757
|
-
[Gateway Load Balancers] You can specify subnets from one or more Availability Zones.
|
60834
|
+
[Network Load Balancers and Gateway Load Balancers] You can specify subnets from one or more Availability Zones.
|
60758
60835
|
*/
|
60759
60836
|
Subnets?: string[];
|
60760
60837
|
/**
|
@@ -60787,7 +60864,7 @@ export type ElasticLoadBalancingV2LoadBalancerLoadBalancerAttribute = {
|
|
60787
60864
|
* The name of the attribute.
|
60788
60865
|
The following attributes are supported by all load balancers:
|
60789
60866
|
+ ``deletion_protection.enabled`` - Indicates whether deletion protection is enabled. The value is ``true`` or ``false``. The default is ``false``.
|
60790
|
-
+ ``load_balancing.cross_zone.enabled`` - Indicates whether cross-zone load balancing is enabled. The possible values are ``true`` and ``false``. The default for Network Load Balancers and Gateway Load Balancers is ``false``. The default for Application Load Balancers is ``true``, and
|
60867
|
+
+ ``load_balancing.cross_zone.enabled`` - Indicates whether cross-zone load balancing is enabled. The possible values are ``true`` and ``false``. The default for Network Load Balancers and Gateway Load Balancers is ``false``. The default for Application Load Balancers is ``true``, and can't be changed.
|
60791
60868
|
|
60792
60869
|
The following attributes are supported by both Application Load Balancers and Network Load Balancers:
|
60793
60870
|
+ ``access_logs.s3.enabled`` - Indicates whether access logs are enabled. The value is ``true`` or ``false``. The default is ``false``.
|
@@ -60824,6 +60901,13 @@ export type ElasticLoadBalancingV2LoadBalancerLoadBalancerAttribute = {
|
|
60824
60901
|
*/
|
60825
60902
|
Value?: string;
|
60826
60903
|
};
|
60904
|
+
/**
|
60905
|
+
* Type definition for `AWS::ElasticLoadBalancingV2::LoadBalancer.MinimumLoadBalancerCapacity`.
|
60906
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-loadbalancer-minimumloadbalancercapacity.html}
|
60907
|
+
*/
|
60908
|
+
export type ElasticLoadBalancingV2LoadBalancerMinimumLoadBalancerCapacity = {
|
60909
|
+
CapacityUnits: number;
|
60910
|
+
};
|
60827
60911
|
/**
|
60828
60912
|
* Type definition for `AWS::ElasticLoadBalancingV2::LoadBalancer.SubnetMapping`.
|
60829
60913
|
* Specifies a subnet for a load balancer.
|
@@ -60842,6 +60926,9 @@ export type ElasticLoadBalancingV2LoadBalancerSubnetMapping = {
|
|
60842
60926
|
* [Network Load Balancers] The private IPv4 address for an internal load balancer.
|
60843
60927
|
*/
|
60844
60928
|
PrivateIPv4Address?: string;
|
60929
|
+
/**
|
60930
|
+
* [Network Load Balancers with UDP listeners] The IPv6 prefix to use for source NAT. Specify an IPv6 prefix (/80 netmask) from the subnet CIDR block or ``auto_assigned`` to use an IPv6 prefix selected at random from the subnet CIDR block.
|
60931
|
+
*/
|
60845
60932
|
SourceNatIpv6Prefix?: string;
|
60846
60933
|
/**
|
60847
60934
|
* The ID of the subnet.
|
@@ -76911,6 +76998,17 @@ export type IoTDomainConfigurationClientCertificateConfig = {
|
|
76911
76998
|
*/
|
76912
76999
|
export type IoTDomainConfigurationServerCertificateConfig = {
|
76913
77000
|
EnableOCSPCheck?: boolean;
|
77001
|
+
/**
|
77002
|
+
* @minLength `1`
|
77003
|
+
* @maxLength `2048`
|
77004
|
+
* @pattern `^arn:aws(-cn|-us-gov|-iso-b|-iso)?:acm:[a-z]{2}-(gov-|iso-|isob-)?[a-z]{4,9}-\d{1}:\d{12}:certificate/[a-zA-Z0-9/-]+$`
|
77005
|
+
*/
|
77006
|
+
OcspAuthorizedResponderArn?: string;
|
77007
|
+
/**
|
77008
|
+
* @minLength `1`
|
77009
|
+
* @maxLength `170`
|
77010
|
+
*/
|
77011
|
+
OcspLambdaArn?: string;
|
76914
77012
|
};
|
76915
77013
|
/**
|
76916
77014
|
* Type definition for `AWS::IoT::DomainConfiguration.ServerCertificateSummary`.
|
@@ -113193,9 +113291,9 @@ export type OrganizationsPolicyProps = {
|
|
113193
113291
|
*/
|
113194
113292
|
TargetIds?: string[];
|
113195
113293
|
/**
|
113196
|
-
* The type of policy to create. You can specify one of the following values: AISERVICES_OPT_OUT_POLICY, BACKUP_POLICY, SERVICE_CONTROL_POLICY, TAG_POLICY, CHATBOT_POLICY
|
113294
|
+
* The type of policy to create. You can specify one of the following values: AISERVICES_OPT_OUT_POLICY, BACKUP_POLICY, SERVICE_CONTROL_POLICY, TAG_POLICY, CHATBOT_POLICY, RESOURCE_CONTROL_POLICY
|
113197
113295
|
*/
|
113198
|
-
Type: "SERVICE_CONTROL_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "BACKUP_POLICY" | "TAG_POLICY" | "CHATBOT_POLICY";
|
113296
|
+
Type: "SERVICE_CONTROL_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "BACKUP_POLICY" | "TAG_POLICY" | "CHATBOT_POLICY" | "RESOURCE_CONTROL_POLICY";
|
113199
113297
|
};
|
113200
113298
|
/**
|
113201
113299
|
* Attribute type definition for `AWS::Organizations::Policy`.
|
@@ -118694,6 +118792,11 @@ export type QuickSightAnalysisAnalysisDefinition = {
|
|
118694
118792
|
* @maxLength `20`
|
118695
118793
|
*/
|
118696
118794
|
Sheets?: QuickSightAnalysisSheetDefinition[];
|
118795
|
+
/**
|
118796
|
+
* @minLength `0`
|
118797
|
+
* @maxLength `200`
|
118798
|
+
*/
|
118799
|
+
StaticFiles?: QuickSightAnalysisStaticFile[];
|
118697
118800
|
};
|
118698
118801
|
/**
|
118699
118802
|
* Type definition for `AWS::QuickSight::Analysis.AnalysisError`.
|
@@ -119032,6 +119135,11 @@ export type QuickSightAnalysisBarChartVisual = {
|
|
119032
119135
|
ColumnHierarchies?: QuickSightAnalysisColumnHierarchy[];
|
119033
119136
|
Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
|
119034
119137
|
Title?: QuickSightAnalysisVisualTitleLabelOptions;
|
119138
|
+
/**
|
119139
|
+
* @minLength `1`
|
119140
|
+
* @maxLength `1024`
|
119141
|
+
*/
|
119142
|
+
VisualContentAltText?: string;
|
119035
119143
|
/**
|
119036
119144
|
* @minLength `1`
|
119037
119145
|
* @maxLength `512`
|
@@ -119191,6 +119299,11 @@ export type QuickSightAnalysisBoxPlotVisual = {
|
|
119191
119299
|
ColumnHierarchies?: QuickSightAnalysisColumnHierarchy[];
|
119192
119300
|
Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
|
119193
119301
|
Title?: QuickSightAnalysisVisualTitleLabelOptions;
|
119302
|
+
/**
|
119303
|
+
* @minLength `1`
|
119304
|
+
* @maxLength `1024`
|
119305
|
+
*/
|
119306
|
+
VisualContentAltText?: string;
|
119194
119307
|
/**
|
119195
119308
|
* @minLength `1`
|
119196
119309
|
* @maxLength `512`
|
@@ -119558,6 +119671,11 @@ export type QuickSightAnalysisComboChartVisual = {
|
|
119558
119671
|
ColumnHierarchies?: QuickSightAnalysisColumnHierarchy[];
|
119559
119672
|
Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
|
119560
119673
|
Title?: QuickSightAnalysisVisualTitleLabelOptions;
|
119674
|
+
/**
|
119675
|
+
* @minLength `1`
|
119676
|
+
* @maxLength `1024`
|
119677
|
+
*/
|
119678
|
+
VisualContentAltText?: string;
|
119561
119679
|
/**
|
119562
119680
|
* @minLength `1`
|
119563
119681
|
* @maxLength `512`
|
@@ -119848,6 +119966,11 @@ export type QuickSightAnalysisCustomContentVisual = {
|
|
119848
119966
|
DataSetIdentifier: string;
|
119849
119967
|
Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
|
119850
119968
|
Title?: QuickSightAnalysisVisualTitleLabelOptions;
|
119969
|
+
/**
|
119970
|
+
* @minLength `1`
|
119971
|
+
* @maxLength `1024`
|
119972
|
+
*/
|
119973
|
+
VisualContentAltText?: string;
|
119851
119974
|
/**
|
119852
119975
|
* @minLength `1`
|
119853
119976
|
* @maxLength `512`
|
@@ -120767,6 +120890,11 @@ export type QuickSightAnalysisFilledMapVisual = {
|
|
120767
120890
|
ConditionalFormatting?: QuickSightAnalysisFilledMapConditionalFormatting;
|
120768
120891
|
Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
|
120769
120892
|
Title?: QuickSightAnalysisVisualTitleLabelOptions;
|
120893
|
+
/**
|
120894
|
+
* @minLength `1`
|
120895
|
+
* @maxLength `1024`
|
120896
|
+
*/
|
120897
|
+
VisualContentAltText?: string;
|
120770
120898
|
/**
|
120771
120899
|
* @minLength `1`
|
120772
120900
|
* @maxLength `512`
|
@@ -121120,6 +121248,10 @@ export type QuickSightAnalysisFontDecoration = "UNDERLINE" | "NONE";
|
|
121120
121248
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-fontsize.html}
|
121121
121249
|
*/
|
121122
121250
|
export type QuickSightAnalysisFontSize = {
|
121251
|
+
/**
|
121252
|
+
* String based length that is composed of value and unit in px
|
121253
|
+
*/
|
121254
|
+
Absolute?: string;
|
121123
121255
|
Relative?: QuickSightAnalysisRelativeFontSize;
|
121124
121256
|
};
|
121125
121257
|
/**
|
@@ -121395,6 +121527,11 @@ export type QuickSightAnalysisFunnelChartVisual = {
|
|
121395
121527
|
ColumnHierarchies?: QuickSightAnalysisColumnHierarchy[];
|
121396
121528
|
Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
|
121397
121529
|
Title?: QuickSightAnalysisVisualTitleLabelOptions;
|
121530
|
+
/**
|
121531
|
+
* @minLength `1`
|
121532
|
+
* @maxLength `1024`
|
121533
|
+
*/
|
121534
|
+
VisualContentAltText?: string;
|
121398
121535
|
/**
|
121399
121536
|
* @minLength `1`
|
121400
121537
|
* @maxLength `512`
|
@@ -121488,6 +121625,11 @@ export type QuickSightAnalysisGaugeChartVisual = {
|
|
121488
121625
|
ConditionalFormatting?: QuickSightAnalysisGaugeChartConditionalFormatting;
|
121489
121626
|
Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
|
121490
121627
|
Title?: QuickSightAnalysisVisualTitleLabelOptions;
|
121628
|
+
/**
|
121629
|
+
* @minLength `1`
|
121630
|
+
* @maxLength `1024`
|
121631
|
+
*/
|
121632
|
+
VisualContentAltText?: string;
|
121491
121633
|
/**
|
121492
121634
|
* @minLength `1`
|
121493
121635
|
* @maxLength `512`
|
@@ -121495,6 +121637,69 @@ export type QuickSightAnalysisGaugeChartVisual = {
|
|
121495
121637
|
*/
|
121496
121638
|
VisualId: string;
|
121497
121639
|
};
|
121640
|
+
/**
|
121641
|
+
* Type definition for `AWS::QuickSight::Analysis.GeospatialCategoricalColor`.
|
121642
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialcategoricalcolor.html}
|
121643
|
+
*/
|
121644
|
+
export type QuickSightAnalysisGeospatialCategoricalColor = {
|
121645
|
+
CategoryDataColors: QuickSightAnalysisGeospatialCategoricalDataColor[];
|
121646
|
+
/**
|
121647
|
+
* @min `0`
|
121648
|
+
* @max `1`
|
121649
|
+
*/
|
121650
|
+
DefaultOpacity?: number;
|
121651
|
+
NullDataSettings?: QuickSightAnalysisGeospatialNullDataSettings;
|
121652
|
+
NullDataVisibility?: QuickSightAnalysisVisibility;
|
121653
|
+
};
|
121654
|
+
/**
|
121655
|
+
* Type definition for `AWS::QuickSight::Analysis.GeospatialCategoricalDataColor`.
|
121656
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialcategoricaldatacolor.html}
|
121657
|
+
*/
|
121658
|
+
export type QuickSightAnalysisGeospatialCategoricalDataColor = {
|
121659
|
+
/**
|
121660
|
+
* @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
|
121661
|
+
*/
|
121662
|
+
Color: string;
|
121663
|
+
DataValue: string;
|
121664
|
+
};
|
121665
|
+
/**
|
121666
|
+
* Type definition for `AWS::QuickSight::Analysis.GeospatialCircleRadius`.
|
121667
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialcircleradius.html}
|
121668
|
+
*/
|
121669
|
+
export type QuickSightAnalysisGeospatialCircleRadius = {
|
121670
|
+
/**
|
121671
|
+
* @min `0`
|
121672
|
+
*/
|
121673
|
+
Radius?: number;
|
121674
|
+
};
|
121675
|
+
/**
|
121676
|
+
* Type definition for `AWS::QuickSight::Analysis.GeospatialCircleSymbolStyle`.
|
121677
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialcirclesymbolstyle.html}
|
121678
|
+
*/
|
121679
|
+
export type QuickSightAnalysisGeospatialCircleSymbolStyle = {
|
121680
|
+
CircleRadius?: QuickSightAnalysisGeospatialCircleRadius;
|
121681
|
+
FillColor?: QuickSightAnalysisGeospatialColor;
|
121682
|
+
StrokeColor?: QuickSightAnalysisGeospatialColor;
|
121683
|
+
StrokeWidth?: QuickSightAnalysisGeospatialLineWidth;
|
121684
|
+
};
|
121685
|
+
/**
|
121686
|
+
* Type definition for `AWS::QuickSight::Analysis.GeospatialColor`.
|
121687
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialcolor.html}
|
121688
|
+
*/
|
121689
|
+
export type QuickSightAnalysisGeospatialColor = {
|
121690
|
+
Categorical?: QuickSightAnalysisGeospatialCategoricalColor;
|
121691
|
+
Gradient?: QuickSightAnalysisGeospatialGradientColor;
|
121692
|
+
/**
|
121693
|
+
* Describes the properties for a solid color
|
121694
|
+
*/
|
121695
|
+
Solid?: QuickSightAnalysisGeospatialSolidColor;
|
121696
|
+
};
|
121697
|
+
/**
|
121698
|
+
* Type definition for `AWS::QuickSight::Analysis.GeospatialColorState`.
|
121699
|
+
* Defines view state of the color
|
121700
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialcolorstate.html}
|
121701
|
+
*/
|
121702
|
+
export type QuickSightAnalysisGeospatialColorState = "ENABLED" | "DISABLED";
|
121498
121703
|
/**
|
121499
121704
|
* Type definition for `AWS::QuickSight::Analysis.GeospatialCoordinateBounds`.
|
121500
121705
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialcoordinatebounds.html}
|
@@ -121521,6 +121726,42 @@ export type QuickSightAnalysisGeospatialCoordinateBounds = {
|
|
121521
121726
|
*/
|
121522
121727
|
West: number;
|
121523
121728
|
};
|
121729
|
+
/**
|
121730
|
+
* Type definition for `AWS::QuickSight::Analysis.GeospatialDataSourceItem`.
|
121731
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialdatasourceitem.html}
|
121732
|
+
*/
|
121733
|
+
export type QuickSightAnalysisGeospatialDataSourceItem = {
|
121734
|
+
StaticFileDataSource?: QuickSightAnalysisGeospatialStaticFileSource;
|
121735
|
+
};
|
121736
|
+
/**
|
121737
|
+
* Type definition for `AWS::QuickSight::Analysis.GeospatialGradientColor`.
|
121738
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialgradientcolor.html}
|
121739
|
+
*/
|
121740
|
+
export type QuickSightAnalysisGeospatialGradientColor = {
|
121741
|
+
/**
|
121742
|
+
* @min `0`
|
121743
|
+
* @max `1`
|
121744
|
+
*/
|
121745
|
+
DefaultOpacity?: number;
|
121746
|
+
NullDataSettings?: QuickSightAnalysisGeospatialNullDataSettings;
|
121747
|
+
NullDataVisibility?: QuickSightAnalysisVisibility;
|
121748
|
+
/**
|
121749
|
+
* @minLength `2`
|
121750
|
+
* @maxLength `3`
|
121751
|
+
*/
|
121752
|
+
StepColors: QuickSightAnalysisGeospatialGradientStepColor[];
|
121753
|
+
};
|
121754
|
+
/**
|
121755
|
+
* Type definition for `AWS::QuickSight::Analysis.GeospatialGradientStepColor`.
|
121756
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialgradientstepcolor.html}
|
121757
|
+
*/
|
121758
|
+
export type QuickSightAnalysisGeospatialGradientStepColor = {
|
121759
|
+
/**
|
121760
|
+
* @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
|
121761
|
+
*/
|
121762
|
+
Color: string;
|
121763
|
+
DataValue: number;
|
121764
|
+
};
|
121524
121765
|
/**
|
121525
121766
|
* Type definition for `AWS::QuickSight::Analysis.GeospatialHeatmapColorScale`.
|
121526
121767
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialheatmapcolorscale.html}
|
@@ -121549,6 +121790,107 @@ export type QuickSightAnalysisGeospatialHeatmapDataColor = {
|
|
121549
121790
|
*/
|
121550
121791
|
Color: string;
|
121551
121792
|
};
|
121793
|
+
/**
|
121794
|
+
* Type definition for `AWS::QuickSight::Analysis.GeospatialLayerColorField`.
|
121795
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatiallayercolorfield.html}
|
121796
|
+
*/
|
121797
|
+
export type QuickSightAnalysisGeospatialLayerColorField = {
|
121798
|
+
/**
|
121799
|
+
* @minLength `0`
|
121800
|
+
* @maxLength `1`
|
121801
|
+
*/
|
121802
|
+
ColorDimensionsFields?: QuickSightAnalysisDimensionField[];
|
121803
|
+
/**
|
121804
|
+
* @minLength `0`
|
121805
|
+
* @maxLength `1`
|
121806
|
+
*/
|
121807
|
+
ColorValuesFields?: QuickSightAnalysisMeasureField[];
|
121808
|
+
};
|
121809
|
+
/**
|
121810
|
+
* Type definition for `AWS::QuickSight::Analysis.GeospatialLayerDefinition`.
|
121811
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatiallayerdefinition.html}
|
121812
|
+
*/
|
121813
|
+
export type QuickSightAnalysisGeospatialLayerDefinition = {
|
121814
|
+
LineLayer?: QuickSightAnalysisGeospatialLineLayer;
|
121815
|
+
PointLayer?: QuickSightAnalysisGeospatialPointLayer;
|
121816
|
+
PolygonLayer?: QuickSightAnalysisGeospatialPolygonLayer;
|
121817
|
+
};
|
121818
|
+
/**
|
121819
|
+
* Type definition for `AWS::QuickSight::Analysis.GeospatialLayerItem`.
|
121820
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatiallayeritem.html}
|
121821
|
+
*/
|
121822
|
+
export type QuickSightAnalysisGeospatialLayerItem = {
|
121823
|
+
/**
|
121824
|
+
* @minLength `0`
|
121825
|
+
* @maxLength `10`
|
121826
|
+
*/
|
121827
|
+
Actions?: QuickSightAnalysisLayerCustomAction[];
|
121828
|
+
DataSource?: QuickSightAnalysisGeospatialDataSourceItem;
|
121829
|
+
JoinDefinition?: QuickSightAnalysisGeospatialLayerJoinDefinition;
|
121830
|
+
Label?: string;
|
121831
|
+
LayerDefinition?: QuickSightAnalysisGeospatialLayerDefinition;
|
121832
|
+
LayerId: string;
|
121833
|
+
LayerType?: QuickSightAnalysisGeospatialLayerType;
|
121834
|
+
Tooltip?: QuickSightAnalysisTooltipOptions;
|
121835
|
+
Visibility?: QuickSightAnalysisVisibility;
|
121836
|
+
};
|
121837
|
+
/**
|
121838
|
+
* Type definition for `AWS::QuickSight::Analysis.GeospatialLayerJoinDefinition`.
|
121839
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatiallayerjoindefinition.html}
|
121840
|
+
*/
|
121841
|
+
export type QuickSightAnalysisGeospatialLayerJoinDefinition = {
|
121842
|
+
ColorField?: QuickSightAnalysisGeospatialLayerColorField;
|
121843
|
+
DatasetKeyField?: QuickSightAnalysisUnaggregatedField;
|
121844
|
+
ShapeKeyField?: string;
|
121845
|
+
};
|
121846
|
+
/**
|
121847
|
+
* Type definition for `AWS::QuickSight::Analysis.GeospatialLayerMapConfiguration`.
|
121848
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatiallayermapconfiguration.html}
|
121849
|
+
*/
|
121850
|
+
export type QuickSightAnalysisGeospatialLayerMapConfiguration = {
|
121851
|
+
Interactions?: unknown;
|
121852
|
+
Legend?: QuickSightAnalysisLegendOptions;
|
121853
|
+
MapLayers?: QuickSightAnalysisGeospatialLayerItem[];
|
121854
|
+
MapState?: QuickSightAnalysisGeospatialMapState;
|
121855
|
+
MapStyle?: QuickSightAnalysisGeospatialMapStyle;
|
121856
|
+
};
|
121857
|
+
/**
|
121858
|
+
* Type definition for `AWS::QuickSight::Analysis.GeospatialLayerType`.
|
121859
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatiallayertype.html}
|
121860
|
+
*/
|
121861
|
+
export type QuickSightAnalysisGeospatialLayerType = "POINT" | "LINE" | "POLYGON";
|
121862
|
+
/**
|
121863
|
+
* Type definition for `AWS::QuickSight::Analysis.GeospatialLineLayer`.
|
121864
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatiallinelayer.html}
|
121865
|
+
*/
|
121866
|
+
export type QuickSightAnalysisGeospatialLineLayer = {
|
121867
|
+
Style: QuickSightAnalysisGeospatialLineStyle;
|
121868
|
+
};
|
121869
|
+
/**
|
121870
|
+
* Type definition for `AWS::QuickSight::Analysis.GeospatialLineStyle`.
|
121871
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatiallinestyle.html}
|
121872
|
+
*/
|
121873
|
+
export type QuickSightAnalysisGeospatialLineStyle = {
|
121874
|
+
LineSymbolStyle?: QuickSightAnalysisGeospatialLineSymbolStyle;
|
121875
|
+
};
|
121876
|
+
/**
|
121877
|
+
* Type definition for `AWS::QuickSight::Analysis.GeospatialLineSymbolStyle`.
|
121878
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatiallinesymbolstyle.html}
|
121879
|
+
*/
|
121880
|
+
export type QuickSightAnalysisGeospatialLineSymbolStyle = {
|
121881
|
+
FillColor?: QuickSightAnalysisGeospatialColor;
|
121882
|
+
LineWidth?: QuickSightAnalysisGeospatialLineWidth;
|
121883
|
+
};
|
121884
|
+
/**
|
121885
|
+
* Type definition for `AWS::QuickSight::Analysis.GeospatialLineWidth`.
|
121886
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatiallinewidth.html}
|
121887
|
+
*/
|
121888
|
+
export type QuickSightAnalysisGeospatialLineWidth = {
|
121889
|
+
/**
|
121890
|
+
* @min `0`
|
121891
|
+
*/
|
121892
|
+
LineWidth?: number;
|
121893
|
+
};
|
121552
121894
|
/**
|
121553
121895
|
* Type definition for `AWS::QuickSight::Analysis.GeospatialMapAggregatedFieldWells`.
|
121554
121896
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialmapaggregatedfieldwells.html}
|
@@ -121576,6 +121918,7 @@ export type QuickSightAnalysisGeospatialMapAggregatedFieldWells = {
|
|
121576
121918
|
*/
|
121577
121919
|
export type QuickSightAnalysisGeospatialMapConfiguration = {
|
121578
121920
|
FieldWells?: QuickSightAnalysisGeospatialMapFieldWells;
|
121921
|
+
Interactions?: unknown;
|
121579
121922
|
Legend?: QuickSightAnalysisLegendOptions;
|
121580
121923
|
MapStyleOptions?: QuickSightAnalysisGeospatialMapStyleOptions;
|
121581
121924
|
PointStyleOptions?: QuickSightAnalysisGeospatialPointStyleOptions;
|
@@ -121590,6 +121933,31 @@ export type QuickSightAnalysisGeospatialMapConfiguration = {
|
|
121590
121933
|
export type QuickSightAnalysisGeospatialMapFieldWells = {
|
121591
121934
|
GeospatialMapAggregatedFieldWells?: QuickSightAnalysisGeospatialMapAggregatedFieldWells;
|
121592
121935
|
};
|
121936
|
+
/**
|
121937
|
+
* Type definition for `AWS::QuickSight::Analysis.GeospatialMapNavigation`.
|
121938
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialmapnavigation.html}
|
121939
|
+
*/
|
121940
|
+
export type QuickSightAnalysisGeospatialMapNavigation = "ENABLED" | "DISABLED";
|
121941
|
+
/**
|
121942
|
+
* Type definition for `AWS::QuickSight::Analysis.GeospatialMapState`.
|
121943
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialmapstate.html}
|
121944
|
+
*/
|
121945
|
+
export type QuickSightAnalysisGeospatialMapState = {
|
121946
|
+
Bounds?: QuickSightAnalysisGeospatialCoordinateBounds;
|
121947
|
+
MapNavigation?: QuickSightAnalysisGeospatialMapNavigation;
|
121948
|
+
};
|
121949
|
+
/**
|
121950
|
+
* Type definition for `AWS::QuickSight::Analysis.GeospatialMapStyle`.
|
121951
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialmapstyle.html}
|
121952
|
+
*/
|
121953
|
+
export type QuickSightAnalysisGeospatialMapStyle = {
|
121954
|
+
/**
|
121955
|
+
* @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
|
121956
|
+
*/
|
121957
|
+
BackgroundColor?: string;
|
121958
|
+
BaseMapStyle?: QuickSightAnalysisBaseMapStyleType;
|
121959
|
+
BaseMapVisibility?: QuickSightAnalysisVisibility;
|
121960
|
+
};
|
121593
121961
|
/**
|
121594
121962
|
* Type definition for `AWS::QuickSight::Analysis.GeospatialMapStyleOptions`.
|
121595
121963
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialmapstyleoptions.html}
|
@@ -121615,6 +121983,11 @@ export type QuickSightAnalysisGeospatialMapVisual = {
|
|
121615
121983
|
ColumnHierarchies?: QuickSightAnalysisColumnHierarchy[];
|
121616
121984
|
Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
|
121617
121985
|
Title?: QuickSightAnalysisVisualTitleLabelOptions;
|
121986
|
+
/**
|
121987
|
+
* @minLength `1`
|
121988
|
+
* @maxLength `1024`
|
121989
|
+
*/
|
121990
|
+
VisualContentAltText?: string;
|
121618
121991
|
/**
|
121619
121992
|
* @minLength `1`
|
121620
121993
|
* @maxLength `512`
|
@@ -121622,6 +121995,45 @@ export type QuickSightAnalysisGeospatialMapVisual = {
|
|
121622
121995
|
*/
|
121623
121996
|
VisualId: string;
|
121624
121997
|
};
|
121998
|
+
/**
|
121999
|
+
* Type definition for `AWS::QuickSight::Analysis.GeospatialNullDataSettings`.
|
122000
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialnulldatasettings.html}
|
122001
|
+
*/
|
122002
|
+
export type QuickSightAnalysisGeospatialNullDataSettings = {
|
122003
|
+
SymbolStyle: QuickSightAnalysisGeospatialNullSymbolStyle;
|
122004
|
+
};
|
122005
|
+
/**
|
122006
|
+
* Type definition for `AWS::QuickSight::Analysis.GeospatialNullSymbolStyle`.
|
122007
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialnullsymbolstyle.html}
|
122008
|
+
*/
|
122009
|
+
export type QuickSightAnalysisGeospatialNullSymbolStyle = {
|
122010
|
+
/**
|
122011
|
+
* @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
|
122012
|
+
*/
|
122013
|
+
FillColor?: string;
|
122014
|
+
/**
|
122015
|
+
* @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
|
122016
|
+
*/
|
122017
|
+
StrokeColor?: string;
|
122018
|
+
/**
|
122019
|
+
* @min `0`
|
122020
|
+
*/
|
122021
|
+
StrokeWidth?: number;
|
122022
|
+
};
|
122023
|
+
/**
|
122024
|
+
* Type definition for `AWS::QuickSight::Analysis.GeospatialPointLayer`.
|
122025
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialpointlayer.html}
|
122026
|
+
*/
|
122027
|
+
export type QuickSightAnalysisGeospatialPointLayer = {
|
122028
|
+
Style: QuickSightAnalysisGeospatialPointStyle;
|
122029
|
+
};
|
122030
|
+
/**
|
122031
|
+
* Type definition for `AWS::QuickSight::Analysis.GeospatialPointStyle`.
|
122032
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialpointstyle.html}
|
122033
|
+
*/
|
122034
|
+
export type QuickSightAnalysisGeospatialPointStyle = {
|
122035
|
+
CircleSymbolStyle?: QuickSightAnalysisGeospatialCircleSymbolStyle;
|
122036
|
+
};
|
121625
122037
|
/**
|
121626
122038
|
* Type definition for `AWS::QuickSight::Analysis.GeospatialPointStyleOptions`.
|
121627
122039
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialpointstyleoptions.html}
|
@@ -121631,11 +122043,61 @@ export type QuickSightAnalysisGeospatialPointStyleOptions = {
|
|
121631
122043
|
HeatmapConfiguration?: QuickSightAnalysisGeospatialHeatmapConfiguration;
|
121632
122044
|
SelectedPointStyle?: QuickSightAnalysisGeospatialSelectedPointStyle;
|
121633
122045
|
};
|
122046
|
+
/**
|
122047
|
+
* Type definition for `AWS::QuickSight::Analysis.GeospatialPolygonLayer`.
|
122048
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialpolygonlayer.html}
|
122049
|
+
*/
|
122050
|
+
export type QuickSightAnalysisGeospatialPolygonLayer = {
|
122051
|
+
Style: QuickSightAnalysisGeospatialPolygonStyle;
|
122052
|
+
};
|
122053
|
+
/**
|
122054
|
+
* Type definition for `AWS::QuickSight::Analysis.GeospatialPolygonStyle`.
|
122055
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialpolygonstyle.html}
|
122056
|
+
*/
|
122057
|
+
export type QuickSightAnalysisGeospatialPolygonStyle = {
|
122058
|
+
PolygonSymbolStyle?: QuickSightAnalysisGeospatialPolygonSymbolStyle;
|
122059
|
+
};
|
122060
|
+
/**
|
122061
|
+
* Type definition for `AWS::QuickSight::Analysis.GeospatialPolygonSymbolStyle`.
|
122062
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialpolygonsymbolstyle.html}
|
122063
|
+
*/
|
122064
|
+
export type QuickSightAnalysisGeospatialPolygonSymbolStyle = {
|
122065
|
+
FillColor?: QuickSightAnalysisGeospatialColor;
|
122066
|
+
StrokeColor?: QuickSightAnalysisGeospatialColor;
|
122067
|
+
StrokeWidth?: QuickSightAnalysisGeospatialLineWidth;
|
122068
|
+
};
|
121634
122069
|
/**
|
121635
122070
|
* Type definition for `AWS::QuickSight::Analysis.GeospatialSelectedPointStyle`.
|
121636
122071
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialselectedpointstyle.html}
|
121637
122072
|
*/
|
121638
122073
|
export type QuickSightAnalysisGeospatialSelectedPointStyle = "POINT" | "CLUSTER" | "HEATMAP";
|
122074
|
+
/**
|
122075
|
+
* Type definition for `AWS::QuickSight::Analysis.GeospatialSolidColor`.
|
122076
|
+
* Describes the properties for a solid color
|
122077
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialsolidcolor.html}
|
122078
|
+
*/
|
122079
|
+
export type QuickSightAnalysisGeospatialSolidColor = {
|
122080
|
+
/**
|
122081
|
+
* @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
|
122082
|
+
*/
|
122083
|
+
Color: string;
|
122084
|
+
/**
|
122085
|
+
* Defines view state of the color
|
122086
|
+
*/
|
122087
|
+
State?: QuickSightAnalysisGeospatialColorState;
|
122088
|
+
};
|
122089
|
+
/**
|
122090
|
+
* Type definition for `AWS::QuickSight::Analysis.GeospatialStaticFileSource`.
|
122091
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialstaticfilesource.html}
|
122092
|
+
*/
|
122093
|
+
export type QuickSightAnalysisGeospatialStaticFileSource = {
|
122094
|
+
/**
|
122095
|
+
* @minLength `1`
|
122096
|
+
* @maxLength `512`
|
122097
|
+
* @pattern `^[\w\-]+$`
|
122098
|
+
*/
|
122099
|
+
StaticFileId: string;
|
122100
|
+
};
|
121639
122101
|
/**
|
121640
122102
|
* Type definition for `AWS::QuickSight::Analysis.GeospatialWindowOptions`.
|
121641
122103
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialwindowoptions.html}
|
@@ -121850,6 +122312,11 @@ export type QuickSightAnalysisHeatMapVisual = {
|
|
121850
122312
|
ColumnHierarchies?: QuickSightAnalysisColumnHierarchy[];
|
121851
122313
|
Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
|
121852
122314
|
Title?: QuickSightAnalysisVisualTitleLabelOptions;
|
122315
|
+
/**
|
122316
|
+
* @minLength `1`
|
122317
|
+
* @maxLength `1024`
|
122318
|
+
*/
|
122319
|
+
VisualContentAltText?: string;
|
121853
122320
|
/**
|
121854
122321
|
* @minLength `1`
|
121855
122322
|
* @maxLength `512`
|
@@ -121917,6 +122384,11 @@ export type QuickSightAnalysisHistogramVisual = {
|
|
121917
122384
|
ChartConfiguration?: QuickSightAnalysisHistogramConfiguration;
|
121918
122385
|
Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
|
121919
122386
|
Title?: QuickSightAnalysisVisualTitleLabelOptions;
|
122387
|
+
/**
|
122388
|
+
* @minLength `1`
|
122389
|
+
* @maxLength `1024`
|
122390
|
+
*/
|
122391
|
+
VisualContentAltText?: string;
|
121920
122392
|
/**
|
121921
122393
|
* @minLength `1`
|
121922
122394
|
* @maxLength `512`
|
@@ -121934,6 +122406,71 @@ export type QuickSightAnalysisHorizontalTextAlignment = "LEFT" | "CENTER" | "RIG
|
|
121934
122406
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-icon.html}
|
121935
122407
|
*/
|
121936
122408
|
export type QuickSightAnalysisIcon = "CARET_UP" | "CARET_DOWN" | "PLUS" | "MINUS" | "ARROW_UP" | "ARROW_DOWN" | "ARROW_LEFT" | "ARROW_UP_LEFT" | "ARROW_DOWN_LEFT" | "ARROW_RIGHT" | "ARROW_UP_RIGHT" | "ARROW_DOWN_RIGHT" | "FACE_UP" | "FACE_DOWN" | "FACE_FLAT" | "ONE_BAR" | "TWO_BAR" | "THREE_BAR" | "CIRCLE" | "TRIANGLE" | "SQUARE" | "FLAG" | "THUMBS_UP" | "THUMBS_DOWN" | "CHECKMARK" | "X";
|
122409
|
+
/**
|
122410
|
+
* Type definition for `AWS::QuickSight::Analysis.ImageCustomAction`.
|
122411
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-imagecustomaction.html}
|
122412
|
+
*/
|
122413
|
+
export type QuickSightAnalysisImageCustomAction = {
|
122414
|
+
/**
|
122415
|
+
* @minLength `1`
|
122416
|
+
* @maxLength `2`
|
122417
|
+
*/
|
122418
|
+
ActionOperations: QuickSightAnalysisImageCustomActionOperation[];
|
122419
|
+
/**
|
122420
|
+
* @minLength `1`
|
122421
|
+
* @maxLength `512`
|
122422
|
+
* @pattern `^[\w\-]+$`
|
122423
|
+
*/
|
122424
|
+
CustomActionId: string;
|
122425
|
+
/**
|
122426
|
+
* @minLength `1`
|
122427
|
+
* @maxLength `256`
|
122428
|
+
*/
|
122429
|
+
Name: string;
|
122430
|
+
Status?: QuickSightAnalysisWidgetStatus;
|
122431
|
+
Trigger: QuickSightAnalysisImageCustomActionTrigger;
|
122432
|
+
};
|
122433
|
+
/**
|
122434
|
+
* Type definition for `AWS::QuickSight::Analysis.ImageCustomActionOperation`.
|
122435
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-imagecustomactionoperation.html}
|
122436
|
+
*/
|
122437
|
+
export type QuickSightAnalysisImageCustomActionOperation = {
|
122438
|
+
NavigationOperation?: QuickSightAnalysisCustomActionNavigationOperation;
|
122439
|
+
SetParametersOperation?: QuickSightAnalysisCustomActionSetParametersOperation;
|
122440
|
+
URLOperation?: QuickSightAnalysisCustomActionURLOperation;
|
122441
|
+
};
|
122442
|
+
/**
|
122443
|
+
* Type definition for `AWS::QuickSight::Analysis.ImageCustomActionTrigger`.
|
122444
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-imagecustomactiontrigger.html}
|
122445
|
+
*/
|
122446
|
+
export type QuickSightAnalysisImageCustomActionTrigger = "CLICK" | "MENU";
|
122447
|
+
/**
|
122448
|
+
* Type definition for `AWS::QuickSight::Analysis.ImageInteractionOptions`.
|
122449
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-imageinteractionoptions.html}
|
122450
|
+
*/
|
122451
|
+
export type QuickSightAnalysisImageInteractionOptions = {
|
122452
|
+
ImageMenuOption?: QuickSightAnalysisImageMenuOption;
|
122453
|
+
};
|
122454
|
+
/**
|
122455
|
+
* Type definition for `AWS::QuickSight::Analysis.ImageMenuOption`.
|
122456
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-imagemenuoption.html}
|
122457
|
+
*/
|
122458
|
+
export type QuickSightAnalysisImageMenuOption = {
|
122459
|
+
AvailabilityStatus?: unknown;
|
122460
|
+
};
|
122461
|
+
/**
|
122462
|
+
* Type definition for `AWS::QuickSight::Analysis.ImageStaticFile`.
|
122463
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-imagestaticfile.html}
|
122464
|
+
*/
|
122465
|
+
export type QuickSightAnalysisImageStaticFile = {
|
122466
|
+
Source?: QuickSightAnalysisStaticFileSource;
|
122467
|
+
/**
|
122468
|
+
* @minLength `1`
|
122469
|
+
* @maxLength `512`
|
122470
|
+
* @pattern `^[\w\-]+$`
|
122471
|
+
*/
|
122472
|
+
StaticFileId: string;
|
122473
|
+
};
|
121937
122474
|
/**
|
121938
122475
|
* Type definition for `AWS::QuickSight::Analysis.InnerFilter`.
|
121939
122476
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-innerfilter.html}
|
@@ -121971,6 +122508,11 @@ export type QuickSightAnalysisInsightVisual = {
|
|
121971
122508
|
InsightConfiguration?: QuickSightAnalysisInsightConfiguration;
|
121972
122509
|
Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
|
121973
122510
|
Title?: QuickSightAnalysisVisualTitleLabelOptions;
|
122511
|
+
/**
|
122512
|
+
* @minLength `1`
|
122513
|
+
* @maxLength `1024`
|
122514
|
+
*/
|
122515
|
+
VisualContentAltText?: string;
|
121974
122516
|
/**
|
121975
122517
|
* @minLength `1`
|
121976
122518
|
* @maxLength `512`
|
@@ -122187,6 +122729,11 @@ export type QuickSightAnalysisKPIVisual = {
|
|
122187
122729
|
ConditionalFormatting?: QuickSightAnalysisKPIConditionalFormatting;
|
122188
122730
|
Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
|
122189
122731
|
Title?: QuickSightAnalysisVisualTitleLabelOptions;
|
122732
|
+
/**
|
122733
|
+
* @minLength `1`
|
122734
|
+
* @maxLength `1024`
|
122735
|
+
*/
|
122736
|
+
VisualContentAltText?: string;
|
122190
122737
|
/**
|
122191
122738
|
* @minLength `1`
|
122192
122739
|
* @maxLength `512`
|
@@ -122222,6 +122769,70 @@ export type QuickSightAnalysisLabelOptions = {
|
|
122222
122769
|
FontConfiguration?: QuickSightAnalysisFontConfiguration;
|
122223
122770
|
Visibility?: QuickSightAnalysisVisibility;
|
122224
122771
|
};
|
122772
|
+
/**
|
122773
|
+
* Type definition for `AWS::QuickSight::Analysis.LayerCustomAction`.
|
122774
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-layercustomaction.html}
|
122775
|
+
*/
|
122776
|
+
export type QuickSightAnalysisLayerCustomAction = {
|
122777
|
+
/**
|
122778
|
+
* @minLength `1`
|
122779
|
+
* @maxLength `2`
|
122780
|
+
*/
|
122781
|
+
ActionOperations: QuickSightAnalysisLayerCustomActionOperation[];
|
122782
|
+
/**
|
122783
|
+
* @minLength `1`
|
122784
|
+
* @maxLength `512`
|
122785
|
+
* @pattern `^[\w\-]+$`
|
122786
|
+
*/
|
122787
|
+
CustomActionId: string;
|
122788
|
+
/**
|
122789
|
+
* @minLength `1`
|
122790
|
+
* @maxLength `256`
|
122791
|
+
*/
|
122792
|
+
Name: string;
|
122793
|
+
Status?: QuickSightAnalysisWidgetStatus;
|
122794
|
+
Trigger: QuickSightAnalysisLayerCustomActionTrigger;
|
122795
|
+
};
|
122796
|
+
/**
|
122797
|
+
* Type definition for `AWS::QuickSight::Analysis.LayerCustomActionOperation`.
|
122798
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-layercustomactionoperation.html}
|
122799
|
+
*/
|
122800
|
+
export type QuickSightAnalysisLayerCustomActionOperation = {
|
122801
|
+
FilterOperation?: QuickSightAnalysisCustomActionFilterOperation;
|
122802
|
+
NavigationOperation?: QuickSightAnalysisCustomActionNavigationOperation;
|
122803
|
+
SetParametersOperation?: QuickSightAnalysisCustomActionSetParametersOperation;
|
122804
|
+
URLOperation?: QuickSightAnalysisCustomActionURLOperation;
|
122805
|
+
};
|
122806
|
+
/**
|
122807
|
+
* Type definition for `AWS::QuickSight::Analysis.LayerCustomActionTrigger`.
|
122808
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-layercustomactiontrigger.html}
|
122809
|
+
*/
|
122810
|
+
export type QuickSightAnalysisLayerCustomActionTrigger = "DATA_POINT_CLICK" | "DATA_POINT_MENU";
|
122811
|
+
/**
|
122812
|
+
* Type definition for `AWS::QuickSight::Analysis.LayerMapVisual`.
|
122813
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-layermapvisual.html}
|
122814
|
+
*/
|
122815
|
+
export type QuickSightAnalysisLayerMapVisual = {
|
122816
|
+
ChartConfiguration?: QuickSightAnalysisGeospatialLayerMapConfiguration;
|
122817
|
+
/**
|
122818
|
+
* @minLength `1`
|
122819
|
+
* @maxLength `2048`
|
122820
|
+
*/
|
122821
|
+
DataSetIdentifier: string;
|
122822
|
+
Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
|
122823
|
+
Title?: QuickSightAnalysisVisualTitleLabelOptions;
|
122824
|
+
/**
|
122825
|
+
* @minLength `1`
|
122826
|
+
* @maxLength `1024`
|
122827
|
+
*/
|
122828
|
+
VisualContentAltText?: string;
|
122829
|
+
/**
|
122830
|
+
* @minLength `1`
|
122831
|
+
* @maxLength `512`
|
122832
|
+
* @pattern `^[\w\-]+$`
|
122833
|
+
*/
|
122834
|
+
VisualId: string;
|
122835
|
+
};
|
122225
122836
|
/**
|
122226
122837
|
* Type definition for `AWS::QuickSight::Analysis.Layout`.
|
122227
122838
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-layout.html}
|
@@ -122254,6 +122865,7 @@ export type QuickSightAnalysisLegendOptions = {
|
|
122254
122865
|
Height?: string;
|
122255
122866
|
Position?: QuickSightAnalysisLegendPosition;
|
122256
122867
|
Title?: QuickSightAnalysisLabelOptions;
|
122868
|
+
ValueFontConfiguration?: QuickSightAnalysisFontConfiguration;
|
122257
122869
|
Visibility?: QuickSightAnalysisVisibility;
|
122258
122870
|
/**
|
122259
122871
|
* String based length that is composed of value and unit in px
|
@@ -122438,6 +123050,11 @@ export type QuickSightAnalysisLineChartVisual = {
|
|
122438
123050
|
ColumnHierarchies?: QuickSightAnalysisColumnHierarchy[];
|
122439
123051
|
Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
|
122440
123052
|
Title?: QuickSightAnalysisVisualTitleLabelOptions;
|
123053
|
+
/**
|
123054
|
+
* @minLength `1`
|
123055
|
+
* @maxLength `1024`
|
123056
|
+
*/
|
123057
|
+
VisualContentAltText?: string;
|
122441
123058
|
/**
|
122442
123059
|
* @minLength `1`
|
122443
123060
|
* @maxLength `512`
|
@@ -123293,6 +123910,11 @@ export type QuickSightAnalysisPieChartVisual = {
|
|
123293
123910
|
ColumnHierarchies?: QuickSightAnalysisColumnHierarchy[];
|
123294
123911
|
Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
|
123295
123912
|
Title?: QuickSightAnalysisVisualTitleLabelOptions;
|
123913
|
+
/**
|
123914
|
+
* @minLength `1`
|
123915
|
+
* @maxLength `1024`
|
123916
|
+
*/
|
123917
|
+
VisualContentAltText?: string;
|
123296
123918
|
/**
|
123297
123919
|
* @minLength `1`
|
123298
123920
|
* @maxLength `512`
|
@@ -123591,6 +124213,11 @@ export type QuickSightAnalysisPivotTableVisual = {
|
|
123591
124213
|
ConditionalFormatting?: QuickSightAnalysisPivotTableConditionalFormatting;
|
123592
124214
|
Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
|
123593
124215
|
Title?: QuickSightAnalysisVisualTitleLabelOptions;
|
124216
|
+
/**
|
124217
|
+
* @minLength `1`
|
124218
|
+
* @maxLength `1024`
|
124219
|
+
*/
|
124220
|
+
VisualContentAltText?: string;
|
123594
124221
|
/**
|
123595
124222
|
* @minLength `1`
|
123596
124223
|
* @maxLength `512`
|
@@ -123616,6 +124243,108 @@ export type QuickSightAnalysisPivotTotalOptions = {
|
|
123616
124243
|
TotalsVisibility?: QuickSightAnalysisVisibility;
|
123617
124244
|
ValueCellStyle?: QuickSightAnalysisTableCellStyle;
|
123618
124245
|
};
|
124246
|
+
/**
|
124247
|
+
* Type definition for `AWS::QuickSight::Analysis.PluginVisual`.
|
124248
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-pluginvisual.html}
|
124249
|
+
*/
|
124250
|
+
export type QuickSightAnalysisPluginVisual = {
|
124251
|
+
ChartConfiguration?: QuickSightAnalysisPluginVisualConfiguration;
|
124252
|
+
PluginArn: string;
|
124253
|
+
Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
|
124254
|
+
Title?: QuickSightAnalysisVisualTitleLabelOptions;
|
124255
|
+
/**
|
124256
|
+
* @minLength `1`
|
124257
|
+
* @maxLength `1024`
|
124258
|
+
*/
|
124259
|
+
VisualContentAltText?: string;
|
124260
|
+
/**
|
124261
|
+
* @minLength `1`
|
124262
|
+
* @maxLength `512`
|
124263
|
+
* @pattern `^[\w\-]+$`
|
124264
|
+
*/
|
124265
|
+
VisualId: string;
|
124266
|
+
};
|
124267
|
+
/**
|
124268
|
+
* Type definition for `AWS::QuickSight::Analysis.PluginVisualAxisName`.
|
124269
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-pluginvisualaxisname.html}
|
124270
|
+
*/
|
124271
|
+
export type QuickSightAnalysisPluginVisualAxisName = "GROUP_BY" | "VALUE";
|
124272
|
+
/**
|
124273
|
+
* Type definition for `AWS::QuickSight::Analysis.PluginVisualConfiguration`.
|
124274
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-pluginvisualconfiguration.html}
|
124275
|
+
*/
|
124276
|
+
export type QuickSightAnalysisPluginVisualConfiguration = {
|
124277
|
+
/**
|
124278
|
+
* @minLength `0`
|
124279
|
+
* @maxLength `10`
|
124280
|
+
*/
|
124281
|
+
FieldWells?: QuickSightAnalysisPluginVisualFieldWell[];
|
124282
|
+
SortConfiguration?: QuickSightAnalysisPluginVisualSortConfiguration;
|
124283
|
+
VisualOptions?: QuickSightAnalysisPluginVisualOptions;
|
124284
|
+
};
|
124285
|
+
/**
|
124286
|
+
* Type definition for `AWS::QuickSight::Analysis.PluginVisualFieldWell`.
|
124287
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-pluginvisualfieldwell.html}
|
124288
|
+
*/
|
124289
|
+
export type QuickSightAnalysisPluginVisualFieldWell = {
|
124290
|
+
AxisName?: QuickSightAnalysisPluginVisualAxisName;
|
124291
|
+
/**
|
124292
|
+
* @minLength `0`
|
124293
|
+
* @maxLength `200`
|
124294
|
+
*/
|
124295
|
+
Dimensions?: QuickSightAnalysisDimensionField[];
|
124296
|
+
/**
|
124297
|
+
* @minLength `0`
|
124298
|
+
* @maxLength `200`
|
124299
|
+
*/
|
124300
|
+
Measures?: QuickSightAnalysisMeasureField[];
|
124301
|
+
/**
|
124302
|
+
* @minLength `0`
|
124303
|
+
* @maxLength `200`
|
124304
|
+
*/
|
124305
|
+
Unaggregated?: QuickSightAnalysisUnaggregatedField[];
|
124306
|
+
};
|
124307
|
+
/**
|
124308
|
+
* Type definition for `AWS::QuickSight::Analysis.PluginVisualItemsLimitConfiguration`.
|
124309
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-pluginvisualitemslimitconfiguration.html}
|
124310
|
+
*/
|
124311
|
+
export type QuickSightAnalysisPluginVisualItemsLimitConfiguration = {
|
124312
|
+
ItemsLimit?: number;
|
124313
|
+
};
|
124314
|
+
/**
|
124315
|
+
* Type definition for `AWS::QuickSight::Analysis.PluginVisualOptions`.
|
124316
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-pluginvisualoptions.html}
|
124317
|
+
*/
|
124318
|
+
export type QuickSightAnalysisPluginVisualOptions = {
|
124319
|
+
VisualProperties?: QuickSightAnalysisPluginVisualProperty[];
|
124320
|
+
};
|
124321
|
+
/**
|
124322
|
+
* Type definition for `AWS::QuickSight::Analysis.PluginVisualProperty`.
|
124323
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-pluginvisualproperty.html}
|
124324
|
+
*/
|
124325
|
+
export type QuickSightAnalysisPluginVisualProperty = {
|
124326
|
+
Name?: string;
|
124327
|
+
Value?: string;
|
124328
|
+
};
|
124329
|
+
/**
|
124330
|
+
* Type definition for `AWS::QuickSight::Analysis.PluginVisualSortConfiguration`.
|
124331
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-pluginvisualsortconfiguration.html}
|
124332
|
+
*/
|
124333
|
+
export type QuickSightAnalysisPluginVisualSortConfiguration = {
|
124334
|
+
PluginVisualTableQuerySort?: QuickSightAnalysisPluginVisualTableQuerySort;
|
124335
|
+
};
|
124336
|
+
/**
|
124337
|
+
* Type definition for `AWS::QuickSight::Analysis.PluginVisualTableQuerySort`.
|
124338
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-pluginvisualtablequerysort.html}
|
124339
|
+
*/
|
124340
|
+
export type QuickSightAnalysisPluginVisualTableQuerySort = {
|
124341
|
+
ItemsLimitConfiguration?: QuickSightAnalysisPluginVisualItemsLimitConfiguration;
|
124342
|
+
/**
|
124343
|
+
* @minLength `0`
|
124344
|
+
* @maxLength `100`
|
124345
|
+
*/
|
124346
|
+
RowSort?: QuickSightAnalysisFieldSortOptions[];
|
124347
|
+
};
|
123619
124348
|
/**
|
123620
124349
|
* Type definition for `AWS::QuickSight::Analysis.PredefinedHierarchy`.
|
123621
124350
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-predefinedhierarchy.html}
|
@@ -123780,6 +124509,11 @@ export type QuickSightAnalysisRadarChartVisual = {
|
|
123780
124509
|
ColumnHierarchies?: QuickSightAnalysisColumnHierarchy[];
|
123781
124510
|
Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
|
123782
124511
|
Title?: QuickSightAnalysisVisualTitleLabelOptions;
|
124512
|
+
/**
|
124513
|
+
* @minLength `1`
|
124514
|
+
* @maxLength `1024`
|
124515
|
+
*/
|
124516
|
+
VisualContentAltText?: string;
|
123783
124517
|
/**
|
123784
124518
|
* @minLength `1`
|
123785
124519
|
* @maxLength `512`
|
@@ -124096,6 +124830,11 @@ export type QuickSightAnalysisSankeyDiagramVisual = {
|
|
124096
124830
|
ChartConfiguration?: QuickSightAnalysisSankeyDiagramChartConfiguration;
|
124097
124831
|
Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
|
124098
124832
|
Title?: QuickSightAnalysisVisualTitleLabelOptions;
|
124833
|
+
/**
|
124834
|
+
* @minLength `1`
|
124835
|
+
* @maxLength `1024`
|
124836
|
+
*/
|
124837
|
+
VisualContentAltText?: string;
|
124099
124838
|
/**
|
124100
124839
|
* @minLength `1`
|
124101
124840
|
* @maxLength `512`
|
@@ -124206,6 +124945,11 @@ export type QuickSightAnalysisScatterPlotVisual = {
|
|
124206
124945
|
ColumnHierarchies?: QuickSightAnalysisColumnHierarchy[];
|
124207
124946
|
Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
|
124208
124947
|
Title?: QuickSightAnalysisVisualTitleLabelOptions;
|
124948
|
+
/**
|
124949
|
+
* @minLength `1`
|
124950
|
+
* @maxLength `1024`
|
124951
|
+
*/
|
124952
|
+
VisualContentAltText?: string;
|
124209
124953
|
/**
|
124210
124954
|
* @minLength `1`
|
124211
124955
|
* @maxLength `512`
|
@@ -124367,6 +125111,11 @@ export type QuickSightAnalysisShapeConditionalFormat = {
|
|
124367
125111
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-sheet.html}
|
124368
125112
|
*/
|
124369
125113
|
export type QuickSightAnalysisSheet = {
|
125114
|
+
/**
|
125115
|
+
* @minLength `0`
|
125116
|
+
* @maxLength `10`
|
125117
|
+
*/
|
125118
|
+
Images?: QuickSightAnalysisSheetImage[];
|
124370
125119
|
/**
|
124371
125120
|
* <p>The name of a sheet. This name is displayed on the sheet's tab in the Amazon QuickSight
|
124372
125121
|
console.</p>
|
@@ -124444,6 +125193,11 @@ export type QuickSightAnalysisSheetDefinition = {
|
|
124444
125193
|
* @maxLength `200`
|
124445
125194
|
*/
|
124446
125195
|
FilterControls?: QuickSightAnalysisFilterControl[];
|
125196
|
+
/**
|
125197
|
+
* @minLength `0`
|
125198
|
+
* @maxLength `10`
|
125199
|
+
*/
|
125200
|
+
Images?: QuickSightAnalysisSheetImage[];
|
124447
125201
|
/**
|
124448
125202
|
* @minLength `1`
|
124449
125203
|
* @maxLength `1`
|
@@ -124505,6 +125259,82 @@ export type QuickSightAnalysisSheetElementRenderingRule = {
|
|
124505
125259
|
*/
|
124506
125260
|
Expression: string;
|
124507
125261
|
};
|
125262
|
+
/**
|
125263
|
+
* Type definition for `AWS::QuickSight::Analysis.SheetImage`.
|
125264
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-sheetimage.html}
|
125265
|
+
*/
|
125266
|
+
export type QuickSightAnalysisSheetImage = {
|
125267
|
+
/**
|
125268
|
+
* @minLength `0`
|
125269
|
+
* @maxLength `10`
|
125270
|
+
*/
|
125271
|
+
Actions?: QuickSightAnalysisImageCustomAction[];
|
125272
|
+
/**
|
125273
|
+
* @minLength `1`
|
125274
|
+
* @maxLength `1024`
|
125275
|
+
*/
|
125276
|
+
ImageContentAltText?: string;
|
125277
|
+
Interactions?: QuickSightAnalysisImageInteractionOptions;
|
125278
|
+
Scaling?: QuickSightAnalysisSheetImageScalingConfiguration;
|
125279
|
+
/**
|
125280
|
+
* @minLength `1`
|
125281
|
+
* @maxLength `512`
|
125282
|
+
* @pattern `^[\w\-]+$`
|
125283
|
+
*/
|
125284
|
+
SheetImageId: string;
|
125285
|
+
Source: QuickSightAnalysisSheetImageSource;
|
125286
|
+
Tooltip?: QuickSightAnalysisSheetImageTooltipConfiguration;
|
125287
|
+
};
|
125288
|
+
/**
|
125289
|
+
* Type definition for `AWS::QuickSight::Analysis.SheetImageScalingConfiguration`.
|
125290
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-sheetimagescalingconfiguration.html}
|
125291
|
+
*/
|
125292
|
+
export type QuickSightAnalysisSheetImageScalingConfiguration = {
|
125293
|
+
ScalingType?: QuickSightAnalysisSheetImageScalingType;
|
125294
|
+
};
|
125295
|
+
/**
|
125296
|
+
* Type definition for `AWS::QuickSight::Analysis.SheetImageScalingType`.
|
125297
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-sheetimagescalingtype.html}
|
125298
|
+
*/
|
125299
|
+
export type QuickSightAnalysisSheetImageScalingType = "SCALE_TO_WIDTH" | "SCALE_TO_HEIGHT" | "SCALE_TO_CONTAINER" | "SCALE_NONE";
|
125300
|
+
/**
|
125301
|
+
* Type definition for `AWS::QuickSight::Analysis.SheetImageSource`.
|
125302
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-sheetimagesource.html}
|
125303
|
+
*/
|
125304
|
+
export type QuickSightAnalysisSheetImageSource = {
|
125305
|
+
SheetImageStaticFileSource?: QuickSightAnalysisSheetImageStaticFileSource;
|
125306
|
+
};
|
125307
|
+
/**
|
125308
|
+
* Type definition for `AWS::QuickSight::Analysis.SheetImageStaticFileSource`.
|
125309
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-sheetimagestaticfilesource.html}
|
125310
|
+
*/
|
125311
|
+
export type QuickSightAnalysisSheetImageStaticFileSource = {
|
125312
|
+
/**
|
125313
|
+
* @minLength `1`
|
125314
|
+
* @maxLength `512`
|
125315
|
+
* @pattern `^[\w\-]+$`
|
125316
|
+
*/
|
125317
|
+
StaticFileId: string;
|
125318
|
+
};
|
125319
|
+
/**
|
125320
|
+
* Type definition for `AWS::QuickSight::Analysis.SheetImageTooltipConfiguration`.
|
125321
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-sheetimagetooltipconfiguration.html}
|
125322
|
+
*/
|
125323
|
+
export type QuickSightAnalysisSheetImageTooltipConfiguration = {
|
125324
|
+
TooltipText?: QuickSightAnalysisSheetImageTooltipText;
|
125325
|
+
Visibility?: QuickSightAnalysisVisibility;
|
125326
|
+
};
|
125327
|
+
/**
|
125328
|
+
* Type definition for `AWS::QuickSight::Analysis.SheetImageTooltipText`.
|
125329
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-sheetimagetooltiptext.html}
|
125330
|
+
*/
|
125331
|
+
export type QuickSightAnalysisSheetImageTooltipText = {
|
125332
|
+
/**
|
125333
|
+
* @minLength `1`
|
125334
|
+
* @maxLength `1024`
|
125335
|
+
*/
|
125336
|
+
PlainText?: string;
|
125337
|
+
};
|
124508
125338
|
/**
|
124509
125339
|
* Type definition for `AWS::QuickSight::Analysis.SheetTextBox`.
|
124510
125340
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-sheettextbox.html}
|
@@ -124665,11 +125495,56 @@ export type QuickSightAnalysisSpacing = {
|
|
124665
125495
|
*/
|
124666
125496
|
Top?: string;
|
124667
125497
|
};
|
125498
|
+
/**
|
125499
|
+
* Type definition for `AWS::QuickSight::Analysis.SpatialStaticFile`.
|
125500
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-spatialstaticfile.html}
|
125501
|
+
*/
|
125502
|
+
export type QuickSightAnalysisSpatialStaticFile = {
|
125503
|
+
Source?: QuickSightAnalysisStaticFileSource;
|
125504
|
+
/**
|
125505
|
+
* @minLength `1`
|
125506
|
+
* @maxLength `512`
|
125507
|
+
* @pattern `^[\w\-]+$`
|
125508
|
+
*/
|
125509
|
+
StaticFileId: string;
|
125510
|
+
};
|
124668
125511
|
/**
|
124669
125512
|
* Type definition for `AWS::QuickSight::Analysis.SpecialValue`.
|
124670
125513
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-specialvalue.html}
|
124671
125514
|
*/
|
124672
125515
|
export type QuickSightAnalysisSpecialValue = "EMPTY" | "NULL" | "OTHER";
|
125516
|
+
/**
|
125517
|
+
* Type definition for `AWS::QuickSight::Analysis.StaticFile`.
|
125518
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-staticfile.html}
|
125519
|
+
*/
|
125520
|
+
export type QuickSightAnalysisStaticFile = {
|
125521
|
+
ImageStaticFile?: QuickSightAnalysisImageStaticFile;
|
125522
|
+
SpatialStaticFile?: QuickSightAnalysisSpatialStaticFile;
|
125523
|
+
};
|
125524
|
+
/**
|
125525
|
+
* Type definition for `AWS::QuickSight::Analysis.StaticFileS3SourceOptions`.
|
125526
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-staticfiles3sourceoptions.html}
|
125527
|
+
*/
|
125528
|
+
export type QuickSightAnalysisStaticFileS3SourceOptions = {
|
125529
|
+
BucketName: string;
|
125530
|
+
ObjectKey: string;
|
125531
|
+
Region: string;
|
125532
|
+
};
|
125533
|
+
/**
|
125534
|
+
* Type definition for `AWS::QuickSight::Analysis.StaticFileSource`.
|
125535
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-staticfilesource.html}
|
125536
|
+
*/
|
125537
|
+
export type QuickSightAnalysisStaticFileSource = {
|
125538
|
+
S3Options?: QuickSightAnalysisStaticFileS3SourceOptions;
|
125539
|
+
UrlOptions?: QuickSightAnalysisStaticFileUrlSourceOptions;
|
125540
|
+
};
|
125541
|
+
/**
|
125542
|
+
* Type definition for `AWS::QuickSight::Analysis.StaticFileUrlSourceOptions`.
|
125543
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-staticfileurlsourceoptions.html}
|
125544
|
+
*/
|
125545
|
+
export type QuickSightAnalysisStaticFileUrlSourceOptions = {
|
125546
|
+
Url: string;
|
125547
|
+
};
|
124673
125548
|
/**
|
124674
125549
|
* Type definition for `AWS::QuickSight::Analysis.StringDefaultValues`.
|
124675
125550
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-stringdefaultvalues.html}
|
@@ -125092,6 +125967,11 @@ export type QuickSightAnalysisTableVisual = {
|
|
125092
125967
|
ConditionalFormatting?: QuickSightAnalysisTableConditionalFormatting;
|
125093
125968
|
Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
|
125094
125969
|
Title?: QuickSightAnalysisVisualTitleLabelOptions;
|
125970
|
+
/**
|
125971
|
+
* @minLength `1`
|
125972
|
+
* @maxLength `1024`
|
125973
|
+
*/
|
125974
|
+
VisualContentAltText?: string;
|
125095
125975
|
/**
|
125096
125976
|
* @minLength `1`
|
125097
125977
|
* @maxLength `512`
|
@@ -125502,6 +126382,11 @@ export type QuickSightAnalysisTreeMapVisual = {
|
|
125502
126382
|
ColumnHierarchies?: QuickSightAnalysisColumnHierarchy[];
|
125503
126383
|
Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
|
125504
126384
|
Title?: QuickSightAnalysisVisualTitleLabelOptions;
|
126385
|
+
/**
|
126386
|
+
* @minLength `1`
|
126387
|
+
* @maxLength `1024`
|
126388
|
+
*/
|
126389
|
+
VisualContentAltText?: string;
|
125505
126390
|
/**
|
125506
126391
|
* @minLength `1`
|
125507
126392
|
* @maxLength `512`
|
@@ -125601,9 +126486,11 @@ export type QuickSightAnalysisVisual = {
|
|
125601
126486
|
HistogramVisual?: QuickSightAnalysisHistogramVisual;
|
125602
126487
|
InsightVisual?: QuickSightAnalysisInsightVisual;
|
125603
126488
|
KPIVisual?: QuickSightAnalysisKPIVisual;
|
126489
|
+
LayerMapVisual?: QuickSightAnalysisLayerMapVisual;
|
125604
126490
|
LineChartVisual?: QuickSightAnalysisLineChartVisual;
|
125605
126491
|
PieChartVisual?: QuickSightAnalysisPieChartVisual;
|
125606
126492
|
PivotTableVisual?: QuickSightAnalysisPivotTableVisual;
|
126493
|
+
PluginVisual?: QuickSightAnalysisPluginVisual;
|
125607
126494
|
RadarChartVisual?: QuickSightAnalysisRadarChartVisual;
|
125608
126495
|
SankeyDiagramVisual?: QuickSightAnalysisSankeyDiagramVisual;
|
125609
126496
|
ScatterPlotVisual?: QuickSightAnalysisScatterPlotVisual;
|
@@ -125789,6 +126676,11 @@ export type QuickSightAnalysisWaterfallVisual = {
|
|
125789
126676
|
ColumnHierarchies?: QuickSightAnalysisColumnHierarchy[];
|
125790
126677
|
Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
|
125791
126678
|
Title?: QuickSightAnalysisVisualTitleLabelOptions;
|
126679
|
+
/**
|
126680
|
+
* @minLength `1`
|
126681
|
+
* @maxLength `1024`
|
126682
|
+
*/
|
126683
|
+
VisualContentAltText?: string;
|
125792
126684
|
/**
|
125793
126685
|
* @minLength `1`
|
125794
126686
|
* @maxLength `512`
|
@@ -125902,6 +126794,11 @@ export type QuickSightAnalysisWordCloudVisual = {
|
|
125902
126794
|
ColumnHierarchies?: QuickSightAnalysisColumnHierarchy[];
|
125903
126795
|
Subtitle?: QuickSightAnalysisVisualSubtitleLabelOptions;
|
125904
126796
|
Title?: QuickSightAnalysisVisualTitleLabelOptions;
|
126797
|
+
/**
|
126798
|
+
* @minLength `1`
|
126799
|
+
* @maxLength `1024`
|
126800
|
+
*/
|
126801
|
+
VisualContentAltText?: string;
|
125905
126802
|
/**
|
125906
126803
|
* @minLength `1`
|
125907
126804
|
* @maxLength `512`
|
@@ -126078,6 +126975,154 @@ export type QuickSightDashboardAttributes = {
|
|
126078
126975
|
* @maxLength `20`
|
126079
126976
|
*/
|
126080
126977
|
Sheets: {
|
126978
|
+
/**
|
126979
|
+
* @minLength `0`
|
126980
|
+
* @maxLength `10`
|
126981
|
+
*/
|
126982
|
+
Images: {
|
126983
|
+
/**
|
126984
|
+
* @minLength `0`
|
126985
|
+
* @maxLength `10`
|
126986
|
+
*/
|
126987
|
+
Actions: {
|
126988
|
+
/**
|
126989
|
+
* @minLength `1`
|
126990
|
+
* @maxLength `2`
|
126991
|
+
*/
|
126992
|
+
ActionOperations: {
|
126993
|
+
NavigationOperation: {
|
126994
|
+
LocalNavigationConfiguration: {
|
126995
|
+
/**
|
126996
|
+
* @minLength `1`
|
126997
|
+
* @maxLength `512`
|
126998
|
+
* @pattern `^[\w\-]+$`
|
126999
|
+
*/
|
127000
|
+
TargetSheetId: string;
|
127001
|
+
};
|
127002
|
+
};
|
127003
|
+
SetParametersOperation: {
|
127004
|
+
/**
|
127005
|
+
* @minLength `1`
|
127006
|
+
* @maxLength `200`
|
127007
|
+
*/
|
127008
|
+
ParameterValueConfigurations: {
|
127009
|
+
/**
|
127010
|
+
* @minLength `1`
|
127011
|
+
* @maxLength `2048`
|
127012
|
+
* @pattern `^[a-zA-Z0-9]+$`
|
127013
|
+
*/
|
127014
|
+
DestinationParameterName: string;
|
127015
|
+
Value: {
|
127016
|
+
CustomValuesConfiguration: {
|
127017
|
+
CustomValues: {
|
127018
|
+
/**
|
127019
|
+
* @minLength `0`
|
127020
|
+
* @maxLength `50000`
|
127021
|
+
*/
|
127022
|
+
DateTimeValues: string[];
|
127023
|
+
/**
|
127024
|
+
* @minLength `0`
|
127025
|
+
* @maxLength `50000`
|
127026
|
+
*/
|
127027
|
+
DecimalValues: number[];
|
127028
|
+
/**
|
127029
|
+
* @minLength `0`
|
127030
|
+
* @maxLength `50000`
|
127031
|
+
*/
|
127032
|
+
IntegerValues: number[];
|
127033
|
+
/**
|
127034
|
+
* @minLength `0`
|
127035
|
+
* @maxLength `50000`
|
127036
|
+
*/
|
127037
|
+
StringValues: string[];
|
127038
|
+
};
|
127039
|
+
IncludeNullValue: boolean;
|
127040
|
+
};
|
127041
|
+
SelectAllValueOptions: QuickSightDashboardSelectAllValueOptions;
|
127042
|
+
SourceColumn: {
|
127043
|
+
/**
|
127044
|
+
* @minLength `1`
|
127045
|
+
* @maxLength `127`
|
127046
|
+
*/
|
127047
|
+
ColumnName: string;
|
127048
|
+
/**
|
127049
|
+
* @minLength `1`
|
127050
|
+
* @maxLength `2048`
|
127051
|
+
*/
|
127052
|
+
DataSetIdentifier: string;
|
127053
|
+
};
|
127054
|
+
/**
|
127055
|
+
* @minLength `1`
|
127056
|
+
* @maxLength `512`
|
127057
|
+
*/
|
127058
|
+
SourceField: string;
|
127059
|
+
SourceParameterName: string;
|
127060
|
+
};
|
127061
|
+
}[];
|
127062
|
+
};
|
127063
|
+
URLOperation: {
|
127064
|
+
URLTarget: QuickSightDashboardURLTargetConfiguration;
|
127065
|
+
/**
|
127066
|
+
* @minLength `1`
|
127067
|
+
* @maxLength `2048`
|
127068
|
+
*/
|
127069
|
+
URLTemplate: string;
|
127070
|
+
};
|
127071
|
+
}[];
|
127072
|
+
/**
|
127073
|
+
* @minLength `1`
|
127074
|
+
* @maxLength `512`
|
127075
|
+
* @pattern `^[\w\-]+$`
|
127076
|
+
*/
|
127077
|
+
CustomActionId: string;
|
127078
|
+
/**
|
127079
|
+
* @minLength `1`
|
127080
|
+
* @maxLength `256`
|
127081
|
+
*/
|
127082
|
+
Name: string;
|
127083
|
+
Status: QuickSightDashboardWidgetStatus;
|
127084
|
+
Trigger: QuickSightDashboardImageCustomActionTrigger;
|
127085
|
+
}[];
|
127086
|
+
/**
|
127087
|
+
* @minLength `1`
|
127088
|
+
* @maxLength `1024`
|
127089
|
+
*/
|
127090
|
+
ImageContentAltText: string;
|
127091
|
+
Interactions: {
|
127092
|
+
ImageMenuOption: {
|
127093
|
+
AvailabilityStatus: QuickSightDashboardDashboardBehavior;
|
127094
|
+
};
|
127095
|
+
};
|
127096
|
+
Scaling: {
|
127097
|
+
ScalingType: QuickSightDashboardSheetImageScalingType;
|
127098
|
+
};
|
127099
|
+
/**
|
127100
|
+
* @minLength `1`
|
127101
|
+
* @maxLength `512`
|
127102
|
+
* @pattern `^[\w\-]+$`
|
127103
|
+
*/
|
127104
|
+
SheetImageId: string;
|
127105
|
+
Source: {
|
127106
|
+
SheetImageStaticFileSource: {
|
127107
|
+
/**
|
127108
|
+
* @minLength `1`
|
127109
|
+
* @maxLength `512`
|
127110
|
+
* @pattern `^[\w\-]+$`
|
127111
|
+
*/
|
127112
|
+
StaticFileId: string;
|
127113
|
+
};
|
127114
|
+
};
|
127115
|
+
Tooltip: {
|
127116
|
+
TooltipText: {
|
127117
|
+
/**
|
127118
|
+
* @minLength `1`
|
127119
|
+
* @maxLength `1024`
|
127120
|
+
*/
|
127121
|
+
PlainText: string;
|
127122
|
+
};
|
127123
|
+
Visibility: QuickSightDashboardVisibility;
|
127124
|
+
};
|
127125
|
+
}[];
|
126081
127126
|
/**
|
126082
127127
|
* <p>The name of a sheet. This name is displayed on the sheet's tab in the Amazon QuickSight
|
126083
127128
|
console.</p>
|
@@ -126434,6 +127479,11 @@ export type QuickSightDashboardBarChartVisual = {
|
|
126434
127479
|
ColumnHierarchies?: QuickSightDashboardColumnHierarchy[];
|
126435
127480
|
Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
|
126436
127481
|
Title?: QuickSightDashboardVisualTitleLabelOptions;
|
127482
|
+
/**
|
127483
|
+
* @minLength `1`
|
127484
|
+
* @maxLength `1024`
|
127485
|
+
*/
|
127486
|
+
VisualContentAltText?: string;
|
126437
127487
|
/**
|
126438
127488
|
* @minLength `1`
|
126439
127489
|
* @maxLength `512`
|
@@ -126593,6 +127643,11 @@ export type QuickSightDashboardBoxPlotVisual = {
|
|
126593
127643
|
ColumnHierarchies?: QuickSightDashboardColumnHierarchy[];
|
126594
127644
|
Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
|
126595
127645
|
Title?: QuickSightDashboardVisualTitleLabelOptions;
|
127646
|
+
/**
|
127647
|
+
* @minLength `1`
|
127648
|
+
* @maxLength `1024`
|
127649
|
+
*/
|
127650
|
+
VisualContentAltText?: string;
|
126596
127651
|
/**
|
126597
127652
|
* @minLength `1`
|
126598
127653
|
* @maxLength `512`
|
@@ -126960,6 +128015,11 @@ export type QuickSightDashboardComboChartVisual = {
|
|
126960
128015
|
ColumnHierarchies?: QuickSightDashboardColumnHierarchy[];
|
126961
128016
|
Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
|
126962
128017
|
Title?: QuickSightDashboardVisualTitleLabelOptions;
|
128018
|
+
/**
|
128019
|
+
* @minLength `1`
|
128020
|
+
* @maxLength `1024`
|
128021
|
+
*/
|
128022
|
+
VisualContentAltText?: string;
|
126963
128023
|
/**
|
126964
128024
|
* @minLength `1`
|
126965
128025
|
* @maxLength `512`
|
@@ -127250,6 +128310,11 @@ export type QuickSightDashboardCustomContentVisual = {
|
|
127250
128310
|
DataSetIdentifier: string;
|
127251
128311
|
Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
|
127252
128312
|
Title?: QuickSightDashboardVisualTitleLabelOptions;
|
128313
|
+
/**
|
128314
|
+
* @minLength `1`
|
128315
|
+
* @maxLength `1024`
|
128316
|
+
*/
|
128317
|
+
VisualContentAltText?: string;
|
127253
128318
|
/**
|
127254
128319
|
* @minLength `1`
|
127255
128320
|
* @maxLength `512`
|
@@ -127532,6 +128597,11 @@ export type QuickSightDashboardDashboardVersionDefinition = {
|
|
127532
128597
|
* @maxLength `20`
|
127533
128598
|
*/
|
127534
128599
|
Sheets?: QuickSightDashboardSheetDefinition[];
|
128600
|
+
/**
|
128601
|
+
* @minLength `0`
|
128602
|
+
* @maxLength `200`
|
128603
|
+
*/
|
128604
|
+
StaticFiles?: QuickSightDashboardStaticFile[];
|
127535
128605
|
};
|
127536
128606
|
/**
|
127537
128607
|
* Type definition for `AWS::QuickSight::Dashboard.DashboardVisualPublishOptions`.
|
@@ -128425,6 +129495,11 @@ export type QuickSightDashboardFilledMapVisual = {
|
|
128425
129495
|
ConditionalFormatting?: QuickSightDashboardFilledMapConditionalFormatting;
|
128426
129496
|
Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
|
128427
129497
|
Title?: QuickSightDashboardVisualTitleLabelOptions;
|
129498
|
+
/**
|
129499
|
+
* @minLength `1`
|
129500
|
+
* @maxLength `1024`
|
129501
|
+
*/
|
129502
|
+
VisualContentAltText?: string;
|
128428
129503
|
/**
|
128429
129504
|
* @minLength `1`
|
128430
129505
|
* @maxLength `512`
|
@@ -128778,6 +129853,10 @@ export type QuickSightDashboardFontDecoration = "UNDERLINE" | "NONE";
|
|
128778
129853
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-fontsize.html}
|
128779
129854
|
*/
|
128780
129855
|
export type QuickSightDashboardFontSize = {
|
129856
|
+
/**
|
129857
|
+
* String based length that is composed of value and unit in px
|
129858
|
+
*/
|
129859
|
+
Absolute?: string;
|
128781
129860
|
Relative?: QuickSightDashboardRelativeFontSize;
|
128782
129861
|
};
|
128783
129862
|
/**
|
@@ -129053,6 +130132,11 @@ export type QuickSightDashboardFunnelChartVisual = {
|
|
129053
130132
|
ColumnHierarchies?: QuickSightDashboardColumnHierarchy[];
|
129054
130133
|
Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
|
129055
130134
|
Title?: QuickSightDashboardVisualTitleLabelOptions;
|
130135
|
+
/**
|
130136
|
+
* @minLength `1`
|
130137
|
+
* @maxLength `1024`
|
130138
|
+
*/
|
130139
|
+
VisualContentAltText?: string;
|
129056
130140
|
/**
|
129057
130141
|
* @minLength `1`
|
129058
130142
|
* @maxLength `512`
|
@@ -129146,6 +130230,11 @@ export type QuickSightDashboardGaugeChartVisual = {
|
|
129146
130230
|
ConditionalFormatting?: QuickSightDashboardGaugeChartConditionalFormatting;
|
129147
130231
|
Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
|
129148
130232
|
Title?: QuickSightDashboardVisualTitleLabelOptions;
|
130233
|
+
/**
|
130234
|
+
* @minLength `1`
|
130235
|
+
* @maxLength `1024`
|
130236
|
+
*/
|
130237
|
+
VisualContentAltText?: string;
|
129149
130238
|
/**
|
129150
130239
|
* @minLength `1`
|
129151
130240
|
* @maxLength `512`
|
@@ -129153,6 +130242,69 @@ export type QuickSightDashboardGaugeChartVisual = {
|
|
129153
130242
|
*/
|
129154
130243
|
VisualId: string;
|
129155
130244
|
};
|
130245
|
+
/**
|
130246
|
+
* Type definition for `AWS::QuickSight::Dashboard.GeospatialCategoricalColor`.
|
130247
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialcategoricalcolor.html}
|
130248
|
+
*/
|
130249
|
+
export type QuickSightDashboardGeospatialCategoricalColor = {
|
130250
|
+
CategoryDataColors: QuickSightDashboardGeospatialCategoricalDataColor[];
|
130251
|
+
/**
|
130252
|
+
* @min `0`
|
130253
|
+
* @max `1`
|
130254
|
+
*/
|
130255
|
+
DefaultOpacity?: number;
|
130256
|
+
NullDataSettings?: QuickSightDashboardGeospatialNullDataSettings;
|
130257
|
+
NullDataVisibility?: QuickSightDashboardVisibility;
|
130258
|
+
};
|
130259
|
+
/**
|
130260
|
+
* Type definition for `AWS::QuickSight::Dashboard.GeospatialCategoricalDataColor`.
|
130261
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialcategoricaldatacolor.html}
|
130262
|
+
*/
|
130263
|
+
export type QuickSightDashboardGeospatialCategoricalDataColor = {
|
130264
|
+
/**
|
130265
|
+
* @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
|
130266
|
+
*/
|
130267
|
+
Color: string;
|
130268
|
+
DataValue: string;
|
130269
|
+
};
|
130270
|
+
/**
|
130271
|
+
* Type definition for `AWS::QuickSight::Dashboard.GeospatialCircleRadius`.
|
130272
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialcircleradius.html}
|
130273
|
+
*/
|
130274
|
+
export type QuickSightDashboardGeospatialCircleRadius = {
|
130275
|
+
/**
|
130276
|
+
* @min `0`
|
130277
|
+
*/
|
130278
|
+
Radius?: number;
|
130279
|
+
};
|
130280
|
+
/**
|
130281
|
+
* Type definition for `AWS::QuickSight::Dashboard.GeospatialCircleSymbolStyle`.
|
130282
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialcirclesymbolstyle.html}
|
130283
|
+
*/
|
130284
|
+
export type QuickSightDashboardGeospatialCircleSymbolStyle = {
|
130285
|
+
CircleRadius?: QuickSightDashboardGeospatialCircleRadius;
|
130286
|
+
FillColor?: QuickSightDashboardGeospatialColor;
|
130287
|
+
StrokeColor?: QuickSightDashboardGeospatialColor;
|
130288
|
+
StrokeWidth?: QuickSightDashboardGeospatialLineWidth;
|
130289
|
+
};
|
130290
|
+
/**
|
130291
|
+
* Type definition for `AWS::QuickSight::Dashboard.GeospatialColor`.
|
130292
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialcolor.html}
|
130293
|
+
*/
|
130294
|
+
export type QuickSightDashboardGeospatialColor = {
|
130295
|
+
Categorical?: QuickSightDashboardGeospatialCategoricalColor;
|
130296
|
+
Gradient?: QuickSightDashboardGeospatialGradientColor;
|
130297
|
+
/**
|
130298
|
+
* Describes the properties for a solid color
|
130299
|
+
*/
|
130300
|
+
Solid?: QuickSightDashboardGeospatialSolidColor;
|
130301
|
+
};
|
130302
|
+
/**
|
130303
|
+
* Type definition for `AWS::QuickSight::Dashboard.GeospatialColorState`.
|
130304
|
+
* Defines view state of the color
|
130305
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialcolorstate.html}
|
130306
|
+
*/
|
130307
|
+
export type QuickSightDashboardGeospatialColorState = "ENABLED" | "DISABLED";
|
129156
130308
|
/**
|
129157
130309
|
* Type definition for `AWS::QuickSight::Dashboard.GeospatialCoordinateBounds`.
|
129158
130310
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialcoordinatebounds.html}
|
@@ -129179,6 +130331,42 @@ export type QuickSightDashboardGeospatialCoordinateBounds = {
|
|
129179
130331
|
*/
|
129180
130332
|
West: number;
|
129181
130333
|
};
|
130334
|
+
/**
|
130335
|
+
* Type definition for `AWS::QuickSight::Dashboard.GeospatialDataSourceItem`.
|
130336
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialdatasourceitem.html}
|
130337
|
+
*/
|
130338
|
+
export type QuickSightDashboardGeospatialDataSourceItem = {
|
130339
|
+
StaticFileDataSource?: QuickSightDashboardGeospatialStaticFileSource;
|
130340
|
+
};
|
130341
|
+
/**
|
130342
|
+
* Type definition for `AWS::QuickSight::Dashboard.GeospatialGradientColor`.
|
130343
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialgradientcolor.html}
|
130344
|
+
*/
|
130345
|
+
export type QuickSightDashboardGeospatialGradientColor = {
|
130346
|
+
/**
|
130347
|
+
* @min `0`
|
130348
|
+
* @max `1`
|
130349
|
+
*/
|
130350
|
+
DefaultOpacity?: number;
|
130351
|
+
NullDataSettings?: QuickSightDashboardGeospatialNullDataSettings;
|
130352
|
+
NullDataVisibility?: QuickSightDashboardVisibility;
|
130353
|
+
/**
|
130354
|
+
* @minLength `2`
|
130355
|
+
* @maxLength `3`
|
130356
|
+
*/
|
130357
|
+
StepColors: QuickSightDashboardGeospatialGradientStepColor[];
|
130358
|
+
};
|
130359
|
+
/**
|
130360
|
+
* Type definition for `AWS::QuickSight::Dashboard.GeospatialGradientStepColor`.
|
130361
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialgradientstepcolor.html}
|
130362
|
+
*/
|
130363
|
+
export type QuickSightDashboardGeospatialGradientStepColor = {
|
130364
|
+
/**
|
130365
|
+
* @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
|
130366
|
+
*/
|
130367
|
+
Color: string;
|
130368
|
+
DataValue: number;
|
130369
|
+
};
|
129182
130370
|
/**
|
129183
130371
|
* Type definition for `AWS::QuickSight::Dashboard.GeospatialHeatmapColorScale`.
|
129184
130372
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialheatmapcolorscale.html}
|
@@ -129207,6 +130395,107 @@ export type QuickSightDashboardGeospatialHeatmapDataColor = {
|
|
129207
130395
|
*/
|
129208
130396
|
Color: string;
|
129209
130397
|
};
|
130398
|
+
/**
|
130399
|
+
* Type definition for `AWS::QuickSight::Dashboard.GeospatialLayerColorField`.
|
130400
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallayercolorfield.html}
|
130401
|
+
*/
|
130402
|
+
export type QuickSightDashboardGeospatialLayerColorField = {
|
130403
|
+
/**
|
130404
|
+
* @minLength `0`
|
130405
|
+
* @maxLength `1`
|
130406
|
+
*/
|
130407
|
+
ColorDimensionsFields?: QuickSightDashboardDimensionField[];
|
130408
|
+
/**
|
130409
|
+
* @minLength `0`
|
130410
|
+
* @maxLength `1`
|
130411
|
+
*/
|
130412
|
+
ColorValuesFields?: QuickSightDashboardMeasureField[];
|
130413
|
+
};
|
130414
|
+
/**
|
130415
|
+
* Type definition for `AWS::QuickSight::Dashboard.GeospatialLayerDefinition`.
|
130416
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallayerdefinition.html}
|
130417
|
+
*/
|
130418
|
+
export type QuickSightDashboardGeospatialLayerDefinition = {
|
130419
|
+
LineLayer?: QuickSightDashboardGeospatialLineLayer;
|
130420
|
+
PointLayer?: QuickSightDashboardGeospatialPointLayer;
|
130421
|
+
PolygonLayer?: QuickSightDashboardGeospatialPolygonLayer;
|
130422
|
+
};
|
130423
|
+
/**
|
130424
|
+
* Type definition for `AWS::QuickSight::Dashboard.GeospatialLayerItem`.
|
130425
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallayeritem.html}
|
130426
|
+
*/
|
130427
|
+
export type QuickSightDashboardGeospatialLayerItem = {
|
130428
|
+
/**
|
130429
|
+
* @minLength `0`
|
130430
|
+
* @maxLength `10`
|
130431
|
+
*/
|
130432
|
+
Actions?: QuickSightDashboardLayerCustomAction[];
|
130433
|
+
DataSource?: QuickSightDashboardGeospatialDataSourceItem;
|
130434
|
+
JoinDefinition?: QuickSightDashboardGeospatialLayerJoinDefinition;
|
130435
|
+
Label?: string;
|
130436
|
+
LayerDefinition?: QuickSightDashboardGeospatialLayerDefinition;
|
130437
|
+
LayerId: string;
|
130438
|
+
LayerType?: QuickSightDashboardGeospatialLayerType;
|
130439
|
+
Tooltip?: QuickSightDashboardTooltipOptions;
|
130440
|
+
Visibility?: QuickSightDashboardVisibility;
|
130441
|
+
};
|
130442
|
+
/**
|
130443
|
+
* Type definition for `AWS::QuickSight::Dashboard.GeospatialLayerJoinDefinition`.
|
130444
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallayerjoindefinition.html}
|
130445
|
+
*/
|
130446
|
+
export type QuickSightDashboardGeospatialLayerJoinDefinition = {
|
130447
|
+
ColorField?: QuickSightDashboardGeospatialLayerColorField;
|
130448
|
+
DatasetKeyField?: QuickSightDashboardUnaggregatedField;
|
130449
|
+
ShapeKeyField?: string;
|
130450
|
+
};
|
130451
|
+
/**
|
130452
|
+
* Type definition for `AWS::QuickSight::Dashboard.GeospatialLayerMapConfiguration`.
|
130453
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallayermapconfiguration.html}
|
130454
|
+
*/
|
130455
|
+
export type QuickSightDashboardGeospatialLayerMapConfiguration = {
|
130456
|
+
Interactions?: unknown;
|
130457
|
+
Legend?: QuickSightDashboardLegendOptions;
|
130458
|
+
MapLayers?: QuickSightDashboardGeospatialLayerItem[];
|
130459
|
+
MapState?: QuickSightDashboardGeospatialMapState;
|
130460
|
+
MapStyle?: QuickSightDashboardGeospatialMapStyle;
|
130461
|
+
};
|
130462
|
+
/**
|
130463
|
+
* Type definition for `AWS::QuickSight::Dashboard.GeospatialLayerType`.
|
130464
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallayertype.html}
|
130465
|
+
*/
|
130466
|
+
export type QuickSightDashboardGeospatialLayerType = "POINT" | "LINE" | "POLYGON";
|
130467
|
+
/**
|
130468
|
+
* Type definition for `AWS::QuickSight::Dashboard.GeospatialLineLayer`.
|
130469
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallinelayer.html}
|
130470
|
+
*/
|
130471
|
+
export type QuickSightDashboardGeospatialLineLayer = {
|
130472
|
+
Style: QuickSightDashboardGeospatialLineStyle;
|
130473
|
+
};
|
130474
|
+
/**
|
130475
|
+
* Type definition for `AWS::QuickSight::Dashboard.GeospatialLineStyle`.
|
130476
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallinestyle.html}
|
130477
|
+
*/
|
130478
|
+
export type QuickSightDashboardGeospatialLineStyle = {
|
130479
|
+
LineSymbolStyle?: QuickSightDashboardGeospatialLineSymbolStyle;
|
130480
|
+
};
|
130481
|
+
/**
|
130482
|
+
* Type definition for `AWS::QuickSight::Dashboard.GeospatialLineSymbolStyle`.
|
130483
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallinesymbolstyle.html}
|
130484
|
+
*/
|
130485
|
+
export type QuickSightDashboardGeospatialLineSymbolStyle = {
|
130486
|
+
FillColor?: QuickSightDashboardGeospatialColor;
|
130487
|
+
LineWidth?: QuickSightDashboardGeospatialLineWidth;
|
130488
|
+
};
|
130489
|
+
/**
|
130490
|
+
* Type definition for `AWS::QuickSight::Dashboard.GeospatialLineWidth`.
|
130491
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallinewidth.html}
|
130492
|
+
*/
|
130493
|
+
export type QuickSightDashboardGeospatialLineWidth = {
|
130494
|
+
/**
|
130495
|
+
* @min `0`
|
130496
|
+
*/
|
130497
|
+
LineWidth?: number;
|
130498
|
+
};
|
129210
130499
|
/**
|
129211
130500
|
* Type definition for `AWS::QuickSight::Dashboard.GeospatialMapAggregatedFieldWells`.
|
129212
130501
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialmapaggregatedfieldwells.html}
|
@@ -129234,6 +130523,7 @@ export type QuickSightDashboardGeospatialMapAggregatedFieldWells = {
|
|
129234
130523
|
*/
|
129235
130524
|
export type QuickSightDashboardGeospatialMapConfiguration = {
|
129236
130525
|
FieldWells?: QuickSightDashboardGeospatialMapFieldWells;
|
130526
|
+
Interactions?: unknown;
|
129237
130527
|
Legend?: QuickSightDashboardLegendOptions;
|
129238
130528
|
MapStyleOptions?: QuickSightDashboardGeospatialMapStyleOptions;
|
129239
130529
|
PointStyleOptions?: QuickSightDashboardGeospatialPointStyleOptions;
|
@@ -129248,6 +130538,31 @@ export type QuickSightDashboardGeospatialMapConfiguration = {
|
|
129248
130538
|
export type QuickSightDashboardGeospatialMapFieldWells = {
|
129249
130539
|
GeospatialMapAggregatedFieldWells?: QuickSightDashboardGeospatialMapAggregatedFieldWells;
|
129250
130540
|
};
|
130541
|
+
/**
|
130542
|
+
* Type definition for `AWS::QuickSight::Dashboard.GeospatialMapNavigation`.
|
130543
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialmapnavigation.html}
|
130544
|
+
*/
|
130545
|
+
export type QuickSightDashboardGeospatialMapNavigation = "ENABLED" | "DISABLED";
|
130546
|
+
/**
|
130547
|
+
* Type definition for `AWS::QuickSight::Dashboard.GeospatialMapState`.
|
130548
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialmapstate.html}
|
130549
|
+
*/
|
130550
|
+
export type QuickSightDashboardGeospatialMapState = {
|
130551
|
+
Bounds?: QuickSightDashboardGeospatialCoordinateBounds;
|
130552
|
+
MapNavigation?: QuickSightDashboardGeospatialMapNavigation;
|
130553
|
+
};
|
130554
|
+
/**
|
130555
|
+
* Type definition for `AWS::QuickSight::Dashboard.GeospatialMapStyle`.
|
130556
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialmapstyle.html}
|
130557
|
+
*/
|
130558
|
+
export type QuickSightDashboardGeospatialMapStyle = {
|
130559
|
+
/**
|
130560
|
+
* @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
|
130561
|
+
*/
|
130562
|
+
BackgroundColor?: string;
|
130563
|
+
BaseMapStyle?: QuickSightDashboardBaseMapStyleType;
|
130564
|
+
BaseMapVisibility?: QuickSightDashboardVisibility;
|
130565
|
+
};
|
129251
130566
|
/**
|
129252
130567
|
* Type definition for `AWS::QuickSight::Dashboard.GeospatialMapStyleOptions`.
|
129253
130568
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialmapstyleoptions.html}
|
@@ -129273,6 +130588,11 @@ export type QuickSightDashboardGeospatialMapVisual = {
|
|
129273
130588
|
ColumnHierarchies?: QuickSightDashboardColumnHierarchy[];
|
129274
130589
|
Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
|
129275
130590
|
Title?: QuickSightDashboardVisualTitleLabelOptions;
|
130591
|
+
/**
|
130592
|
+
* @minLength `1`
|
130593
|
+
* @maxLength `1024`
|
130594
|
+
*/
|
130595
|
+
VisualContentAltText?: string;
|
129276
130596
|
/**
|
129277
130597
|
* @minLength `1`
|
129278
130598
|
* @maxLength `512`
|
@@ -129280,6 +130600,45 @@ export type QuickSightDashboardGeospatialMapVisual = {
|
|
129280
130600
|
*/
|
129281
130601
|
VisualId: string;
|
129282
130602
|
};
|
130603
|
+
/**
|
130604
|
+
* Type definition for `AWS::QuickSight::Dashboard.GeospatialNullDataSettings`.
|
130605
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialnulldatasettings.html}
|
130606
|
+
*/
|
130607
|
+
export type QuickSightDashboardGeospatialNullDataSettings = {
|
130608
|
+
SymbolStyle: QuickSightDashboardGeospatialNullSymbolStyle;
|
130609
|
+
};
|
130610
|
+
/**
|
130611
|
+
* Type definition for `AWS::QuickSight::Dashboard.GeospatialNullSymbolStyle`.
|
130612
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialnullsymbolstyle.html}
|
130613
|
+
*/
|
130614
|
+
export type QuickSightDashboardGeospatialNullSymbolStyle = {
|
130615
|
+
/**
|
130616
|
+
* @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
|
130617
|
+
*/
|
130618
|
+
FillColor?: string;
|
130619
|
+
/**
|
130620
|
+
* @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
|
130621
|
+
*/
|
130622
|
+
StrokeColor?: string;
|
130623
|
+
/**
|
130624
|
+
* @min `0`
|
130625
|
+
*/
|
130626
|
+
StrokeWidth?: number;
|
130627
|
+
};
|
130628
|
+
/**
|
130629
|
+
* Type definition for `AWS::QuickSight::Dashboard.GeospatialPointLayer`.
|
130630
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialpointlayer.html}
|
130631
|
+
*/
|
130632
|
+
export type QuickSightDashboardGeospatialPointLayer = {
|
130633
|
+
Style: QuickSightDashboardGeospatialPointStyle;
|
130634
|
+
};
|
130635
|
+
/**
|
130636
|
+
* Type definition for `AWS::QuickSight::Dashboard.GeospatialPointStyle`.
|
130637
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialpointstyle.html}
|
130638
|
+
*/
|
130639
|
+
export type QuickSightDashboardGeospatialPointStyle = {
|
130640
|
+
CircleSymbolStyle?: QuickSightDashboardGeospatialCircleSymbolStyle;
|
130641
|
+
};
|
129283
130642
|
/**
|
129284
130643
|
* Type definition for `AWS::QuickSight::Dashboard.GeospatialPointStyleOptions`.
|
129285
130644
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialpointstyleoptions.html}
|
@@ -129289,11 +130648,61 @@ export type QuickSightDashboardGeospatialPointStyleOptions = {
|
|
129289
130648
|
HeatmapConfiguration?: QuickSightDashboardGeospatialHeatmapConfiguration;
|
129290
130649
|
SelectedPointStyle?: QuickSightDashboardGeospatialSelectedPointStyle;
|
129291
130650
|
};
|
130651
|
+
/**
|
130652
|
+
* Type definition for `AWS::QuickSight::Dashboard.GeospatialPolygonLayer`.
|
130653
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialpolygonlayer.html}
|
130654
|
+
*/
|
130655
|
+
export type QuickSightDashboardGeospatialPolygonLayer = {
|
130656
|
+
Style: QuickSightDashboardGeospatialPolygonStyle;
|
130657
|
+
};
|
130658
|
+
/**
|
130659
|
+
* Type definition for `AWS::QuickSight::Dashboard.GeospatialPolygonStyle`.
|
130660
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialpolygonstyle.html}
|
130661
|
+
*/
|
130662
|
+
export type QuickSightDashboardGeospatialPolygonStyle = {
|
130663
|
+
PolygonSymbolStyle?: QuickSightDashboardGeospatialPolygonSymbolStyle;
|
130664
|
+
};
|
130665
|
+
/**
|
130666
|
+
* Type definition for `AWS::QuickSight::Dashboard.GeospatialPolygonSymbolStyle`.
|
130667
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialpolygonsymbolstyle.html}
|
130668
|
+
*/
|
130669
|
+
export type QuickSightDashboardGeospatialPolygonSymbolStyle = {
|
130670
|
+
FillColor?: QuickSightDashboardGeospatialColor;
|
130671
|
+
StrokeColor?: QuickSightDashboardGeospatialColor;
|
130672
|
+
StrokeWidth?: QuickSightDashboardGeospatialLineWidth;
|
130673
|
+
};
|
129292
130674
|
/**
|
129293
130675
|
* Type definition for `AWS::QuickSight::Dashboard.GeospatialSelectedPointStyle`.
|
129294
130676
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialselectedpointstyle.html}
|
129295
130677
|
*/
|
129296
130678
|
export type QuickSightDashboardGeospatialSelectedPointStyle = "POINT" | "CLUSTER" | "HEATMAP";
|
130679
|
+
/**
|
130680
|
+
* Type definition for `AWS::QuickSight::Dashboard.GeospatialSolidColor`.
|
130681
|
+
* Describes the properties for a solid color
|
130682
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialsolidcolor.html}
|
130683
|
+
*/
|
130684
|
+
export type QuickSightDashboardGeospatialSolidColor = {
|
130685
|
+
/**
|
130686
|
+
* @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
|
130687
|
+
*/
|
130688
|
+
Color: string;
|
130689
|
+
/**
|
130690
|
+
* Defines view state of the color
|
130691
|
+
*/
|
130692
|
+
State?: QuickSightDashboardGeospatialColorState;
|
130693
|
+
};
|
130694
|
+
/**
|
130695
|
+
* Type definition for `AWS::QuickSight::Dashboard.GeospatialStaticFileSource`.
|
130696
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialstaticfilesource.html}
|
130697
|
+
*/
|
130698
|
+
export type QuickSightDashboardGeospatialStaticFileSource = {
|
130699
|
+
/**
|
130700
|
+
* @minLength `1`
|
130701
|
+
* @maxLength `512`
|
130702
|
+
* @pattern `^[\w\-]+$`
|
130703
|
+
*/
|
130704
|
+
StaticFileId: string;
|
130705
|
+
};
|
129297
130706
|
/**
|
129298
130707
|
* Type definition for `AWS::QuickSight::Dashboard.GeospatialWindowOptions`.
|
129299
130708
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialwindowoptions.html}
|
@@ -129508,6 +130917,11 @@ export type QuickSightDashboardHeatMapVisual = {
|
|
129508
130917
|
ColumnHierarchies?: QuickSightDashboardColumnHierarchy[];
|
129509
130918
|
Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
|
129510
130919
|
Title?: QuickSightDashboardVisualTitleLabelOptions;
|
130920
|
+
/**
|
130921
|
+
* @minLength `1`
|
130922
|
+
* @maxLength `1024`
|
130923
|
+
*/
|
130924
|
+
VisualContentAltText?: string;
|
129511
130925
|
/**
|
129512
130926
|
* @minLength `1`
|
129513
130927
|
* @maxLength `512`
|
@@ -129575,6 +130989,11 @@ export type QuickSightDashboardHistogramVisual = {
|
|
129575
130989
|
ChartConfiguration?: QuickSightDashboardHistogramConfiguration;
|
129576
130990
|
Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
|
129577
130991
|
Title?: QuickSightDashboardVisualTitleLabelOptions;
|
130992
|
+
/**
|
130993
|
+
* @minLength `1`
|
130994
|
+
* @maxLength `1024`
|
130995
|
+
*/
|
130996
|
+
VisualContentAltText?: string;
|
129578
130997
|
/**
|
129579
130998
|
* @minLength `1`
|
129580
130999
|
* @maxLength `512`
|
@@ -129592,6 +131011,71 @@ export type QuickSightDashboardHorizontalTextAlignment = "LEFT" | "CENTER" | "RI
|
|
129592
131011
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-icon.html}
|
129593
131012
|
*/
|
129594
131013
|
export type QuickSightDashboardIcon = "CARET_UP" | "CARET_DOWN" | "PLUS" | "MINUS" | "ARROW_UP" | "ARROW_DOWN" | "ARROW_LEFT" | "ARROW_UP_LEFT" | "ARROW_DOWN_LEFT" | "ARROW_RIGHT" | "ARROW_UP_RIGHT" | "ARROW_DOWN_RIGHT" | "FACE_UP" | "FACE_DOWN" | "FACE_FLAT" | "ONE_BAR" | "TWO_BAR" | "THREE_BAR" | "CIRCLE" | "TRIANGLE" | "SQUARE" | "FLAG" | "THUMBS_UP" | "THUMBS_DOWN" | "CHECKMARK" | "X";
|
131014
|
+
/**
|
131015
|
+
* Type definition for `AWS::QuickSight::Dashboard.ImageCustomAction`.
|
131016
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-imagecustomaction.html}
|
131017
|
+
*/
|
131018
|
+
export type QuickSightDashboardImageCustomAction = {
|
131019
|
+
/**
|
131020
|
+
* @minLength `1`
|
131021
|
+
* @maxLength `2`
|
131022
|
+
*/
|
131023
|
+
ActionOperations: QuickSightDashboardImageCustomActionOperation[];
|
131024
|
+
/**
|
131025
|
+
* @minLength `1`
|
131026
|
+
* @maxLength `512`
|
131027
|
+
* @pattern `^[\w\-]+$`
|
131028
|
+
*/
|
131029
|
+
CustomActionId: string;
|
131030
|
+
/**
|
131031
|
+
* @minLength `1`
|
131032
|
+
* @maxLength `256`
|
131033
|
+
*/
|
131034
|
+
Name: string;
|
131035
|
+
Status?: QuickSightDashboardWidgetStatus;
|
131036
|
+
Trigger: QuickSightDashboardImageCustomActionTrigger;
|
131037
|
+
};
|
131038
|
+
/**
|
131039
|
+
* Type definition for `AWS::QuickSight::Dashboard.ImageCustomActionOperation`.
|
131040
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-imagecustomactionoperation.html}
|
131041
|
+
*/
|
131042
|
+
export type QuickSightDashboardImageCustomActionOperation = {
|
131043
|
+
NavigationOperation?: QuickSightDashboardCustomActionNavigationOperation;
|
131044
|
+
SetParametersOperation?: QuickSightDashboardCustomActionSetParametersOperation;
|
131045
|
+
URLOperation?: QuickSightDashboardCustomActionURLOperation;
|
131046
|
+
};
|
131047
|
+
/**
|
131048
|
+
* Type definition for `AWS::QuickSight::Dashboard.ImageCustomActionTrigger`.
|
131049
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-imagecustomactiontrigger.html}
|
131050
|
+
*/
|
131051
|
+
export type QuickSightDashboardImageCustomActionTrigger = "CLICK" | "MENU";
|
131052
|
+
/**
|
131053
|
+
* Type definition for `AWS::QuickSight::Dashboard.ImageInteractionOptions`.
|
131054
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-imageinteractionoptions.html}
|
131055
|
+
*/
|
131056
|
+
export type QuickSightDashboardImageInteractionOptions = {
|
131057
|
+
ImageMenuOption?: QuickSightDashboardImageMenuOption;
|
131058
|
+
};
|
131059
|
+
/**
|
131060
|
+
* Type definition for `AWS::QuickSight::Dashboard.ImageMenuOption`.
|
131061
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-imagemenuoption.html}
|
131062
|
+
*/
|
131063
|
+
export type QuickSightDashboardImageMenuOption = {
|
131064
|
+
AvailabilityStatus?: QuickSightDashboardDashboardBehavior;
|
131065
|
+
};
|
131066
|
+
/**
|
131067
|
+
* Type definition for `AWS::QuickSight::Dashboard.ImageStaticFile`.
|
131068
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-imagestaticfile.html}
|
131069
|
+
*/
|
131070
|
+
export type QuickSightDashboardImageStaticFile = {
|
131071
|
+
Source?: QuickSightDashboardStaticFileSource;
|
131072
|
+
/**
|
131073
|
+
* @minLength `1`
|
131074
|
+
* @maxLength `512`
|
131075
|
+
* @pattern `^[\w\-]+$`
|
131076
|
+
*/
|
131077
|
+
StaticFileId: string;
|
131078
|
+
};
|
129595
131079
|
/**
|
129596
131080
|
* Type definition for `AWS::QuickSight::Dashboard.InnerFilter`.
|
129597
131081
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-innerfilter.html}
|
@@ -129629,6 +131113,11 @@ export type QuickSightDashboardInsightVisual = {
|
|
129629
131113
|
InsightConfiguration?: QuickSightDashboardInsightConfiguration;
|
129630
131114
|
Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
|
129631
131115
|
Title?: QuickSightDashboardVisualTitleLabelOptions;
|
131116
|
+
/**
|
131117
|
+
* @minLength `1`
|
131118
|
+
* @maxLength `1024`
|
131119
|
+
*/
|
131120
|
+
VisualContentAltText?: string;
|
129632
131121
|
/**
|
129633
131122
|
* @minLength `1`
|
129634
131123
|
* @maxLength `512`
|
@@ -129845,6 +131334,11 @@ export type QuickSightDashboardKPIVisual = {
|
|
129845
131334
|
ConditionalFormatting?: QuickSightDashboardKPIConditionalFormatting;
|
129846
131335
|
Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
|
129847
131336
|
Title?: QuickSightDashboardVisualTitleLabelOptions;
|
131337
|
+
/**
|
131338
|
+
* @minLength `1`
|
131339
|
+
* @maxLength `1024`
|
131340
|
+
*/
|
131341
|
+
VisualContentAltText?: string;
|
129848
131342
|
/**
|
129849
131343
|
* @minLength `1`
|
129850
131344
|
* @maxLength `512`
|
@@ -129880,6 +131374,70 @@ export type QuickSightDashboardLabelOptions = {
|
|
129880
131374
|
FontConfiguration?: QuickSightDashboardFontConfiguration;
|
129881
131375
|
Visibility?: QuickSightDashboardVisibility;
|
129882
131376
|
};
|
131377
|
+
/**
|
131378
|
+
* Type definition for `AWS::QuickSight::Dashboard.LayerCustomAction`.
|
131379
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-layercustomaction.html}
|
131380
|
+
*/
|
131381
|
+
export type QuickSightDashboardLayerCustomAction = {
|
131382
|
+
/**
|
131383
|
+
* @minLength `1`
|
131384
|
+
* @maxLength `2`
|
131385
|
+
*/
|
131386
|
+
ActionOperations: QuickSightDashboardLayerCustomActionOperation[];
|
131387
|
+
/**
|
131388
|
+
* @minLength `1`
|
131389
|
+
* @maxLength `512`
|
131390
|
+
* @pattern `^[\w\-]+$`
|
131391
|
+
*/
|
131392
|
+
CustomActionId: string;
|
131393
|
+
/**
|
131394
|
+
* @minLength `1`
|
131395
|
+
* @maxLength `256`
|
131396
|
+
*/
|
131397
|
+
Name: string;
|
131398
|
+
Status?: QuickSightDashboardWidgetStatus;
|
131399
|
+
Trigger: QuickSightDashboardLayerCustomActionTrigger;
|
131400
|
+
};
|
131401
|
+
/**
|
131402
|
+
* Type definition for `AWS::QuickSight::Dashboard.LayerCustomActionOperation`.
|
131403
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-layercustomactionoperation.html}
|
131404
|
+
*/
|
131405
|
+
export type QuickSightDashboardLayerCustomActionOperation = {
|
131406
|
+
FilterOperation?: QuickSightDashboardCustomActionFilterOperation;
|
131407
|
+
NavigationOperation?: QuickSightDashboardCustomActionNavigationOperation;
|
131408
|
+
SetParametersOperation?: QuickSightDashboardCustomActionSetParametersOperation;
|
131409
|
+
URLOperation?: QuickSightDashboardCustomActionURLOperation;
|
131410
|
+
};
|
131411
|
+
/**
|
131412
|
+
* Type definition for `AWS::QuickSight::Dashboard.LayerCustomActionTrigger`.
|
131413
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-layercustomactiontrigger.html}
|
131414
|
+
*/
|
131415
|
+
export type QuickSightDashboardLayerCustomActionTrigger = "DATA_POINT_CLICK" | "DATA_POINT_MENU";
|
131416
|
+
/**
|
131417
|
+
* Type definition for `AWS::QuickSight::Dashboard.LayerMapVisual`.
|
131418
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-layermapvisual.html}
|
131419
|
+
*/
|
131420
|
+
export type QuickSightDashboardLayerMapVisual = {
|
131421
|
+
ChartConfiguration?: QuickSightDashboardGeospatialLayerMapConfiguration;
|
131422
|
+
/**
|
131423
|
+
* @minLength `1`
|
131424
|
+
* @maxLength `2048`
|
131425
|
+
*/
|
131426
|
+
DataSetIdentifier: string;
|
131427
|
+
Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
|
131428
|
+
Title?: QuickSightDashboardVisualTitleLabelOptions;
|
131429
|
+
/**
|
131430
|
+
* @minLength `1`
|
131431
|
+
* @maxLength `1024`
|
131432
|
+
*/
|
131433
|
+
VisualContentAltText?: string;
|
131434
|
+
/**
|
131435
|
+
* @minLength `1`
|
131436
|
+
* @maxLength `512`
|
131437
|
+
* @pattern `^[\w\-]+$`
|
131438
|
+
*/
|
131439
|
+
VisualId: string;
|
131440
|
+
};
|
129883
131441
|
/**
|
129884
131442
|
* Type definition for `AWS::QuickSight::Dashboard.Layout`.
|
129885
131443
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-layout.html}
|
@@ -129912,6 +131470,7 @@ export type QuickSightDashboardLegendOptions = {
|
|
129912
131470
|
Height?: string;
|
129913
131471
|
Position?: QuickSightDashboardLegendPosition;
|
129914
131472
|
Title?: QuickSightDashboardLabelOptions;
|
131473
|
+
ValueFontConfiguration?: QuickSightDashboardFontConfiguration;
|
129915
131474
|
Visibility?: QuickSightDashboardVisibility;
|
129916
131475
|
/**
|
129917
131476
|
* String based length that is composed of value and unit in px
|
@@ -130096,6 +131655,11 @@ export type QuickSightDashboardLineChartVisual = {
|
|
130096
131655
|
ColumnHierarchies?: QuickSightDashboardColumnHierarchy[];
|
130097
131656
|
Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
|
130098
131657
|
Title?: QuickSightDashboardVisualTitleLabelOptions;
|
131658
|
+
/**
|
131659
|
+
* @minLength `1`
|
131660
|
+
* @maxLength `1024`
|
131661
|
+
*/
|
131662
|
+
VisualContentAltText?: string;
|
130099
131663
|
/**
|
130100
131664
|
* @minLength `1`
|
130101
131665
|
* @maxLength `512`
|
@@ -130962,6 +132526,11 @@ export type QuickSightDashboardPieChartVisual = {
|
|
130962
132526
|
ColumnHierarchies?: QuickSightDashboardColumnHierarchy[];
|
130963
132527
|
Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
|
130964
132528
|
Title?: QuickSightDashboardVisualTitleLabelOptions;
|
132529
|
+
/**
|
132530
|
+
* @minLength `1`
|
132531
|
+
* @maxLength `1024`
|
132532
|
+
*/
|
132533
|
+
VisualContentAltText?: string;
|
130965
132534
|
/**
|
130966
132535
|
* @minLength `1`
|
130967
132536
|
* @maxLength `512`
|
@@ -131260,6 +132829,11 @@ export type QuickSightDashboardPivotTableVisual = {
|
|
131260
132829
|
ConditionalFormatting?: QuickSightDashboardPivotTableConditionalFormatting;
|
131261
132830
|
Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
|
131262
132831
|
Title?: QuickSightDashboardVisualTitleLabelOptions;
|
132832
|
+
/**
|
132833
|
+
* @minLength `1`
|
132834
|
+
* @maxLength `1024`
|
132835
|
+
*/
|
132836
|
+
VisualContentAltText?: string;
|
131263
132837
|
/**
|
131264
132838
|
* @minLength `1`
|
131265
132839
|
* @maxLength `512`
|
@@ -131285,6 +132859,108 @@ export type QuickSightDashboardPivotTotalOptions = {
|
|
131285
132859
|
TotalsVisibility?: QuickSightDashboardVisibility;
|
131286
132860
|
ValueCellStyle?: QuickSightDashboardTableCellStyle;
|
131287
132861
|
};
|
132862
|
+
/**
|
132863
|
+
* Type definition for `AWS::QuickSight::Dashboard.PluginVisual`.
|
132864
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-pluginvisual.html}
|
132865
|
+
*/
|
132866
|
+
export type QuickSightDashboardPluginVisual = {
|
132867
|
+
ChartConfiguration?: QuickSightDashboardPluginVisualConfiguration;
|
132868
|
+
PluginArn: string;
|
132869
|
+
Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
|
132870
|
+
Title?: QuickSightDashboardVisualTitleLabelOptions;
|
132871
|
+
/**
|
132872
|
+
* @minLength `1`
|
132873
|
+
* @maxLength `1024`
|
132874
|
+
*/
|
132875
|
+
VisualContentAltText?: string;
|
132876
|
+
/**
|
132877
|
+
* @minLength `1`
|
132878
|
+
* @maxLength `512`
|
132879
|
+
* @pattern `^[\w\-]+$`
|
132880
|
+
*/
|
132881
|
+
VisualId: string;
|
132882
|
+
};
|
132883
|
+
/**
|
132884
|
+
* Type definition for `AWS::QuickSight::Dashboard.PluginVisualAxisName`.
|
132885
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-pluginvisualaxisname.html}
|
132886
|
+
*/
|
132887
|
+
export type QuickSightDashboardPluginVisualAxisName = "GROUP_BY" | "VALUE";
|
132888
|
+
/**
|
132889
|
+
* Type definition for `AWS::QuickSight::Dashboard.PluginVisualConfiguration`.
|
132890
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-pluginvisualconfiguration.html}
|
132891
|
+
*/
|
132892
|
+
export type QuickSightDashboardPluginVisualConfiguration = {
|
132893
|
+
/**
|
132894
|
+
* @minLength `0`
|
132895
|
+
* @maxLength `10`
|
132896
|
+
*/
|
132897
|
+
FieldWells?: QuickSightDashboardPluginVisualFieldWell[];
|
132898
|
+
SortConfiguration?: QuickSightDashboardPluginVisualSortConfiguration;
|
132899
|
+
VisualOptions?: QuickSightDashboardPluginVisualOptions;
|
132900
|
+
};
|
132901
|
+
/**
|
132902
|
+
* Type definition for `AWS::QuickSight::Dashboard.PluginVisualFieldWell`.
|
132903
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-pluginvisualfieldwell.html}
|
132904
|
+
*/
|
132905
|
+
export type QuickSightDashboardPluginVisualFieldWell = {
|
132906
|
+
AxisName?: QuickSightDashboardPluginVisualAxisName;
|
132907
|
+
/**
|
132908
|
+
* @minLength `0`
|
132909
|
+
* @maxLength `200`
|
132910
|
+
*/
|
132911
|
+
Dimensions?: QuickSightDashboardDimensionField[];
|
132912
|
+
/**
|
132913
|
+
* @minLength `0`
|
132914
|
+
* @maxLength `200`
|
132915
|
+
*/
|
132916
|
+
Measures?: QuickSightDashboardMeasureField[];
|
132917
|
+
/**
|
132918
|
+
* @minLength `0`
|
132919
|
+
* @maxLength `200`
|
132920
|
+
*/
|
132921
|
+
Unaggregated?: QuickSightDashboardUnaggregatedField[];
|
132922
|
+
};
|
132923
|
+
/**
|
132924
|
+
* Type definition for `AWS::QuickSight::Dashboard.PluginVisualItemsLimitConfiguration`.
|
132925
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-pluginvisualitemslimitconfiguration.html}
|
132926
|
+
*/
|
132927
|
+
export type QuickSightDashboardPluginVisualItemsLimitConfiguration = {
|
132928
|
+
ItemsLimit?: number;
|
132929
|
+
};
|
132930
|
+
/**
|
132931
|
+
* Type definition for `AWS::QuickSight::Dashboard.PluginVisualOptions`.
|
132932
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-pluginvisualoptions.html}
|
132933
|
+
*/
|
132934
|
+
export type QuickSightDashboardPluginVisualOptions = {
|
132935
|
+
VisualProperties?: QuickSightDashboardPluginVisualProperty[];
|
132936
|
+
};
|
132937
|
+
/**
|
132938
|
+
* Type definition for `AWS::QuickSight::Dashboard.PluginVisualProperty`.
|
132939
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-pluginvisualproperty.html}
|
132940
|
+
*/
|
132941
|
+
export type QuickSightDashboardPluginVisualProperty = {
|
132942
|
+
Name?: string;
|
132943
|
+
Value?: string;
|
132944
|
+
};
|
132945
|
+
/**
|
132946
|
+
* Type definition for `AWS::QuickSight::Dashboard.PluginVisualSortConfiguration`.
|
132947
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-pluginvisualsortconfiguration.html}
|
132948
|
+
*/
|
132949
|
+
export type QuickSightDashboardPluginVisualSortConfiguration = {
|
132950
|
+
PluginVisualTableQuerySort?: QuickSightDashboardPluginVisualTableQuerySort;
|
132951
|
+
};
|
132952
|
+
/**
|
132953
|
+
* Type definition for `AWS::QuickSight::Dashboard.PluginVisualTableQuerySort`.
|
132954
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-pluginvisualtablequerysort.html}
|
132955
|
+
*/
|
132956
|
+
export type QuickSightDashboardPluginVisualTableQuerySort = {
|
132957
|
+
ItemsLimitConfiguration?: QuickSightDashboardPluginVisualItemsLimitConfiguration;
|
132958
|
+
/**
|
132959
|
+
* @minLength `0`
|
132960
|
+
* @maxLength `100`
|
132961
|
+
*/
|
132962
|
+
RowSort?: QuickSightDashboardFieldSortOptions[];
|
132963
|
+
};
|
131288
132964
|
/**
|
131289
132965
|
* Type definition for `AWS::QuickSight::Dashboard.PredefinedHierarchy`.
|
131290
132966
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-predefinedhierarchy.html}
|
@@ -131437,6 +133113,11 @@ export type QuickSightDashboardRadarChartVisual = {
|
|
131437
133113
|
ColumnHierarchies?: QuickSightDashboardColumnHierarchy[];
|
131438
133114
|
Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
|
131439
133115
|
Title?: QuickSightDashboardVisualTitleLabelOptions;
|
133116
|
+
/**
|
133117
|
+
* @minLength `1`
|
133118
|
+
* @maxLength `1024`
|
133119
|
+
*/
|
133120
|
+
VisualContentAltText?: string;
|
131440
133121
|
/**
|
131441
133122
|
* @minLength `1`
|
131442
133123
|
* @maxLength `512`
|
@@ -131753,6 +133434,11 @@ export type QuickSightDashboardSankeyDiagramVisual = {
|
|
131753
133434
|
ChartConfiguration?: QuickSightDashboardSankeyDiagramChartConfiguration;
|
131754
133435
|
Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
|
131755
133436
|
Title?: QuickSightDashboardVisualTitleLabelOptions;
|
133437
|
+
/**
|
133438
|
+
* @minLength `1`
|
133439
|
+
* @maxLength `1024`
|
133440
|
+
*/
|
133441
|
+
VisualContentAltText?: string;
|
131756
133442
|
/**
|
131757
133443
|
* @minLength `1`
|
131758
133444
|
* @maxLength `512`
|
@@ -131863,6 +133549,11 @@ export type QuickSightDashboardScatterPlotVisual = {
|
|
131863
133549
|
ColumnHierarchies?: QuickSightDashboardColumnHierarchy[];
|
131864
133550
|
Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
|
131865
133551
|
Title?: QuickSightDashboardVisualTitleLabelOptions;
|
133552
|
+
/**
|
133553
|
+
* @minLength `1`
|
133554
|
+
* @maxLength `1024`
|
133555
|
+
*/
|
133556
|
+
VisualContentAltText?: string;
|
131866
133557
|
/**
|
131867
133558
|
* @minLength `1`
|
131868
133559
|
* @maxLength `512`
|
@@ -132024,6 +133715,11 @@ export type QuickSightDashboardShapeConditionalFormat = {
|
|
132024
133715
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-sheet.html}
|
132025
133716
|
*/
|
132026
133717
|
export type QuickSightDashboardSheet = {
|
133718
|
+
/**
|
133719
|
+
* @minLength `0`
|
133720
|
+
* @maxLength `10`
|
133721
|
+
*/
|
133722
|
+
Images?: QuickSightDashboardSheetImage[];
|
132027
133723
|
/**
|
132028
133724
|
* <p>The name of a sheet. This name is displayed on the sheet's tab in the Amazon QuickSight
|
132029
133725
|
console.</p>
|
@@ -132109,6 +133805,11 @@ export type QuickSightDashboardSheetDefinition = {
|
|
132109
133805
|
* @maxLength `200`
|
132110
133806
|
*/
|
132111
133807
|
FilterControls?: QuickSightDashboardFilterControl[];
|
133808
|
+
/**
|
133809
|
+
* @minLength `0`
|
133810
|
+
* @maxLength `10`
|
133811
|
+
*/
|
133812
|
+
Images?: QuickSightDashboardSheetImage[];
|
132112
133813
|
/**
|
132113
133814
|
* @minLength `1`
|
132114
133815
|
* @maxLength `1`
|
@@ -132170,6 +133871,82 @@ export type QuickSightDashboardSheetElementRenderingRule = {
|
|
132170
133871
|
*/
|
132171
133872
|
Expression: string;
|
132172
133873
|
};
|
133874
|
+
/**
|
133875
|
+
* Type definition for `AWS::QuickSight::Dashboard.SheetImage`.
|
133876
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-sheetimage.html}
|
133877
|
+
*/
|
133878
|
+
export type QuickSightDashboardSheetImage = {
|
133879
|
+
/**
|
133880
|
+
* @minLength `0`
|
133881
|
+
* @maxLength `10`
|
133882
|
+
*/
|
133883
|
+
Actions?: QuickSightDashboardImageCustomAction[];
|
133884
|
+
/**
|
133885
|
+
* @minLength `1`
|
133886
|
+
* @maxLength `1024`
|
133887
|
+
*/
|
133888
|
+
ImageContentAltText?: string;
|
133889
|
+
Interactions?: QuickSightDashboardImageInteractionOptions;
|
133890
|
+
Scaling?: QuickSightDashboardSheetImageScalingConfiguration;
|
133891
|
+
/**
|
133892
|
+
* @minLength `1`
|
133893
|
+
* @maxLength `512`
|
133894
|
+
* @pattern `^[\w\-]+$`
|
133895
|
+
*/
|
133896
|
+
SheetImageId: string;
|
133897
|
+
Source: QuickSightDashboardSheetImageSource;
|
133898
|
+
Tooltip?: QuickSightDashboardSheetImageTooltipConfiguration;
|
133899
|
+
};
|
133900
|
+
/**
|
133901
|
+
* Type definition for `AWS::QuickSight::Dashboard.SheetImageScalingConfiguration`.
|
133902
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-sheetimagescalingconfiguration.html}
|
133903
|
+
*/
|
133904
|
+
export type QuickSightDashboardSheetImageScalingConfiguration = {
|
133905
|
+
ScalingType?: QuickSightDashboardSheetImageScalingType;
|
133906
|
+
};
|
133907
|
+
/**
|
133908
|
+
* Type definition for `AWS::QuickSight::Dashboard.SheetImageScalingType`.
|
133909
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-sheetimagescalingtype.html}
|
133910
|
+
*/
|
133911
|
+
export type QuickSightDashboardSheetImageScalingType = "SCALE_TO_WIDTH" | "SCALE_TO_HEIGHT" | "SCALE_TO_CONTAINER" | "SCALE_NONE";
|
133912
|
+
/**
|
133913
|
+
* Type definition for `AWS::QuickSight::Dashboard.SheetImageSource`.
|
133914
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-sheetimagesource.html}
|
133915
|
+
*/
|
133916
|
+
export type QuickSightDashboardSheetImageSource = {
|
133917
|
+
SheetImageStaticFileSource?: QuickSightDashboardSheetImageStaticFileSource;
|
133918
|
+
};
|
133919
|
+
/**
|
133920
|
+
* Type definition for `AWS::QuickSight::Dashboard.SheetImageStaticFileSource`.
|
133921
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-sheetimagestaticfilesource.html}
|
133922
|
+
*/
|
133923
|
+
export type QuickSightDashboardSheetImageStaticFileSource = {
|
133924
|
+
/**
|
133925
|
+
* @minLength `1`
|
133926
|
+
* @maxLength `512`
|
133927
|
+
* @pattern `^[\w\-]+$`
|
133928
|
+
*/
|
133929
|
+
StaticFileId: string;
|
133930
|
+
};
|
133931
|
+
/**
|
133932
|
+
* Type definition for `AWS::QuickSight::Dashboard.SheetImageTooltipConfiguration`.
|
133933
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-sheetimagetooltipconfiguration.html}
|
133934
|
+
*/
|
133935
|
+
export type QuickSightDashboardSheetImageTooltipConfiguration = {
|
133936
|
+
TooltipText?: QuickSightDashboardSheetImageTooltipText;
|
133937
|
+
Visibility?: QuickSightDashboardVisibility;
|
133938
|
+
};
|
133939
|
+
/**
|
133940
|
+
* Type definition for `AWS::QuickSight::Dashboard.SheetImageTooltipText`.
|
133941
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-sheetimagetooltiptext.html}
|
133942
|
+
*/
|
133943
|
+
export type QuickSightDashboardSheetImageTooltipText = {
|
133944
|
+
/**
|
133945
|
+
* @minLength `1`
|
133946
|
+
* @maxLength `1024`
|
133947
|
+
*/
|
133948
|
+
PlainText?: string;
|
133949
|
+
};
|
132173
133950
|
/**
|
132174
133951
|
* Type definition for `AWS::QuickSight::Dashboard.SheetLayoutElementMaximizationOption`.
|
132175
133952
|
* <p>The sheet layout maximization options of a dashbaord.</p>
|
@@ -132338,11 +134115,56 @@ export type QuickSightDashboardSpacing = {
|
|
132338
134115
|
*/
|
132339
134116
|
Top?: string;
|
132340
134117
|
};
|
134118
|
+
/**
|
134119
|
+
* Type definition for `AWS::QuickSight::Dashboard.SpatialStaticFile`.
|
134120
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-spatialstaticfile.html}
|
134121
|
+
*/
|
134122
|
+
export type QuickSightDashboardSpatialStaticFile = {
|
134123
|
+
Source?: QuickSightDashboardStaticFileSource;
|
134124
|
+
/**
|
134125
|
+
* @minLength `1`
|
134126
|
+
* @maxLength `512`
|
134127
|
+
* @pattern `^[\w\-]+$`
|
134128
|
+
*/
|
134129
|
+
StaticFileId: string;
|
134130
|
+
};
|
132341
134131
|
/**
|
132342
134132
|
* Type definition for `AWS::QuickSight::Dashboard.SpecialValue`.
|
132343
134133
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-specialvalue.html}
|
132344
134134
|
*/
|
132345
134135
|
export type QuickSightDashboardSpecialValue = "EMPTY" | "NULL" | "OTHER";
|
134136
|
+
/**
|
134137
|
+
* Type definition for `AWS::QuickSight::Dashboard.StaticFile`.
|
134138
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-staticfile.html}
|
134139
|
+
*/
|
134140
|
+
export type QuickSightDashboardStaticFile = {
|
134141
|
+
ImageStaticFile?: QuickSightDashboardImageStaticFile;
|
134142
|
+
SpatialStaticFile?: QuickSightDashboardSpatialStaticFile;
|
134143
|
+
};
|
134144
|
+
/**
|
134145
|
+
* Type definition for `AWS::QuickSight::Dashboard.StaticFileS3SourceOptions`.
|
134146
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-staticfiles3sourceoptions.html}
|
134147
|
+
*/
|
134148
|
+
export type QuickSightDashboardStaticFileS3SourceOptions = {
|
134149
|
+
BucketName: string;
|
134150
|
+
ObjectKey: string;
|
134151
|
+
Region: string;
|
134152
|
+
};
|
134153
|
+
/**
|
134154
|
+
* Type definition for `AWS::QuickSight::Dashboard.StaticFileSource`.
|
134155
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-staticfilesource.html}
|
134156
|
+
*/
|
134157
|
+
export type QuickSightDashboardStaticFileSource = {
|
134158
|
+
S3Options?: QuickSightDashboardStaticFileS3SourceOptions;
|
134159
|
+
UrlOptions?: QuickSightDashboardStaticFileUrlSourceOptions;
|
134160
|
+
};
|
134161
|
+
/**
|
134162
|
+
* Type definition for `AWS::QuickSight::Dashboard.StaticFileUrlSourceOptions`.
|
134163
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-staticfileurlsourceoptions.html}
|
134164
|
+
*/
|
134165
|
+
export type QuickSightDashboardStaticFileUrlSourceOptions = {
|
134166
|
+
Url: string;
|
134167
|
+
};
|
132346
134168
|
/**
|
132347
134169
|
* Type definition for `AWS::QuickSight::Dashboard.StringDefaultValues`.
|
132348
134170
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-stringdefaultvalues.html}
|
@@ -132765,6 +134587,11 @@ export type QuickSightDashboardTableVisual = {
|
|
132765
134587
|
ConditionalFormatting?: QuickSightDashboardTableConditionalFormatting;
|
132766
134588
|
Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
|
132767
134589
|
Title?: QuickSightDashboardVisualTitleLabelOptions;
|
134590
|
+
/**
|
134591
|
+
* @minLength `1`
|
134592
|
+
* @maxLength `1024`
|
134593
|
+
*/
|
134594
|
+
VisualContentAltText?: string;
|
132768
134595
|
/**
|
132769
134596
|
* @minLength `1`
|
132770
134597
|
* @maxLength `512`
|
@@ -133175,6 +135002,11 @@ export type QuickSightDashboardTreeMapVisual = {
|
|
133175
135002
|
ColumnHierarchies?: QuickSightDashboardColumnHierarchy[];
|
133176
135003
|
Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
|
133177
135004
|
Title?: QuickSightDashboardVisualTitleLabelOptions;
|
135005
|
+
/**
|
135006
|
+
* @minLength `1`
|
135007
|
+
* @maxLength `1024`
|
135008
|
+
*/
|
135009
|
+
VisualContentAltText?: string;
|
133178
135010
|
/**
|
133179
135011
|
* @minLength `1`
|
133180
135012
|
* @maxLength `512`
|
@@ -133274,9 +135106,11 @@ export type QuickSightDashboardVisual = {
|
|
133274
135106
|
HistogramVisual?: QuickSightDashboardHistogramVisual;
|
133275
135107
|
InsightVisual?: QuickSightDashboardInsightVisual;
|
133276
135108
|
KPIVisual?: QuickSightDashboardKPIVisual;
|
135109
|
+
LayerMapVisual?: QuickSightDashboardLayerMapVisual;
|
133277
135110
|
LineChartVisual?: QuickSightDashboardLineChartVisual;
|
133278
135111
|
PieChartVisual?: QuickSightDashboardPieChartVisual;
|
133279
135112
|
PivotTableVisual?: QuickSightDashboardPivotTableVisual;
|
135113
|
+
PluginVisual?: QuickSightDashboardPluginVisual;
|
133280
135114
|
RadarChartVisual?: QuickSightDashboardRadarChartVisual;
|
133281
135115
|
SankeyDiagramVisual?: QuickSightDashboardSankeyDiagramVisual;
|
133282
135116
|
ScatterPlotVisual?: QuickSightDashboardScatterPlotVisual;
|
@@ -133476,6 +135310,11 @@ export type QuickSightDashboardWaterfallVisual = {
|
|
133476
135310
|
ColumnHierarchies?: QuickSightDashboardColumnHierarchy[];
|
133477
135311
|
Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
|
133478
135312
|
Title?: QuickSightDashboardVisualTitleLabelOptions;
|
135313
|
+
/**
|
135314
|
+
* @minLength `1`
|
135315
|
+
* @maxLength `1024`
|
135316
|
+
*/
|
135317
|
+
VisualContentAltText?: string;
|
133479
135318
|
/**
|
133480
135319
|
* @minLength `1`
|
133481
135320
|
* @maxLength `512`
|
@@ -133589,6 +135428,11 @@ export type QuickSightDashboardWordCloudVisual = {
|
|
133589
135428
|
ColumnHierarchies?: QuickSightDashboardColumnHierarchy[];
|
133590
135429
|
Subtitle?: QuickSightDashboardVisualSubtitleLabelOptions;
|
133591
135430
|
Title?: QuickSightDashboardVisualTitleLabelOptions;
|
135431
|
+
/**
|
135432
|
+
* @minLength `1`
|
135433
|
+
* @maxLength `1024`
|
135434
|
+
*/
|
135435
|
+
VisualContentAltText?: string;
|
133592
135436
|
/**
|
133593
135437
|
* @minLength `1`
|
133594
135438
|
* @maxLength `512`
|
@@ -136140,6 +137984,154 @@ export type QuickSightTemplateAttributes = {
|
|
136140
137984
|
* @maxLength `20`
|
136141
137985
|
*/
|
136142
137986
|
Sheets: {
|
137987
|
+
/**
|
137988
|
+
* @minLength `0`
|
137989
|
+
* @maxLength `10`
|
137990
|
+
*/
|
137991
|
+
Images: {
|
137992
|
+
/**
|
137993
|
+
* @minLength `0`
|
137994
|
+
* @maxLength `10`
|
137995
|
+
*/
|
137996
|
+
Actions: {
|
137997
|
+
/**
|
137998
|
+
* @minLength `1`
|
137999
|
+
* @maxLength `2`
|
138000
|
+
*/
|
138001
|
+
ActionOperations: {
|
138002
|
+
NavigationOperation: {
|
138003
|
+
LocalNavigationConfiguration: {
|
138004
|
+
/**
|
138005
|
+
* @minLength `1`
|
138006
|
+
* @maxLength `512`
|
138007
|
+
* @pattern `^[\w\-]+$`
|
138008
|
+
*/
|
138009
|
+
TargetSheetId: string;
|
138010
|
+
};
|
138011
|
+
};
|
138012
|
+
SetParametersOperation: {
|
138013
|
+
/**
|
138014
|
+
* @minLength `1`
|
138015
|
+
* @maxLength `200`
|
138016
|
+
*/
|
138017
|
+
ParameterValueConfigurations: {
|
138018
|
+
/**
|
138019
|
+
* @minLength `1`
|
138020
|
+
* @maxLength `2048`
|
138021
|
+
* @pattern `^[a-zA-Z0-9]+$`
|
138022
|
+
*/
|
138023
|
+
DestinationParameterName: string;
|
138024
|
+
Value: {
|
138025
|
+
CustomValuesConfiguration: {
|
138026
|
+
CustomValues: {
|
138027
|
+
/**
|
138028
|
+
* @minLength `0`
|
138029
|
+
* @maxLength `50000`
|
138030
|
+
*/
|
138031
|
+
DateTimeValues: string[];
|
138032
|
+
/**
|
138033
|
+
* @minLength `0`
|
138034
|
+
* @maxLength `50000`
|
138035
|
+
*/
|
138036
|
+
DecimalValues: number[];
|
138037
|
+
/**
|
138038
|
+
* @minLength `0`
|
138039
|
+
* @maxLength `50000`
|
138040
|
+
*/
|
138041
|
+
IntegerValues: number[];
|
138042
|
+
/**
|
138043
|
+
* @minLength `0`
|
138044
|
+
* @maxLength `50000`
|
138045
|
+
*/
|
138046
|
+
StringValues: string[];
|
138047
|
+
};
|
138048
|
+
IncludeNullValue: boolean;
|
138049
|
+
};
|
138050
|
+
SelectAllValueOptions: QuickSightTemplateSelectAllValueOptions;
|
138051
|
+
SourceColumn: {
|
138052
|
+
/**
|
138053
|
+
* @minLength `1`
|
138054
|
+
* @maxLength `127`
|
138055
|
+
*/
|
138056
|
+
ColumnName: string;
|
138057
|
+
/**
|
138058
|
+
* @minLength `1`
|
138059
|
+
* @maxLength `2048`
|
138060
|
+
*/
|
138061
|
+
DataSetIdentifier: string;
|
138062
|
+
};
|
138063
|
+
/**
|
138064
|
+
* @minLength `1`
|
138065
|
+
* @maxLength `512`
|
138066
|
+
*/
|
138067
|
+
SourceField: string;
|
138068
|
+
SourceParameterName: string;
|
138069
|
+
};
|
138070
|
+
}[];
|
138071
|
+
};
|
138072
|
+
URLOperation: {
|
138073
|
+
URLTarget: QuickSightTemplateURLTargetConfiguration;
|
138074
|
+
/**
|
138075
|
+
* @minLength `1`
|
138076
|
+
* @maxLength `2048`
|
138077
|
+
*/
|
138078
|
+
URLTemplate: string;
|
138079
|
+
};
|
138080
|
+
}[];
|
138081
|
+
/**
|
138082
|
+
* @minLength `1`
|
138083
|
+
* @maxLength `512`
|
138084
|
+
* @pattern `^[\w\-]+$`
|
138085
|
+
*/
|
138086
|
+
CustomActionId: string;
|
138087
|
+
/**
|
138088
|
+
* @minLength `1`
|
138089
|
+
* @maxLength `256`
|
138090
|
+
*/
|
138091
|
+
Name: string;
|
138092
|
+
Status: QuickSightTemplateWidgetStatus;
|
138093
|
+
Trigger: QuickSightTemplateImageCustomActionTrigger;
|
138094
|
+
}[];
|
138095
|
+
/**
|
138096
|
+
* @minLength `1`
|
138097
|
+
* @maxLength `1024`
|
138098
|
+
*/
|
138099
|
+
ImageContentAltText: string;
|
138100
|
+
Interactions: {
|
138101
|
+
ImageMenuOption: {
|
138102
|
+
AvailabilityStatus: unknown;
|
138103
|
+
};
|
138104
|
+
};
|
138105
|
+
Scaling: {
|
138106
|
+
ScalingType: QuickSightTemplateSheetImageScalingType;
|
138107
|
+
};
|
138108
|
+
/**
|
138109
|
+
* @minLength `1`
|
138110
|
+
* @maxLength `512`
|
138111
|
+
* @pattern `^[\w\-]+$`
|
138112
|
+
*/
|
138113
|
+
SheetImageId: string;
|
138114
|
+
Source: {
|
138115
|
+
SheetImageStaticFileSource: {
|
138116
|
+
/**
|
138117
|
+
* @minLength `1`
|
138118
|
+
* @maxLength `512`
|
138119
|
+
* @pattern `^[\w\-]+$`
|
138120
|
+
*/
|
138121
|
+
StaticFileId: string;
|
138122
|
+
};
|
138123
|
+
};
|
138124
|
+
Tooltip: {
|
138125
|
+
TooltipText: {
|
138126
|
+
/**
|
138127
|
+
* @minLength `1`
|
138128
|
+
* @maxLength `1024`
|
138129
|
+
*/
|
138130
|
+
PlainText: string;
|
138131
|
+
};
|
138132
|
+
Visibility: QuickSightTemplateVisibility;
|
138133
|
+
};
|
138134
|
+
}[];
|
136143
138135
|
/**
|
136144
138136
|
* <p>The name of a sheet. This name is displayed on the sheet's tab in the Amazon QuickSight
|
136145
138137
|
console.</p>
|
@@ -136489,6 +138481,11 @@ export type QuickSightTemplateBarChartVisual = {
|
|
136489
138481
|
ColumnHierarchies?: QuickSightTemplateColumnHierarchy[];
|
136490
138482
|
Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
|
136491
138483
|
Title?: QuickSightTemplateVisualTitleLabelOptions;
|
138484
|
+
/**
|
138485
|
+
* @minLength `1`
|
138486
|
+
* @maxLength `1024`
|
138487
|
+
*/
|
138488
|
+
VisualContentAltText?: string;
|
136492
138489
|
/**
|
136493
138490
|
* @minLength `1`
|
136494
138491
|
* @maxLength `512`
|
@@ -136648,6 +138645,11 @@ export type QuickSightTemplateBoxPlotVisual = {
|
|
136648
138645
|
ColumnHierarchies?: QuickSightTemplateColumnHierarchy[];
|
136649
138646
|
Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
|
136650
138647
|
Title?: QuickSightTemplateVisualTitleLabelOptions;
|
138648
|
+
/**
|
138649
|
+
* @minLength `1`
|
138650
|
+
* @maxLength `1024`
|
138651
|
+
*/
|
138652
|
+
VisualContentAltText?: string;
|
136651
138653
|
/**
|
136652
138654
|
* @minLength `1`
|
136653
138655
|
* @maxLength `512`
|
@@ -137062,6 +139064,11 @@ export type QuickSightTemplateComboChartVisual = {
|
|
137062
139064
|
ColumnHierarchies?: QuickSightTemplateColumnHierarchy[];
|
137063
139065
|
Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
|
137064
139066
|
Title?: QuickSightTemplateVisualTitleLabelOptions;
|
139067
|
+
/**
|
139068
|
+
* @minLength `1`
|
139069
|
+
* @maxLength `1024`
|
139070
|
+
*/
|
139071
|
+
VisualContentAltText?: string;
|
137065
139072
|
/**
|
137066
139073
|
* @minLength `1`
|
137067
139074
|
* @maxLength `512`
|
@@ -137352,6 +139359,11 @@ export type QuickSightTemplateCustomContentVisual = {
|
|
137352
139359
|
DataSetIdentifier: string;
|
137353
139360
|
Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
|
137354
139361
|
Title?: QuickSightTemplateVisualTitleLabelOptions;
|
139362
|
+
/**
|
139363
|
+
* @minLength `1`
|
139364
|
+
* @maxLength `1024`
|
139365
|
+
*/
|
139366
|
+
VisualContentAltText?: string;
|
137355
139367
|
/**
|
137356
139368
|
* @minLength `1`
|
137357
139369
|
* @maxLength `512`
|
@@ -138261,6 +140273,11 @@ export type QuickSightTemplateFilledMapVisual = {
|
|
138261
140273
|
ConditionalFormatting?: QuickSightTemplateFilledMapConditionalFormatting;
|
138262
140274
|
Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
|
138263
140275
|
Title?: QuickSightTemplateVisualTitleLabelOptions;
|
140276
|
+
/**
|
140277
|
+
* @minLength `1`
|
140278
|
+
* @maxLength `1024`
|
140279
|
+
*/
|
140280
|
+
VisualContentAltText?: string;
|
138264
140281
|
/**
|
138265
140282
|
* @minLength `1`
|
138266
140283
|
* @maxLength `512`
|
@@ -138889,6 +140906,11 @@ export type QuickSightTemplateFunnelChartVisual = {
|
|
138889
140906
|
ColumnHierarchies?: QuickSightTemplateColumnHierarchy[];
|
138890
140907
|
Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
|
138891
140908
|
Title?: QuickSightTemplateVisualTitleLabelOptions;
|
140909
|
+
/**
|
140910
|
+
* @minLength `1`
|
140911
|
+
* @maxLength `1024`
|
140912
|
+
*/
|
140913
|
+
VisualContentAltText?: string;
|
138892
140914
|
/**
|
138893
140915
|
* @minLength `1`
|
138894
140916
|
* @maxLength `512`
|
@@ -138982,6 +141004,11 @@ export type QuickSightTemplateGaugeChartVisual = {
|
|
138982
141004
|
ConditionalFormatting?: QuickSightTemplateGaugeChartConditionalFormatting;
|
138983
141005
|
Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
|
138984
141006
|
Title?: QuickSightTemplateVisualTitleLabelOptions;
|
141007
|
+
/**
|
141008
|
+
* @minLength `1`
|
141009
|
+
* @maxLength `1024`
|
141010
|
+
*/
|
141011
|
+
VisualContentAltText?: string;
|
138985
141012
|
/**
|
138986
141013
|
* @minLength `1`
|
138987
141014
|
* @maxLength `512`
|
@@ -139109,6 +141136,11 @@ export type QuickSightTemplateGeospatialMapVisual = {
|
|
139109
141136
|
ColumnHierarchies?: QuickSightTemplateColumnHierarchy[];
|
139110
141137
|
Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
|
139111
141138
|
Title?: QuickSightTemplateVisualTitleLabelOptions;
|
141139
|
+
/**
|
141140
|
+
* @minLength `1`
|
141141
|
+
* @maxLength `1024`
|
141142
|
+
*/
|
141143
|
+
VisualContentAltText?: string;
|
139112
141144
|
/**
|
139113
141145
|
* @minLength `1`
|
139114
141146
|
* @maxLength `512`
|
@@ -139344,6 +141376,11 @@ export type QuickSightTemplateHeatMapVisual = {
|
|
139344
141376
|
ColumnHierarchies?: QuickSightTemplateColumnHierarchy[];
|
139345
141377
|
Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
|
139346
141378
|
Title?: QuickSightTemplateVisualTitleLabelOptions;
|
141379
|
+
/**
|
141380
|
+
* @minLength `1`
|
141381
|
+
* @maxLength `1024`
|
141382
|
+
*/
|
141383
|
+
VisualContentAltText?: string;
|
139347
141384
|
/**
|
139348
141385
|
* @minLength `1`
|
139349
141386
|
* @maxLength `512`
|
@@ -139411,6 +141448,11 @@ export type QuickSightTemplateHistogramVisual = {
|
|
139411
141448
|
ChartConfiguration?: QuickSightTemplateHistogramConfiguration;
|
139412
141449
|
Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
|
139413
141450
|
Title?: QuickSightTemplateVisualTitleLabelOptions;
|
141451
|
+
/**
|
141452
|
+
* @minLength `1`
|
141453
|
+
* @maxLength `1024`
|
141454
|
+
*/
|
141455
|
+
VisualContentAltText?: string;
|
139414
141456
|
/**
|
139415
141457
|
* @minLength `1`
|
139416
141458
|
* @maxLength `512`
|
@@ -139428,6 +141470,58 @@ export type QuickSightTemplateHorizontalTextAlignment = "LEFT" | "CENTER" | "RIG
|
|
139428
141470
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-icon.html}
|
139429
141471
|
*/
|
139430
141472
|
export type QuickSightTemplateIcon = "CARET_UP" | "CARET_DOWN" | "PLUS" | "MINUS" | "ARROW_UP" | "ARROW_DOWN" | "ARROW_LEFT" | "ARROW_UP_LEFT" | "ARROW_DOWN_LEFT" | "ARROW_RIGHT" | "ARROW_UP_RIGHT" | "ARROW_DOWN_RIGHT" | "FACE_UP" | "FACE_DOWN" | "FACE_FLAT" | "ONE_BAR" | "TWO_BAR" | "THREE_BAR" | "CIRCLE" | "TRIANGLE" | "SQUARE" | "FLAG" | "THUMBS_UP" | "THUMBS_DOWN" | "CHECKMARK" | "X";
|
141473
|
+
/**
|
141474
|
+
* Type definition for `AWS::QuickSight::Template.ImageCustomAction`.
|
141475
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-imagecustomaction.html}
|
141476
|
+
*/
|
141477
|
+
export type QuickSightTemplateImageCustomAction = {
|
141478
|
+
/**
|
141479
|
+
* @minLength `1`
|
141480
|
+
* @maxLength `2`
|
141481
|
+
*/
|
141482
|
+
ActionOperations: QuickSightTemplateImageCustomActionOperation[];
|
141483
|
+
/**
|
141484
|
+
* @minLength `1`
|
141485
|
+
* @maxLength `512`
|
141486
|
+
* @pattern `^[\w\-]+$`
|
141487
|
+
*/
|
141488
|
+
CustomActionId: string;
|
141489
|
+
/**
|
141490
|
+
* @minLength `1`
|
141491
|
+
* @maxLength `256`
|
141492
|
+
*/
|
141493
|
+
Name: string;
|
141494
|
+
Status?: QuickSightTemplateWidgetStatus;
|
141495
|
+
Trigger: QuickSightTemplateImageCustomActionTrigger;
|
141496
|
+
};
|
141497
|
+
/**
|
141498
|
+
* Type definition for `AWS::QuickSight::Template.ImageCustomActionOperation`.
|
141499
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-imagecustomactionoperation.html}
|
141500
|
+
*/
|
141501
|
+
export type QuickSightTemplateImageCustomActionOperation = {
|
141502
|
+
NavigationOperation?: QuickSightTemplateCustomActionNavigationOperation;
|
141503
|
+
SetParametersOperation?: QuickSightTemplateCustomActionSetParametersOperation;
|
141504
|
+
URLOperation?: QuickSightTemplateCustomActionURLOperation;
|
141505
|
+
};
|
141506
|
+
/**
|
141507
|
+
* Type definition for `AWS::QuickSight::Template.ImageCustomActionTrigger`.
|
141508
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-imagecustomactiontrigger.html}
|
141509
|
+
*/
|
141510
|
+
export type QuickSightTemplateImageCustomActionTrigger = "CLICK" | "MENU";
|
141511
|
+
/**
|
141512
|
+
* Type definition for `AWS::QuickSight::Template.ImageInteractionOptions`.
|
141513
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-imageinteractionoptions.html}
|
141514
|
+
*/
|
141515
|
+
export type QuickSightTemplateImageInteractionOptions = {
|
141516
|
+
ImageMenuOption?: QuickSightTemplateImageMenuOption;
|
141517
|
+
};
|
141518
|
+
/**
|
141519
|
+
* Type definition for `AWS::QuickSight::Template.ImageMenuOption`.
|
141520
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-imagemenuoption.html}
|
141521
|
+
*/
|
141522
|
+
export type QuickSightTemplateImageMenuOption = {
|
141523
|
+
AvailabilityStatus?: unknown;
|
141524
|
+
};
|
139431
141525
|
/**
|
139432
141526
|
* Type definition for `AWS::QuickSight::Template.InnerFilter`.
|
139433
141527
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-innerfilter.html}
|
@@ -139465,6 +141559,11 @@ export type QuickSightTemplateInsightVisual = {
|
|
139465
141559
|
InsightConfiguration?: QuickSightTemplateInsightConfiguration;
|
139466
141560
|
Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
|
139467
141561
|
Title?: QuickSightTemplateVisualTitleLabelOptions;
|
141562
|
+
/**
|
141563
|
+
* @minLength `1`
|
141564
|
+
* @maxLength `1024`
|
141565
|
+
*/
|
141566
|
+
VisualContentAltText?: string;
|
139468
141567
|
/**
|
139469
141568
|
* @minLength `1`
|
139470
141569
|
* @maxLength `512`
|
@@ -139665,6 +141764,11 @@ export type QuickSightTemplateKPIVisual = {
|
|
139665
141764
|
ConditionalFormatting?: QuickSightTemplateKPIConditionalFormatting;
|
139666
141765
|
Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
|
139667
141766
|
Title?: QuickSightTemplateVisualTitleLabelOptions;
|
141767
|
+
/**
|
141768
|
+
* @minLength `1`
|
141769
|
+
* @maxLength `1024`
|
141770
|
+
*/
|
141771
|
+
VisualContentAltText?: string;
|
139668
141772
|
/**
|
139669
141773
|
* @minLength `1`
|
139670
141774
|
* @maxLength `512`
|
@@ -139732,6 +141836,7 @@ export type QuickSightTemplateLegendOptions = {
|
|
139732
141836
|
Height?: string;
|
139733
141837
|
Position?: QuickSightTemplateLegendPosition;
|
139734
141838
|
Title?: QuickSightTemplateLabelOptions;
|
141839
|
+
ValueFontConfiguration?: QuickSightTemplateFontConfiguration;
|
139735
141840
|
Visibility?: QuickSightTemplateVisibility;
|
139736
141841
|
/**
|
139737
141842
|
* String based length that is composed of value and unit in px
|
@@ -139916,6 +142021,11 @@ export type QuickSightTemplateLineChartVisual = {
|
|
139916
142021
|
ColumnHierarchies?: QuickSightTemplateColumnHierarchy[];
|
139917
142022
|
Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
|
139918
142023
|
Title?: QuickSightTemplateVisualTitleLabelOptions;
|
142024
|
+
/**
|
142025
|
+
* @minLength `1`
|
142026
|
+
* @maxLength `1024`
|
142027
|
+
*/
|
142028
|
+
VisualContentAltText?: string;
|
139919
142029
|
/**
|
139920
142030
|
* @minLength `1`
|
139921
142031
|
* @maxLength `512`
|
@@ -140740,6 +142850,11 @@ export type QuickSightTemplatePieChartVisual = {
|
|
140740
142850
|
ColumnHierarchies?: QuickSightTemplateColumnHierarchy[];
|
140741
142851
|
Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
|
140742
142852
|
Title?: QuickSightTemplateVisualTitleLabelOptions;
|
142853
|
+
/**
|
142854
|
+
* @minLength `1`
|
142855
|
+
* @maxLength `1024`
|
142856
|
+
*/
|
142857
|
+
VisualContentAltText?: string;
|
140743
142858
|
/**
|
140744
142859
|
* @minLength `1`
|
140745
142860
|
* @maxLength `512`
|
@@ -141038,6 +143153,11 @@ export type QuickSightTemplatePivotTableVisual = {
|
|
141038
143153
|
ConditionalFormatting?: QuickSightTemplatePivotTableConditionalFormatting;
|
141039
143154
|
Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
|
141040
143155
|
Title?: QuickSightTemplateVisualTitleLabelOptions;
|
143156
|
+
/**
|
143157
|
+
* @minLength `1`
|
143158
|
+
* @maxLength `1024`
|
143159
|
+
*/
|
143160
|
+
VisualContentAltText?: string;
|
141041
143161
|
/**
|
141042
143162
|
* @minLength `1`
|
141043
143163
|
* @maxLength `512`
|
@@ -141063,6 +143183,108 @@ export type QuickSightTemplatePivotTotalOptions = {
|
|
141063
143183
|
TotalsVisibility?: QuickSightTemplateVisibility;
|
141064
143184
|
ValueCellStyle?: QuickSightTemplateTableCellStyle;
|
141065
143185
|
};
|
143186
|
+
/**
|
143187
|
+
* Type definition for `AWS::QuickSight::Template.PluginVisual`.
|
143188
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-pluginvisual.html}
|
143189
|
+
*/
|
143190
|
+
export type QuickSightTemplatePluginVisual = {
|
143191
|
+
ChartConfiguration?: QuickSightTemplatePluginVisualConfiguration;
|
143192
|
+
PluginArn: string;
|
143193
|
+
Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
|
143194
|
+
Title?: QuickSightTemplateVisualTitleLabelOptions;
|
143195
|
+
/**
|
143196
|
+
* @minLength `1`
|
143197
|
+
* @maxLength `1024`
|
143198
|
+
*/
|
143199
|
+
VisualContentAltText?: string;
|
143200
|
+
/**
|
143201
|
+
* @minLength `1`
|
143202
|
+
* @maxLength `512`
|
143203
|
+
* @pattern `^[\w\-]+$`
|
143204
|
+
*/
|
143205
|
+
VisualId: string;
|
143206
|
+
};
|
143207
|
+
/**
|
143208
|
+
* Type definition for `AWS::QuickSight::Template.PluginVisualAxisName`.
|
143209
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-pluginvisualaxisname.html}
|
143210
|
+
*/
|
143211
|
+
export type QuickSightTemplatePluginVisualAxisName = "GROUP_BY" | "VALUE";
|
143212
|
+
/**
|
143213
|
+
* Type definition for `AWS::QuickSight::Template.PluginVisualConfiguration`.
|
143214
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-pluginvisualconfiguration.html}
|
143215
|
+
*/
|
143216
|
+
export type QuickSightTemplatePluginVisualConfiguration = {
|
143217
|
+
/**
|
143218
|
+
* @minLength `0`
|
143219
|
+
* @maxLength `10`
|
143220
|
+
*/
|
143221
|
+
FieldWells?: QuickSightTemplatePluginVisualFieldWell[];
|
143222
|
+
SortConfiguration?: QuickSightTemplatePluginVisualSortConfiguration;
|
143223
|
+
VisualOptions?: QuickSightTemplatePluginVisualOptions;
|
143224
|
+
};
|
143225
|
+
/**
|
143226
|
+
* Type definition for `AWS::QuickSight::Template.PluginVisualFieldWell`.
|
143227
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-pluginvisualfieldwell.html}
|
143228
|
+
*/
|
143229
|
+
export type QuickSightTemplatePluginVisualFieldWell = {
|
143230
|
+
AxisName?: QuickSightTemplatePluginVisualAxisName;
|
143231
|
+
/**
|
143232
|
+
* @minLength `0`
|
143233
|
+
* @maxLength `200`
|
143234
|
+
*/
|
143235
|
+
Dimensions?: QuickSightTemplateDimensionField[];
|
143236
|
+
/**
|
143237
|
+
* @minLength `0`
|
143238
|
+
* @maxLength `200`
|
143239
|
+
*/
|
143240
|
+
Measures?: QuickSightTemplateMeasureField[];
|
143241
|
+
/**
|
143242
|
+
* @minLength `0`
|
143243
|
+
* @maxLength `200`
|
143244
|
+
*/
|
143245
|
+
Unaggregated?: QuickSightTemplateUnaggregatedField[];
|
143246
|
+
};
|
143247
|
+
/**
|
143248
|
+
* Type definition for `AWS::QuickSight::Template.PluginVisualItemsLimitConfiguration`.
|
143249
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-pluginvisualitemslimitconfiguration.html}
|
143250
|
+
*/
|
143251
|
+
export type QuickSightTemplatePluginVisualItemsLimitConfiguration = {
|
143252
|
+
ItemsLimit?: number;
|
143253
|
+
};
|
143254
|
+
/**
|
143255
|
+
* Type definition for `AWS::QuickSight::Template.PluginVisualOptions`.
|
143256
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-pluginvisualoptions.html}
|
143257
|
+
*/
|
143258
|
+
export type QuickSightTemplatePluginVisualOptions = {
|
143259
|
+
VisualProperties?: QuickSightTemplatePluginVisualProperty[];
|
143260
|
+
};
|
143261
|
+
/**
|
143262
|
+
* Type definition for `AWS::QuickSight::Template.PluginVisualProperty`.
|
143263
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-pluginvisualproperty.html}
|
143264
|
+
*/
|
143265
|
+
export type QuickSightTemplatePluginVisualProperty = {
|
143266
|
+
Name?: string;
|
143267
|
+
Value?: string;
|
143268
|
+
};
|
143269
|
+
/**
|
143270
|
+
* Type definition for `AWS::QuickSight::Template.PluginVisualSortConfiguration`.
|
143271
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-pluginvisualsortconfiguration.html}
|
143272
|
+
*/
|
143273
|
+
export type QuickSightTemplatePluginVisualSortConfiguration = {
|
143274
|
+
PluginVisualTableQuerySort?: QuickSightTemplatePluginVisualTableQuerySort;
|
143275
|
+
};
|
143276
|
+
/**
|
143277
|
+
* Type definition for `AWS::QuickSight::Template.PluginVisualTableQuerySort`.
|
143278
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-pluginvisualtablequerysort.html}
|
143279
|
+
*/
|
143280
|
+
export type QuickSightTemplatePluginVisualTableQuerySort = {
|
143281
|
+
ItemsLimitConfiguration?: QuickSightTemplatePluginVisualItemsLimitConfiguration;
|
143282
|
+
/**
|
143283
|
+
* @minLength `0`
|
143284
|
+
* @maxLength `100`
|
143285
|
+
*/
|
143286
|
+
RowSort?: QuickSightTemplateFieldSortOptions[];
|
143287
|
+
};
|
141066
143288
|
/**
|
141067
143289
|
* Type definition for `AWS::QuickSight::Template.PredefinedHierarchy`.
|
141068
143290
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-predefinedhierarchy.html}
|
@@ -141227,6 +143449,11 @@ export type QuickSightTemplateRadarChartVisual = {
|
|
141227
143449
|
ColumnHierarchies?: QuickSightTemplateColumnHierarchy[];
|
141228
143450
|
Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
|
141229
143451
|
Title?: QuickSightTemplateVisualTitleLabelOptions;
|
143452
|
+
/**
|
143453
|
+
* @minLength `1`
|
143454
|
+
* @maxLength `1024`
|
143455
|
+
*/
|
143456
|
+
VisualContentAltText?: string;
|
141230
143457
|
/**
|
141231
143458
|
* @minLength `1`
|
141232
143459
|
* @maxLength `512`
|
@@ -141543,6 +143770,11 @@ export type QuickSightTemplateSankeyDiagramVisual = {
|
|
141543
143770
|
ChartConfiguration?: QuickSightTemplateSankeyDiagramChartConfiguration;
|
141544
143771
|
Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
|
141545
143772
|
Title?: QuickSightTemplateVisualTitleLabelOptions;
|
143773
|
+
/**
|
143774
|
+
* @minLength `1`
|
143775
|
+
* @maxLength `1024`
|
143776
|
+
*/
|
143777
|
+
VisualContentAltText?: string;
|
141546
143778
|
/**
|
141547
143779
|
* @minLength `1`
|
141548
143780
|
* @maxLength `512`
|
@@ -141653,6 +143885,11 @@ export type QuickSightTemplateScatterPlotVisual = {
|
|
141653
143885
|
ColumnHierarchies?: QuickSightTemplateColumnHierarchy[];
|
141654
143886
|
Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
|
141655
143887
|
Title?: QuickSightTemplateVisualTitleLabelOptions;
|
143888
|
+
/**
|
143889
|
+
* @minLength `1`
|
143890
|
+
* @maxLength `1024`
|
143891
|
+
*/
|
143892
|
+
VisualContentAltText?: string;
|
141656
143893
|
/**
|
141657
143894
|
* @minLength `1`
|
141658
143895
|
* @maxLength `512`
|
@@ -141814,6 +144051,11 @@ export type QuickSightTemplateShapeConditionalFormat = {
|
|
141814
144051
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-sheet.html}
|
141815
144052
|
*/
|
141816
144053
|
export type QuickSightTemplateSheet = {
|
144054
|
+
/**
|
144055
|
+
* @minLength `0`
|
144056
|
+
* @maxLength `10`
|
144057
|
+
*/
|
144058
|
+
Images?: QuickSightTemplateSheetImage[];
|
141817
144059
|
/**
|
141818
144060
|
* <p>The name of a sheet. This name is displayed on the sheet's tab in the Amazon QuickSight
|
141819
144061
|
console.</p>
|
@@ -141891,6 +144133,11 @@ export type QuickSightTemplateSheetDefinition = {
|
|
141891
144133
|
* @maxLength `200`
|
141892
144134
|
*/
|
141893
144135
|
FilterControls?: QuickSightTemplateFilterControl[];
|
144136
|
+
/**
|
144137
|
+
* @minLength `0`
|
144138
|
+
* @maxLength `10`
|
144139
|
+
*/
|
144140
|
+
Images?: QuickSightTemplateSheetImage[];
|
141894
144141
|
/**
|
141895
144142
|
* @minLength `1`
|
141896
144143
|
* @maxLength `1`
|
@@ -141952,6 +144199,82 @@ export type QuickSightTemplateSheetElementRenderingRule = {
|
|
141952
144199
|
*/
|
141953
144200
|
Expression: string;
|
141954
144201
|
};
|
144202
|
+
/**
|
144203
|
+
* Type definition for `AWS::QuickSight::Template.SheetImage`.
|
144204
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-sheetimage.html}
|
144205
|
+
*/
|
144206
|
+
export type QuickSightTemplateSheetImage = {
|
144207
|
+
/**
|
144208
|
+
* @minLength `0`
|
144209
|
+
* @maxLength `10`
|
144210
|
+
*/
|
144211
|
+
Actions?: QuickSightTemplateImageCustomAction[];
|
144212
|
+
/**
|
144213
|
+
* @minLength `1`
|
144214
|
+
* @maxLength `1024`
|
144215
|
+
*/
|
144216
|
+
ImageContentAltText?: string;
|
144217
|
+
Interactions?: QuickSightTemplateImageInteractionOptions;
|
144218
|
+
Scaling?: QuickSightTemplateSheetImageScalingConfiguration;
|
144219
|
+
/**
|
144220
|
+
* @minLength `1`
|
144221
|
+
* @maxLength `512`
|
144222
|
+
* @pattern `^[\w\-]+$`
|
144223
|
+
*/
|
144224
|
+
SheetImageId: string;
|
144225
|
+
Source: QuickSightTemplateSheetImageSource;
|
144226
|
+
Tooltip?: QuickSightTemplateSheetImageTooltipConfiguration;
|
144227
|
+
};
|
144228
|
+
/**
|
144229
|
+
* Type definition for `AWS::QuickSight::Template.SheetImageScalingConfiguration`.
|
144230
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-sheetimagescalingconfiguration.html}
|
144231
|
+
*/
|
144232
|
+
export type QuickSightTemplateSheetImageScalingConfiguration = {
|
144233
|
+
ScalingType?: QuickSightTemplateSheetImageScalingType;
|
144234
|
+
};
|
144235
|
+
/**
|
144236
|
+
* Type definition for `AWS::QuickSight::Template.SheetImageScalingType`.
|
144237
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-sheetimagescalingtype.html}
|
144238
|
+
*/
|
144239
|
+
export type QuickSightTemplateSheetImageScalingType = "SCALE_TO_WIDTH" | "SCALE_TO_HEIGHT" | "SCALE_TO_CONTAINER" | "SCALE_NONE";
|
144240
|
+
/**
|
144241
|
+
* Type definition for `AWS::QuickSight::Template.SheetImageSource`.
|
144242
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-sheetimagesource.html}
|
144243
|
+
*/
|
144244
|
+
export type QuickSightTemplateSheetImageSource = {
|
144245
|
+
SheetImageStaticFileSource?: QuickSightTemplateSheetImageStaticFileSource;
|
144246
|
+
};
|
144247
|
+
/**
|
144248
|
+
* Type definition for `AWS::QuickSight::Template.SheetImageStaticFileSource`.
|
144249
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-sheetimagestaticfilesource.html}
|
144250
|
+
*/
|
144251
|
+
export type QuickSightTemplateSheetImageStaticFileSource = {
|
144252
|
+
/**
|
144253
|
+
* @minLength `1`
|
144254
|
+
* @maxLength `512`
|
144255
|
+
* @pattern `^[\w\-]+$`
|
144256
|
+
*/
|
144257
|
+
StaticFileId: string;
|
144258
|
+
};
|
144259
|
+
/**
|
144260
|
+
* Type definition for `AWS::QuickSight::Template.SheetImageTooltipConfiguration`.
|
144261
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-sheetimagetooltipconfiguration.html}
|
144262
|
+
*/
|
144263
|
+
export type QuickSightTemplateSheetImageTooltipConfiguration = {
|
144264
|
+
TooltipText?: QuickSightTemplateSheetImageTooltipText;
|
144265
|
+
Visibility?: QuickSightTemplateVisibility;
|
144266
|
+
};
|
144267
|
+
/**
|
144268
|
+
* Type definition for `AWS::QuickSight::Template.SheetImageTooltipText`.
|
144269
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-sheetimagetooltiptext.html}
|
144270
|
+
*/
|
144271
|
+
export type QuickSightTemplateSheetImageTooltipText = {
|
144272
|
+
/**
|
144273
|
+
* @minLength `1`
|
144274
|
+
* @maxLength `1024`
|
144275
|
+
*/
|
144276
|
+
PlainText?: string;
|
144277
|
+
};
|
141955
144278
|
/**
|
141956
144279
|
* Type definition for `AWS::QuickSight::Template.SheetTextBox`.
|
141957
144280
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-sheettextbox.html}
|
@@ -142523,6 +144846,11 @@ export type QuickSightTemplateTableVisual = {
|
|
142523
144846
|
ConditionalFormatting?: QuickSightTemplateTableConditionalFormatting;
|
142524
144847
|
Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
|
142525
144848
|
Title?: QuickSightTemplateVisualTitleLabelOptions;
|
144849
|
+
/**
|
144850
|
+
* @minLength `1`
|
144851
|
+
* @maxLength `1024`
|
144852
|
+
*/
|
144853
|
+
VisualContentAltText?: string;
|
142526
144854
|
/**
|
142527
144855
|
* @minLength `1`
|
142528
144856
|
* @maxLength `512`
|
@@ -143090,6 +145418,11 @@ export type QuickSightTemplateTreeMapVisual = {
|
|
143090
145418
|
ColumnHierarchies?: QuickSightTemplateColumnHierarchy[];
|
143091
145419
|
Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
|
143092
145420
|
Title?: QuickSightTemplateVisualTitleLabelOptions;
|
145421
|
+
/**
|
145422
|
+
* @minLength `1`
|
145423
|
+
* @maxLength `1024`
|
145424
|
+
*/
|
145425
|
+
VisualContentAltText?: string;
|
143093
145426
|
/**
|
143094
145427
|
* @minLength `1`
|
143095
145428
|
* @maxLength `512`
|
@@ -143192,6 +145525,7 @@ export type QuickSightTemplateVisual = {
|
|
143192
145525
|
LineChartVisual?: QuickSightTemplateLineChartVisual;
|
143193
145526
|
PieChartVisual?: QuickSightTemplatePieChartVisual;
|
143194
145527
|
PivotTableVisual?: QuickSightTemplatePivotTableVisual;
|
145528
|
+
PluginVisual?: QuickSightTemplatePluginVisual;
|
143195
145529
|
RadarChartVisual?: QuickSightTemplateRadarChartVisual;
|
143196
145530
|
SankeyDiagramVisual?: QuickSightTemplateSankeyDiagramVisual;
|
143197
145531
|
ScatterPlotVisual?: QuickSightTemplateScatterPlotVisual;
|
@@ -143377,6 +145711,11 @@ export type QuickSightTemplateWaterfallVisual = {
|
|
143377
145711
|
ColumnHierarchies?: QuickSightTemplateColumnHierarchy[];
|
143378
145712
|
Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
|
143379
145713
|
Title?: QuickSightTemplateVisualTitleLabelOptions;
|
145714
|
+
/**
|
145715
|
+
* @minLength `1`
|
145716
|
+
* @maxLength `1024`
|
145717
|
+
*/
|
145718
|
+
VisualContentAltText?: string;
|
143380
145719
|
/**
|
143381
145720
|
* @minLength `1`
|
143382
145721
|
* @maxLength `512`
|
@@ -143490,6 +145829,11 @@ export type QuickSightTemplateWordCloudVisual = {
|
|
143490
145829
|
ColumnHierarchies?: QuickSightTemplateColumnHierarchy[];
|
143491
145830
|
Subtitle?: QuickSightTemplateVisualSubtitleLabelOptions;
|
143492
145831
|
Title?: QuickSightTemplateVisualTitleLabelOptions;
|
145832
|
+
/**
|
145833
|
+
* @minLength `1`
|
145834
|
+
* @maxLength `1024`
|
145835
|
+
*/
|
145836
|
+
VisualContentAltText?: string;
|
143493
145837
|
/**
|
143494
145838
|
* @minLength `1`
|
143495
145839
|
* @maxLength `512`
|
@@ -179727,6 +182071,7 @@ export type WisdomKnowledgeBaseProps = {
|
|
179727
182071
|
ServerSideEncryptionConfiguration?: WisdomKnowledgeBaseServerSideEncryptionConfiguration;
|
179728
182072
|
SourceConfiguration?: WisdomKnowledgeBaseSourceConfiguration;
|
179729
182073
|
Tags?: WisdomKnowledgeBaseTag[];
|
182074
|
+
VectorIngestionConfiguration?: WisdomKnowledgeBaseVectorIngestionConfiguration;
|
179730
182075
|
};
|
179731
182076
|
/**
|
179732
182077
|
* Attribute type definition for `AWS::Wisdom::KnowledgeBase`.
|
@@ -179759,11 +182104,78 @@ export type WisdomKnowledgeBaseAppIntegrationsConfiguration = {
|
|
179759
182104
|
*/
|
179760
182105
|
ObjectFields?: string[];
|
179761
182106
|
};
|
182107
|
+
/**
|
182108
|
+
* Type definition for `AWS::Wisdom::KnowledgeBase.BedrockFoundationModelConfiguration`.
|
182109
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-bedrockfoundationmodelconfiguration.html}
|
182110
|
+
*/
|
182111
|
+
export type WisdomKnowledgeBaseBedrockFoundationModelConfiguration = {
|
182112
|
+
/**
|
182113
|
+
* @minLength `1`
|
182114
|
+
* @maxLength `2048`
|
182115
|
+
* @pattern `^arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}::foundation-model\/anthropic.claude-3-haiku-20240307-v1:0$`
|
182116
|
+
*/
|
182117
|
+
ModelArn: string;
|
182118
|
+
ParsingPrompt?: {
|
182119
|
+
/**
|
182120
|
+
* @minLength `1`
|
182121
|
+
* @maxLength `10000`
|
182122
|
+
*/
|
182123
|
+
ParsingPromptText: string;
|
182124
|
+
};
|
182125
|
+
};
|
182126
|
+
/**
|
182127
|
+
* Type definition for `AWS::Wisdom::KnowledgeBase.FixedSizeChunkingConfiguration`.
|
182128
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-fixedsizechunkingconfiguration.html}
|
182129
|
+
*/
|
182130
|
+
export type WisdomKnowledgeBaseFixedSizeChunkingConfiguration = {
|
182131
|
+
/**
|
182132
|
+
* @min `1`
|
182133
|
+
*/
|
182134
|
+
MaxTokens: number;
|
182135
|
+
/**
|
182136
|
+
* @min `1`
|
182137
|
+
* @max `99`
|
182138
|
+
*/
|
182139
|
+
OverlapPercentage: number;
|
182140
|
+
};
|
182141
|
+
/**
|
182142
|
+
* Type definition for `AWS::Wisdom::KnowledgeBase.HierarchicalChunkingConfiguration`.
|
182143
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-hierarchicalchunkingconfiguration.html}
|
182144
|
+
*/
|
182145
|
+
export type WisdomKnowledgeBaseHierarchicalChunkingConfiguration = {
|
182146
|
+
/**
|
182147
|
+
* @minLength `2`
|
182148
|
+
* @maxLength `2`
|
182149
|
+
*/
|
182150
|
+
LevelConfigurations: WisdomKnowledgeBaseHierarchicalChunkingLevelConfiguration[];
|
182151
|
+
/**
|
182152
|
+
* @min `1`
|
182153
|
+
*/
|
182154
|
+
OverlapTokens: number;
|
182155
|
+
};
|
182156
|
+
/**
|
182157
|
+
* Type definition for `AWS::Wisdom::KnowledgeBase.HierarchicalChunkingLevelConfiguration`.
|
182158
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-hierarchicalchunkinglevelconfiguration.html}
|
182159
|
+
*/
|
182160
|
+
export type WisdomKnowledgeBaseHierarchicalChunkingLevelConfiguration = {
|
182161
|
+
/**
|
182162
|
+
* @min `1`
|
182163
|
+
* @max `8192`
|
182164
|
+
*/
|
182165
|
+
MaxTokens: number;
|
182166
|
+
};
|
179762
182167
|
/**
|
179763
182168
|
* Type definition for `AWS::Wisdom::KnowledgeBase.KnowledgeBaseType`.
|
179764
182169
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-knowledgebasetype.html}
|
179765
182170
|
*/
|
179766
|
-
export type WisdomKnowledgeBaseKnowledgeBaseType = "EXTERNAL" | "CUSTOM" | "MESSAGE_TEMPLATES";
|
182171
|
+
export type WisdomKnowledgeBaseKnowledgeBaseType = "EXTERNAL" | "CUSTOM" | "MESSAGE_TEMPLATES" | "MANAGED";
|
182172
|
+
/**
|
182173
|
+
* Type definition for `AWS::Wisdom::KnowledgeBase.ManagedSourceConfiguration`.
|
182174
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-managedsourceconfiguration.html}
|
182175
|
+
*/
|
182176
|
+
export type WisdomKnowledgeBaseManagedSourceConfiguration = {
|
182177
|
+
WebCrawlerConfiguration: WisdomKnowledgeBaseWebCrawlerConfiguration;
|
182178
|
+
};
|
179767
182179
|
/**
|
179768
182180
|
* Type definition for `AWS::Wisdom::KnowledgeBase.RenderingConfiguration`.
|
179769
182181
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-renderingconfiguration.html}
|
@@ -179775,6 +182187,36 @@ export type WisdomKnowledgeBaseRenderingConfiguration = {
|
|
179775
182187
|
*/
|
179776
182188
|
TemplateUri?: string;
|
179777
182189
|
};
|
182190
|
+
/**
|
182191
|
+
* Type definition for `AWS::Wisdom::KnowledgeBase.SeedUrl`.
|
182192
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-seedurl.html}
|
182193
|
+
*/
|
182194
|
+
export type WisdomKnowledgeBaseSeedUrl = {
|
182195
|
+
/**
|
182196
|
+
* @pattern `^https?://[A-Za-z0-9][^\s]*$`
|
182197
|
+
*/
|
182198
|
+
Url?: string;
|
182199
|
+
};
|
182200
|
+
/**
|
182201
|
+
* Type definition for `AWS::Wisdom::KnowledgeBase.SemanticChunkingConfiguration`.
|
182202
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-semanticchunkingconfiguration.html}
|
182203
|
+
*/
|
182204
|
+
export type WisdomKnowledgeBaseSemanticChunkingConfiguration = {
|
182205
|
+
/**
|
182206
|
+
* @min `50`
|
182207
|
+
* @max `99`
|
182208
|
+
*/
|
182209
|
+
BreakpointPercentileThreshold: number;
|
182210
|
+
/**
|
182211
|
+
* @min `0`
|
182212
|
+
* @max `1`
|
182213
|
+
*/
|
182214
|
+
BufferSize: number;
|
182215
|
+
/**
|
182216
|
+
* @min `1`
|
182217
|
+
*/
|
182218
|
+
MaxTokens: number;
|
182219
|
+
};
|
179778
182220
|
/**
|
179779
182221
|
* Type definition for `AWS::Wisdom::KnowledgeBase.ServerSideEncryptionConfiguration`.
|
179780
182222
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-serversideencryptionconfiguration.html}
|
@@ -179791,7 +182233,9 @@ export type WisdomKnowledgeBaseServerSideEncryptionConfiguration = {
|
|
179791
182233
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-sourceconfiguration.html}
|
179792
182234
|
*/
|
179793
182235
|
export type WisdomKnowledgeBaseSourceConfiguration = {
|
179794
|
-
AppIntegrations
|
182236
|
+
AppIntegrations: WisdomKnowledgeBaseAppIntegrationsConfiguration;
|
182237
|
+
} | {
|
182238
|
+
ManagedSourceConfiguration: WisdomKnowledgeBaseManagedSourceConfiguration;
|
179795
182239
|
};
|
179796
182240
|
/**
|
179797
182241
|
* Type definition for `AWS::Wisdom::KnowledgeBase.Tag`.
|
@@ -179810,6 +182254,53 @@ export type WisdomKnowledgeBaseTag = {
|
|
179810
182254
|
*/
|
179811
182255
|
Value: string;
|
179812
182256
|
};
|
182257
|
+
/**
|
182258
|
+
* Type definition for `AWS::Wisdom::KnowledgeBase.VectorIngestionConfiguration`.
|
182259
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-vectoringestionconfiguration.html}
|
182260
|
+
*/
|
182261
|
+
export type WisdomKnowledgeBaseVectorIngestionConfiguration = {
|
182262
|
+
ChunkingConfiguration?: {
|
182263
|
+
ChunkingStrategy: "FIXED_SIZE" | "NONE" | "HIERARCHICAL" | "SEMANTIC";
|
182264
|
+
FixedSizeChunkingConfiguration?: WisdomKnowledgeBaseFixedSizeChunkingConfiguration;
|
182265
|
+
HierarchicalChunkingConfiguration?: WisdomKnowledgeBaseHierarchicalChunkingConfiguration;
|
182266
|
+
SemanticChunkingConfiguration?: WisdomKnowledgeBaseSemanticChunkingConfiguration;
|
182267
|
+
};
|
182268
|
+
ParsingConfiguration?: {
|
182269
|
+
BedrockFoundationModelConfiguration?: WisdomKnowledgeBaseBedrockFoundationModelConfiguration;
|
182270
|
+
ParsingStrategy: "BEDROCK_FOUNDATION_MODEL";
|
182271
|
+
};
|
182272
|
+
};
|
182273
|
+
/**
|
182274
|
+
* Type definition for `AWS::Wisdom::KnowledgeBase.WebCrawlerConfiguration`.
|
182275
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-webcrawlerconfiguration.html}
|
182276
|
+
*/
|
182277
|
+
export type WisdomKnowledgeBaseWebCrawlerConfiguration = {
|
182278
|
+
CrawlerLimits?: {
|
182279
|
+
/**
|
182280
|
+
* @min `1`
|
182281
|
+
* @max `3000`
|
182282
|
+
*/
|
182283
|
+
RateLimit?: number;
|
182284
|
+
};
|
182285
|
+
/**
|
182286
|
+
* @minLength `1`
|
182287
|
+
* @maxLength `25`
|
182288
|
+
*/
|
182289
|
+
ExclusionFilters?: string[];
|
182290
|
+
/**
|
182291
|
+
* @minLength `1`
|
182292
|
+
* @maxLength `25`
|
182293
|
+
*/
|
182294
|
+
InclusionFilters?: string[];
|
182295
|
+
Scope?: "HOST_ONLY" | "SUBDOMAINS";
|
182296
|
+
UrlConfiguration: {
|
182297
|
+
/**
|
182298
|
+
* @minLength `1`
|
182299
|
+
* @maxLength `100`
|
182300
|
+
*/
|
182301
|
+
SeedUrls?: WisdomKnowledgeBaseSeedUrl[];
|
182302
|
+
};
|
182303
|
+
};
|
179813
182304
|
/**
|
179814
182305
|
* Definition of AWS::Wisdom::MessageTemplate Resource Type
|
179815
182306
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-messagetemplate.html}
|
@@ -182232,6 +184723,7 @@ export interface ResourceTypes {
|
|
182232
184723
|
"AWS::Cognito::IdentityPoolPrincipalTag": CognitoIdentityPoolPrincipalTagProps;
|
182233
184724
|
"AWS::Cognito::IdentityPoolRoleAttachment": CognitoIdentityPoolRoleAttachmentProps;
|
182234
184725
|
"AWS::Cognito::LogDeliveryConfiguration": CognitoLogDeliveryConfigurationProps;
|
184726
|
+
"AWS::Cognito::ManagedLoginBranding": CognitoManagedLoginBrandingProps;
|
182235
184727
|
"AWS::Cognito::UserPool": CognitoUserPoolProps;
|
182236
184728
|
"AWS::Cognito::UserPoolClient": CognitoUserPoolClientProps;
|
182237
184729
|
"AWS::Cognito::UserPoolDomain": CognitoUserPoolDomainProps;
|
@@ -183553,6 +186045,7 @@ export interface AttributeTypes {
|
|
183553
186045
|
"AWS::Cognito::IdentityPool": CognitoIdentityPoolAttributes;
|
183554
186046
|
"AWS::Cognito::IdentityPoolRoleAttachment": CognitoIdentityPoolRoleAttachmentAttributes;
|
183555
186047
|
"AWS::Cognito::LogDeliveryConfiguration": CognitoLogDeliveryConfigurationAttributes;
|
186048
|
+
"AWS::Cognito::ManagedLoginBranding": CognitoManagedLoginBrandingAttributes;
|
183556
186049
|
"AWS::Cognito::UserPool": CognitoUserPoolAttributes;
|
183557
186050
|
"AWS::Cognito::UserPoolClient": CognitoUserPoolClientAttributes;
|
183558
186051
|
"AWS::Cognito::UserPoolDomain": CognitoUserPoolDomainAttributes;
|
@@ -184780,6 +187273,7 @@ export declare const ResourceType: {
|
|
184780
187273
|
readonly CognitoIdentityPoolPrincipalTag: "AWS::Cognito::IdentityPoolPrincipalTag";
|
184781
187274
|
readonly CognitoIdentityPoolRoleAttachment: "AWS::Cognito::IdentityPoolRoleAttachment";
|
184782
187275
|
readonly CognitoLogDeliveryConfiguration: "AWS::Cognito::LogDeliveryConfiguration";
|
187276
|
+
readonly CognitoManagedLoginBranding: "AWS::Cognito::ManagedLoginBranding";
|
184783
187277
|
readonly CognitoUserPool: "AWS::Cognito::UserPool";
|
184784
187278
|
readonly CognitoUserPoolClient: "AWS::Cognito::UserPoolClient";
|
184785
187279
|
readonly CognitoUserPoolDomain: "AWS::Cognito::UserPoolDomain";
|