aws-sdk-quicksight 1.163.0 → 1.165.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-quicksight/client.rb +281 -1
- data/lib/aws-sdk-quicksight/client_api.rb +59 -0
- data/lib/aws-sdk-quicksight/types.rb +243 -8
- data/lib/aws-sdk-quicksight.rb +1 -1
- data/sig/client.rbs +634 -90
- data/sig/types.rbs +59 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 222268dddda50ef3485ac21316c5b48a387b24931176504e4d57606a4f6a48fd
|
|
4
|
+
data.tar.gz: 0fccacea0454c80538e9def5dac795db9ab7fb914a6e258aa1c28b7c6082783d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: efa1b534bbd8d384de01e9f9b9408fbefa686eb1836b3a90398adf65885a7badf31956dbb607f16c2f73fddb27cb57dc50a1449402792f64123b2bcf2ddfbaad
|
|
7
|
+
data.tar.gz: 19b4213449bb6b7b483ca06ed88abdfb05785d17169d6f83f637f3e86178a3467a603c8cc542d99f395fde026e6e38b8b0d346f2d6c9f82377aa6cc5fe5469a7
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.165.0 (2025-11-21)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Amazon Quick Suite now supports QuickChat as an embedding type when calling the GenerateEmbedUrlForRegisteredUser API, enabling developers to embed conversational AI agents directly into their applications.
|
|
8
|
+
|
|
9
|
+
1.164.0 (2025-11-20)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Introducing comprehensive theme styling controls. New features include border customization (radius, width, color), flexible padding controls, background styling for cards and sheets, centralized typography management, and visual-level override support across layouts.
|
|
13
|
+
|
|
4
14
|
1.163.0 (2025-11-06)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.165.0
|
|
@@ -4478,9 +4478,14 @@ module Aws::QuickSight
|
|
|
4478
4478
|
# },
|
|
4479
4479
|
# sheet: {
|
|
4480
4480
|
# tile: {
|
|
4481
|
+
# background_color: "Color",
|
|
4481
4482
|
# border: {
|
|
4483
|
+
# color: "Color",
|
|
4482
4484
|
# show: false,
|
|
4485
|
+
# width: "Width",
|
|
4483
4486
|
# },
|
|
4487
|
+
# border_radius: "BorderRadius",
|
|
4488
|
+
# padding: "Padding",
|
|
4484
4489
|
# },
|
|
4485
4490
|
# tile_layout: {
|
|
4486
4491
|
# gutter: {
|
|
@@ -4490,6 +4495,10 @@ module Aws::QuickSight
|
|
|
4490
4495
|
# show: false,
|
|
4491
4496
|
# },
|
|
4492
4497
|
# },
|
|
4498
|
+
# background: {
|
|
4499
|
+
# color: "Color",
|
|
4500
|
+
# gradient: "String",
|
|
4501
|
+
# },
|
|
4493
4502
|
# },
|
|
4494
4503
|
# typography: {
|
|
4495
4504
|
# font_families: [
|
|
@@ -4497,6 +4506,105 @@ module Aws::QuickSight
|
|
|
4497
4506
|
# font_family: "String",
|
|
4498
4507
|
# },
|
|
4499
4508
|
# ],
|
|
4509
|
+
# axis_title_font_configuration: {
|
|
4510
|
+
# font_size: {
|
|
4511
|
+
# relative: "EXTRA_SMALL", # accepts EXTRA_SMALL, SMALL, MEDIUM, LARGE, EXTRA_LARGE
|
|
4512
|
+
# absolute: "PixelLength",
|
|
4513
|
+
# },
|
|
4514
|
+
# font_decoration: "UNDERLINE", # accepts UNDERLINE, NONE
|
|
4515
|
+
# font_color: "HexColor",
|
|
4516
|
+
# font_weight: {
|
|
4517
|
+
# name: "NORMAL", # accepts NORMAL, BOLD
|
|
4518
|
+
# },
|
|
4519
|
+
# font_style: "NORMAL", # accepts NORMAL, ITALIC
|
|
4520
|
+
# font_family: "String",
|
|
4521
|
+
# },
|
|
4522
|
+
# axis_label_font_configuration: {
|
|
4523
|
+
# font_size: {
|
|
4524
|
+
# relative: "EXTRA_SMALL", # accepts EXTRA_SMALL, SMALL, MEDIUM, LARGE, EXTRA_LARGE
|
|
4525
|
+
# absolute: "PixelLength",
|
|
4526
|
+
# },
|
|
4527
|
+
# font_decoration: "UNDERLINE", # accepts UNDERLINE, NONE
|
|
4528
|
+
# font_color: "HexColor",
|
|
4529
|
+
# font_weight: {
|
|
4530
|
+
# name: "NORMAL", # accepts NORMAL, BOLD
|
|
4531
|
+
# },
|
|
4532
|
+
# font_style: "NORMAL", # accepts NORMAL, ITALIC
|
|
4533
|
+
# font_family: "String",
|
|
4534
|
+
# },
|
|
4535
|
+
# legend_title_font_configuration: {
|
|
4536
|
+
# font_size: {
|
|
4537
|
+
# relative: "EXTRA_SMALL", # accepts EXTRA_SMALL, SMALL, MEDIUM, LARGE, EXTRA_LARGE
|
|
4538
|
+
# absolute: "PixelLength",
|
|
4539
|
+
# },
|
|
4540
|
+
# font_decoration: "UNDERLINE", # accepts UNDERLINE, NONE
|
|
4541
|
+
# font_color: "HexColor",
|
|
4542
|
+
# font_weight: {
|
|
4543
|
+
# name: "NORMAL", # accepts NORMAL, BOLD
|
|
4544
|
+
# },
|
|
4545
|
+
# font_style: "NORMAL", # accepts NORMAL, ITALIC
|
|
4546
|
+
# font_family: "String",
|
|
4547
|
+
# },
|
|
4548
|
+
# legend_value_font_configuration: {
|
|
4549
|
+
# font_size: {
|
|
4550
|
+
# relative: "EXTRA_SMALL", # accepts EXTRA_SMALL, SMALL, MEDIUM, LARGE, EXTRA_LARGE
|
|
4551
|
+
# absolute: "PixelLength",
|
|
4552
|
+
# },
|
|
4553
|
+
# font_decoration: "UNDERLINE", # accepts UNDERLINE, NONE
|
|
4554
|
+
# font_color: "HexColor",
|
|
4555
|
+
# font_weight: {
|
|
4556
|
+
# name: "NORMAL", # accepts NORMAL, BOLD
|
|
4557
|
+
# },
|
|
4558
|
+
# font_style: "NORMAL", # accepts NORMAL, ITALIC
|
|
4559
|
+
# font_family: "String",
|
|
4560
|
+
# },
|
|
4561
|
+
# data_label_font_configuration: {
|
|
4562
|
+
# font_size: {
|
|
4563
|
+
# relative: "EXTRA_SMALL", # accepts EXTRA_SMALL, SMALL, MEDIUM, LARGE, EXTRA_LARGE
|
|
4564
|
+
# absolute: "PixelLength",
|
|
4565
|
+
# },
|
|
4566
|
+
# font_decoration: "UNDERLINE", # accepts UNDERLINE, NONE
|
|
4567
|
+
# font_color: "HexColor",
|
|
4568
|
+
# font_weight: {
|
|
4569
|
+
# name: "NORMAL", # accepts NORMAL, BOLD
|
|
4570
|
+
# },
|
|
4571
|
+
# font_style: "NORMAL", # accepts NORMAL, ITALIC
|
|
4572
|
+
# font_family: "String",
|
|
4573
|
+
# },
|
|
4574
|
+
# visual_title_font_configuration: {
|
|
4575
|
+
# font_configuration: {
|
|
4576
|
+
# font_size: {
|
|
4577
|
+
# relative: "EXTRA_SMALL", # accepts EXTRA_SMALL, SMALL, MEDIUM, LARGE, EXTRA_LARGE
|
|
4578
|
+
# absolute: "PixelLength",
|
|
4579
|
+
# },
|
|
4580
|
+
# font_decoration: "UNDERLINE", # accepts UNDERLINE, NONE
|
|
4581
|
+
# font_color: "HexColor",
|
|
4582
|
+
# font_weight: {
|
|
4583
|
+
# name: "NORMAL", # accepts NORMAL, BOLD
|
|
4584
|
+
# },
|
|
4585
|
+
# font_style: "NORMAL", # accepts NORMAL, ITALIC
|
|
4586
|
+
# font_family: "String",
|
|
4587
|
+
# },
|
|
4588
|
+
# text_alignment: "LEFT", # accepts LEFT, CENTER, RIGHT, AUTO
|
|
4589
|
+
# text_transform: "CAPITALIZE", # accepts CAPITALIZE
|
|
4590
|
+
# },
|
|
4591
|
+
# visual_subtitle_font_configuration: {
|
|
4592
|
+
# font_configuration: {
|
|
4593
|
+
# font_size: {
|
|
4594
|
+
# relative: "EXTRA_SMALL", # accepts EXTRA_SMALL, SMALL, MEDIUM, LARGE, EXTRA_LARGE
|
|
4595
|
+
# absolute: "PixelLength",
|
|
4596
|
+
# },
|
|
4597
|
+
# font_decoration: "UNDERLINE", # accepts UNDERLINE, NONE
|
|
4598
|
+
# font_color: "HexColor",
|
|
4599
|
+
# font_weight: {
|
|
4600
|
+
# name: "NORMAL", # accepts NORMAL, BOLD
|
|
4601
|
+
# },
|
|
4602
|
+
# font_style: "NORMAL", # accepts NORMAL, ITALIC
|
|
4603
|
+
# font_family: "String",
|
|
4604
|
+
# },
|
|
4605
|
+
# text_alignment: "LEFT", # accepts LEFT, CENTER, RIGHT, AUTO
|
|
4606
|
+
# text_transform: "CAPITALIZE", # accepts CAPITALIZE
|
|
4607
|
+
# },
|
|
4500
4608
|
# },
|
|
4501
4609
|
# },
|
|
4502
4610
|
# permissions: [
|
|
@@ -9889,11 +9997,71 @@ module Aws::QuickSight
|
|
|
9889
9997
|
# resp.theme.version.configuration.ui_color_palette.dimension_foreground #=> String
|
|
9890
9998
|
# resp.theme.version.configuration.ui_color_palette.measure #=> String
|
|
9891
9999
|
# resp.theme.version.configuration.ui_color_palette.measure_foreground #=> String
|
|
10000
|
+
# resp.theme.version.configuration.sheet.tile.background_color #=> String
|
|
10001
|
+
# resp.theme.version.configuration.sheet.tile.border.color #=> String
|
|
9892
10002
|
# resp.theme.version.configuration.sheet.tile.border.show #=> Boolean
|
|
10003
|
+
# resp.theme.version.configuration.sheet.tile.border.width #=> String
|
|
10004
|
+
# resp.theme.version.configuration.sheet.tile.border_radius #=> String
|
|
10005
|
+
# resp.theme.version.configuration.sheet.tile.padding #=> String
|
|
9893
10006
|
# resp.theme.version.configuration.sheet.tile_layout.gutter.show #=> Boolean
|
|
9894
10007
|
# resp.theme.version.configuration.sheet.tile_layout.margin.show #=> Boolean
|
|
10008
|
+
# resp.theme.version.configuration.sheet.background.color #=> String
|
|
10009
|
+
# resp.theme.version.configuration.sheet.background.gradient #=> String
|
|
9895
10010
|
# resp.theme.version.configuration.typography.font_families #=> Array
|
|
9896
10011
|
# resp.theme.version.configuration.typography.font_families[0].font_family #=> String
|
|
10012
|
+
# resp.theme.version.configuration.typography.axis_title_font_configuration.font_size.relative #=> String, one of "EXTRA_SMALL", "SMALL", "MEDIUM", "LARGE", "EXTRA_LARGE"
|
|
10013
|
+
# resp.theme.version.configuration.typography.axis_title_font_configuration.font_size.absolute #=> String
|
|
10014
|
+
# resp.theme.version.configuration.typography.axis_title_font_configuration.font_decoration #=> String, one of "UNDERLINE", "NONE"
|
|
10015
|
+
# resp.theme.version.configuration.typography.axis_title_font_configuration.font_color #=> String
|
|
10016
|
+
# resp.theme.version.configuration.typography.axis_title_font_configuration.font_weight.name #=> String, one of "NORMAL", "BOLD"
|
|
10017
|
+
# resp.theme.version.configuration.typography.axis_title_font_configuration.font_style #=> String, one of "NORMAL", "ITALIC"
|
|
10018
|
+
# resp.theme.version.configuration.typography.axis_title_font_configuration.font_family #=> String
|
|
10019
|
+
# resp.theme.version.configuration.typography.axis_label_font_configuration.font_size.relative #=> String, one of "EXTRA_SMALL", "SMALL", "MEDIUM", "LARGE", "EXTRA_LARGE"
|
|
10020
|
+
# resp.theme.version.configuration.typography.axis_label_font_configuration.font_size.absolute #=> String
|
|
10021
|
+
# resp.theme.version.configuration.typography.axis_label_font_configuration.font_decoration #=> String, one of "UNDERLINE", "NONE"
|
|
10022
|
+
# resp.theme.version.configuration.typography.axis_label_font_configuration.font_color #=> String
|
|
10023
|
+
# resp.theme.version.configuration.typography.axis_label_font_configuration.font_weight.name #=> String, one of "NORMAL", "BOLD"
|
|
10024
|
+
# resp.theme.version.configuration.typography.axis_label_font_configuration.font_style #=> String, one of "NORMAL", "ITALIC"
|
|
10025
|
+
# resp.theme.version.configuration.typography.axis_label_font_configuration.font_family #=> String
|
|
10026
|
+
# resp.theme.version.configuration.typography.legend_title_font_configuration.font_size.relative #=> String, one of "EXTRA_SMALL", "SMALL", "MEDIUM", "LARGE", "EXTRA_LARGE"
|
|
10027
|
+
# resp.theme.version.configuration.typography.legend_title_font_configuration.font_size.absolute #=> String
|
|
10028
|
+
# resp.theme.version.configuration.typography.legend_title_font_configuration.font_decoration #=> String, one of "UNDERLINE", "NONE"
|
|
10029
|
+
# resp.theme.version.configuration.typography.legend_title_font_configuration.font_color #=> String
|
|
10030
|
+
# resp.theme.version.configuration.typography.legend_title_font_configuration.font_weight.name #=> String, one of "NORMAL", "BOLD"
|
|
10031
|
+
# resp.theme.version.configuration.typography.legend_title_font_configuration.font_style #=> String, one of "NORMAL", "ITALIC"
|
|
10032
|
+
# resp.theme.version.configuration.typography.legend_title_font_configuration.font_family #=> String
|
|
10033
|
+
# resp.theme.version.configuration.typography.legend_value_font_configuration.font_size.relative #=> String, one of "EXTRA_SMALL", "SMALL", "MEDIUM", "LARGE", "EXTRA_LARGE"
|
|
10034
|
+
# resp.theme.version.configuration.typography.legend_value_font_configuration.font_size.absolute #=> String
|
|
10035
|
+
# resp.theme.version.configuration.typography.legend_value_font_configuration.font_decoration #=> String, one of "UNDERLINE", "NONE"
|
|
10036
|
+
# resp.theme.version.configuration.typography.legend_value_font_configuration.font_color #=> String
|
|
10037
|
+
# resp.theme.version.configuration.typography.legend_value_font_configuration.font_weight.name #=> String, one of "NORMAL", "BOLD"
|
|
10038
|
+
# resp.theme.version.configuration.typography.legend_value_font_configuration.font_style #=> String, one of "NORMAL", "ITALIC"
|
|
10039
|
+
# resp.theme.version.configuration.typography.legend_value_font_configuration.font_family #=> String
|
|
10040
|
+
# resp.theme.version.configuration.typography.data_label_font_configuration.font_size.relative #=> String, one of "EXTRA_SMALL", "SMALL", "MEDIUM", "LARGE", "EXTRA_LARGE"
|
|
10041
|
+
# resp.theme.version.configuration.typography.data_label_font_configuration.font_size.absolute #=> String
|
|
10042
|
+
# resp.theme.version.configuration.typography.data_label_font_configuration.font_decoration #=> String, one of "UNDERLINE", "NONE"
|
|
10043
|
+
# resp.theme.version.configuration.typography.data_label_font_configuration.font_color #=> String
|
|
10044
|
+
# resp.theme.version.configuration.typography.data_label_font_configuration.font_weight.name #=> String, one of "NORMAL", "BOLD"
|
|
10045
|
+
# resp.theme.version.configuration.typography.data_label_font_configuration.font_style #=> String, one of "NORMAL", "ITALIC"
|
|
10046
|
+
# resp.theme.version.configuration.typography.data_label_font_configuration.font_family #=> String
|
|
10047
|
+
# resp.theme.version.configuration.typography.visual_title_font_configuration.font_configuration.font_size.relative #=> String, one of "EXTRA_SMALL", "SMALL", "MEDIUM", "LARGE", "EXTRA_LARGE"
|
|
10048
|
+
# resp.theme.version.configuration.typography.visual_title_font_configuration.font_configuration.font_size.absolute #=> String
|
|
10049
|
+
# resp.theme.version.configuration.typography.visual_title_font_configuration.font_configuration.font_decoration #=> String, one of "UNDERLINE", "NONE"
|
|
10050
|
+
# resp.theme.version.configuration.typography.visual_title_font_configuration.font_configuration.font_color #=> String
|
|
10051
|
+
# resp.theme.version.configuration.typography.visual_title_font_configuration.font_configuration.font_weight.name #=> String, one of "NORMAL", "BOLD"
|
|
10052
|
+
# resp.theme.version.configuration.typography.visual_title_font_configuration.font_configuration.font_style #=> String, one of "NORMAL", "ITALIC"
|
|
10053
|
+
# resp.theme.version.configuration.typography.visual_title_font_configuration.font_configuration.font_family #=> String
|
|
10054
|
+
# resp.theme.version.configuration.typography.visual_title_font_configuration.text_alignment #=> String, one of "LEFT", "CENTER", "RIGHT", "AUTO"
|
|
10055
|
+
# resp.theme.version.configuration.typography.visual_title_font_configuration.text_transform #=> String, one of "CAPITALIZE"
|
|
10056
|
+
# resp.theme.version.configuration.typography.visual_subtitle_font_configuration.font_configuration.font_size.relative #=> String, one of "EXTRA_SMALL", "SMALL", "MEDIUM", "LARGE", "EXTRA_LARGE"
|
|
10057
|
+
# resp.theme.version.configuration.typography.visual_subtitle_font_configuration.font_configuration.font_size.absolute #=> String
|
|
10058
|
+
# resp.theme.version.configuration.typography.visual_subtitle_font_configuration.font_configuration.font_decoration #=> String, one of "UNDERLINE", "NONE"
|
|
10059
|
+
# resp.theme.version.configuration.typography.visual_subtitle_font_configuration.font_configuration.font_color #=> String
|
|
10060
|
+
# resp.theme.version.configuration.typography.visual_subtitle_font_configuration.font_configuration.font_weight.name #=> String, one of "NORMAL", "BOLD"
|
|
10061
|
+
# resp.theme.version.configuration.typography.visual_subtitle_font_configuration.font_configuration.font_style #=> String, one of "NORMAL", "ITALIC"
|
|
10062
|
+
# resp.theme.version.configuration.typography.visual_subtitle_font_configuration.font_configuration.font_family #=> String
|
|
10063
|
+
# resp.theme.version.configuration.typography.visual_subtitle_font_configuration.text_alignment #=> String, one of "LEFT", "CENTER", "RIGHT", "AUTO"
|
|
10064
|
+
# resp.theme.version.configuration.typography.visual_subtitle_font_configuration.text_transform #=> String, one of "CAPITALIZE"
|
|
9897
10065
|
# resp.theme.version.errors #=> Array
|
|
9898
10066
|
# resp.theme.version.errors[0].type #=> String, one of "INTERNAL_FAILURE"
|
|
9899
10067
|
# resp.theme.version.errors[0].message #=> String
|
|
@@ -10756,6 +10924,8 @@ module Aws::QuickSight
|
|
|
10756
10924
|
# generative_qn_a: {
|
|
10757
10925
|
# initial_topic_id: "RestrictiveResourceId",
|
|
10758
10926
|
# },
|
|
10927
|
+
# quick_chat: {
|
|
10928
|
+
# },
|
|
10759
10929
|
# },
|
|
10760
10930
|
# allowed_domains: ["String"],
|
|
10761
10931
|
# })
|
|
@@ -10902,6 +11072,8 @@ module Aws::QuickSight
|
|
|
10902
11072
|
# generative_qn_a: {
|
|
10903
11073
|
# initial_topic_id: "RestrictiveResourceId",
|
|
10904
11074
|
# },
|
|
11075
|
+
# quick_chat: {
|
|
11076
|
+
# },
|
|
10905
11077
|
# },
|
|
10906
11078
|
# allowed_domains: ["String"],
|
|
10907
11079
|
# })
|
|
@@ -19502,9 +19674,14 @@ module Aws::QuickSight
|
|
|
19502
19674
|
# },
|
|
19503
19675
|
# sheet: {
|
|
19504
19676
|
# tile: {
|
|
19677
|
+
# background_color: "Color",
|
|
19505
19678
|
# border: {
|
|
19679
|
+
# color: "Color",
|
|
19506
19680
|
# show: false,
|
|
19681
|
+
# width: "Width",
|
|
19507
19682
|
# },
|
|
19683
|
+
# border_radius: "BorderRadius",
|
|
19684
|
+
# padding: "Padding",
|
|
19508
19685
|
# },
|
|
19509
19686
|
# tile_layout: {
|
|
19510
19687
|
# gutter: {
|
|
@@ -19514,6 +19691,10 @@ module Aws::QuickSight
|
|
|
19514
19691
|
# show: false,
|
|
19515
19692
|
# },
|
|
19516
19693
|
# },
|
|
19694
|
+
# background: {
|
|
19695
|
+
# color: "Color",
|
|
19696
|
+
# gradient: "String",
|
|
19697
|
+
# },
|
|
19517
19698
|
# },
|
|
19518
19699
|
# typography: {
|
|
19519
19700
|
# font_families: [
|
|
@@ -19521,6 +19702,105 @@ module Aws::QuickSight
|
|
|
19521
19702
|
# font_family: "String",
|
|
19522
19703
|
# },
|
|
19523
19704
|
# ],
|
|
19705
|
+
# axis_title_font_configuration: {
|
|
19706
|
+
# font_size: {
|
|
19707
|
+
# relative: "EXTRA_SMALL", # accepts EXTRA_SMALL, SMALL, MEDIUM, LARGE, EXTRA_LARGE
|
|
19708
|
+
# absolute: "PixelLength",
|
|
19709
|
+
# },
|
|
19710
|
+
# font_decoration: "UNDERLINE", # accepts UNDERLINE, NONE
|
|
19711
|
+
# font_color: "HexColor",
|
|
19712
|
+
# font_weight: {
|
|
19713
|
+
# name: "NORMAL", # accepts NORMAL, BOLD
|
|
19714
|
+
# },
|
|
19715
|
+
# font_style: "NORMAL", # accepts NORMAL, ITALIC
|
|
19716
|
+
# font_family: "String",
|
|
19717
|
+
# },
|
|
19718
|
+
# axis_label_font_configuration: {
|
|
19719
|
+
# font_size: {
|
|
19720
|
+
# relative: "EXTRA_SMALL", # accepts EXTRA_SMALL, SMALL, MEDIUM, LARGE, EXTRA_LARGE
|
|
19721
|
+
# absolute: "PixelLength",
|
|
19722
|
+
# },
|
|
19723
|
+
# font_decoration: "UNDERLINE", # accepts UNDERLINE, NONE
|
|
19724
|
+
# font_color: "HexColor",
|
|
19725
|
+
# font_weight: {
|
|
19726
|
+
# name: "NORMAL", # accepts NORMAL, BOLD
|
|
19727
|
+
# },
|
|
19728
|
+
# font_style: "NORMAL", # accepts NORMAL, ITALIC
|
|
19729
|
+
# font_family: "String",
|
|
19730
|
+
# },
|
|
19731
|
+
# legend_title_font_configuration: {
|
|
19732
|
+
# font_size: {
|
|
19733
|
+
# relative: "EXTRA_SMALL", # accepts EXTRA_SMALL, SMALL, MEDIUM, LARGE, EXTRA_LARGE
|
|
19734
|
+
# absolute: "PixelLength",
|
|
19735
|
+
# },
|
|
19736
|
+
# font_decoration: "UNDERLINE", # accepts UNDERLINE, NONE
|
|
19737
|
+
# font_color: "HexColor",
|
|
19738
|
+
# font_weight: {
|
|
19739
|
+
# name: "NORMAL", # accepts NORMAL, BOLD
|
|
19740
|
+
# },
|
|
19741
|
+
# font_style: "NORMAL", # accepts NORMAL, ITALIC
|
|
19742
|
+
# font_family: "String",
|
|
19743
|
+
# },
|
|
19744
|
+
# legend_value_font_configuration: {
|
|
19745
|
+
# font_size: {
|
|
19746
|
+
# relative: "EXTRA_SMALL", # accepts EXTRA_SMALL, SMALL, MEDIUM, LARGE, EXTRA_LARGE
|
|
19747
|
+
# absolute: "PixelLength",
|
|
19748
|
+
# },
|
|
19749
|
+
# font_decoration: "UNDERLINE", # accepts UNDERLINE, NONE
|
|
19750
|
+
# font_color: "HexColor",
|
|
19751
|
+
# font_weight: {
|
|
19752
|
+
# name: "NORMAL", # accepts NORMAL, BOLD
|
|
19753
|
+
# },
|
|
19754
|
+
# font_style: "NORMAL", # accepts NORMAL, ITALIC
|
|
19755
|
+
# font_family: "String",
|
|
19756
|
+
# },
|
|
19757
|
+
# data_label_font_configuration: {
|
|
19758
|
+
# font_size: {
|
|
19759
|
+
# relative: "EXTRA_SMALL", # accepts EXTRA_SMALL, SMALL, MEDIUM, LARGE, EXTRA_LARGE
|
|
19760
|
+
# absolute: "PixelLength",
|
|
19761
|
+
# },
|
|
19762
|
+
# font_decoration: "UNDERLINE", # accepts UNDERLINE, NONE
|
|
19763
|
+
# font_color: "HexColor",
|
|
19764
|
+
# font_weight: {
|
|
19765
|
+
# name: "NORMAL", # accepts NORMAL, BOLD
|
|
19766
|
+
# },
|
|
19767
|
+
# font_style: "NORMAL", # accepts NORMAL, ITALIC
|
|
19768
|
+
# font_family: "String",
|
|
19769
|
+
# },
|
|
19770
|
+
# visual_title_font_configuration: {
|
|
19771
|
+
# font_configuration: {
|
|
19772
|
+
# font_size: {
|
|
19773
|
+
# relative: "EXTRA_SMALL", # accepts EXTRA_SMALL, SMALL, MEDIUM, LARGE, EXTRA_LARGE
|
|
19774
|
+
# absolute: "PixelLength",
|
|
19775
|
+
# },
|
|
19776
|
+
# font_decoration: "UNDERLINE", # accepts UNDERLINE, NONE
|
|
19777
|
+
# font_color: "HexColor",
|
|
19778
|
+
# font_weight: {
|
|
19779
|
+
# name: "NORMAL", # accepts NORMAL, BOLD
|
|
19780
|
+
# },
|
|
19781
|
+
# font_style: "NORMAL", # accepts NORMAL, ITALIC
|
|
19782
|
+
# font_family: "String",
|
|
19783
|
+
# },
|
|
19784
|
+
# text_alignment: "LEFT", # accepts LEFT, CENTER, RIGHT, AUTO
|
|
19785
|
+
# text_transform: "CAPITALIZE", # accepts CAPITALIZE
|
|
19786
|
+
# },
|
|
19787
|
+
# visual_subtitle_font_configuration: {
|
|
19788
|
+
# font_configuration: {
|
|
19789
|
+
# font_size: {
|
|
19790
|
+
# relative: "EXTRA_SMALL", # accepts EXTRA_SMALL, SMALL, MEDIUM, LARGE, EXTRA_LARGE
|
|
19791
|
+
# absolute: "PixelLength",
|
|
19792
|
+
# },
|
|
19793
|
+
# font_decoration: "UNDERLINE", # accepts UNDERLINE, NONE
|
|
19794
|
+
# font_color: "HexColor",
|
|
19795
|
+
# font_weight: {
|
|
19796
|
+
# name: "NORMAL", # accepts NORMAL, BOLD
|
|
19797
|
+
# },
|
|
19798
|
+
# font_style: "NORMAL", # accepts NORMAL, ITALIC
|
|
19799
|
+
# font_family: "String",
|
|
19800
|
+
# },
|
|
19801
|
+
# text_alignment: "LEFT", # accepts LEFT, CENTER, RIGHT, AUTO
|
|
19802
|
+
# text_transform: "CAPITALIZE", # accepts CAPITALIZE
|
|
19803
|
+
# },
|
|
19524
19804
|
# },
|
|
19525
19805
|
# },
|
|
19526
19806
|
# })
|
|
@@ -20376,7 +20656,7 @@ module Aws::QuickSight
|
|
|
20376
20656
|
tracer: tracer
|
|
20377
20657
|
)
|
|
20378
20658
|
context[:gem_name] = 'aws-sdk-quicksight'
|
|
20379
|
-
context[:gem_version] = '1.
|
|
20659
|
+
context[:gem_version] = '1.165.0'
|
|
20380
20660
|
Seahorse::Client::Request.new(handlers, context)
|
|
20381
20661
|
end
|
|
20382
20662
|
|
|
@@ -287,6 +287,7 @@ module Aws::QuickSight
|
|
|
287
287
|
BookmarksConfigurations = Shapes::StructureShape.new(name: 'BookmarksConfigurations')
|
|
288
288
|
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
|
289
289
|
BooleanObject = Shapes::BooleanShape.new(name: 'BooleanObject')
|
|
290
|
+
BorderRadius = Shapes::StringShape.new(name: 'BorderRadius')
|
|
290
291
|
BorderStyle = Shapes::StructureShape.new(name: 'BorderStyle')
|
|
291
292
|
BoxPlotAggregatedFieldWells = Shapes::StructureShape.new(name: 'BoxPlotAggregatedFieldWells')
|
|
292
293
|
BoxPlotChartConfiguration = Shapes::StructureShape.new(name: 'BoxPlotChartConfiguration')
|
|
@@ -354,6 +355,7 @@ module Aws::QuickSight
|
|
|
354
355
|
CollectiveConstant = Shapes::StructureShape.new(name: 'CollectiveConstant')
|
|
355
356
|
CollectiveConstantEntry = Shapes::StructureShape.new(name: 'CollectiveConstantEntry')
|
|
356
357
|
CollectiveConstantEntryList = Shapes::ListShape.new(name: 'CollectiveConstantEntryList')
|
|
358
|
+
Color = Shapes::StringShape.new(name: 'Color')
|
|
357
359
|
ColorFillType = Shapes::StringShape.new(name: 'ColorFillType')
|
|
358
360
|
ColorList = Shapes::ListShape.new(name: 'ColorList')
|
|
359
361
|
ColorScale = Shapes::StructureShape.new(name: 'ColorScale')
|
|
@@ -1108,6 +1110,8 @@ module Aws::QuickSight
|
|
|
1108
1110
|
GridLayoutCanvasSizeOptions = Shapes::StructureShape.new(name: 'GridLayoutCanvasSizeOptions')
|
|
1109
1111
|
GridLayoutConfiguration = Shapes::StructureShape.new(name: 'GridLayoutConfiguration')
|
|
1110
1112
|
GridLayoutElement = Shapes::StructureShape.new(name: 'GridLayoutElement')
|
|
1113
|
+
GridLayoutElementBackgroundStyle = Shapes::StructureShape.new(name: 'GridLayoutElementBackgroundStyle')
|
|
1114
|
+
GridLayoutElementBorderStyle = Shapes::StructureShape.new(name: 'GridLayoutElementBorderStyle')
|
|
1111
1115
|
GridLayoutElementColumnIndex = Shapes::IntegerShape.new(name: 'GridLayoutElementColumnIndex')
|
|
1112
1116
|
GridLayoutElementColumnSpan = Shapes::IntegerShape.new(name: 'GridLayoutElementColumnSpan')
|
|
1113
1117
|
GridLayoutElementList = Shapes::ListShape.new(name: 'GridLayoutElementList')
|
|
@@ -1465,6 +1469,7 @@ module Aws::QuickSight
|
|
|
1465
1469
|
OutputColumnNameOverride = Shapes::StructureShape.new(name: 'OutputColumnNameOverride')
|
|
1466
1470
|
OutputColumnNameOverrideList = Shapes::ListShape.new(name: 'OutputColumnNameOverrideList')
|
|
1467
1471
|
OverrideDatasetParameterOperation = Shapes::StructureShape.new(name: 'OverrideDatasetParameterOperation')
|
|
1472
|
+
Padding = Shapes::StringShape.new(name: 'Padding')
|
|
1468
1473
|
PageNumber = Shapes::IntegerShape.new(name: 'PageNumber')
|
|
1469
1474
|
PaginationConfiguration = Shapes::StructureShape.new(name: 'PaginationConfiguration')
|
|
1470
1475
|
Palette = Shapes::StructureShape.new(name: 'Palette')
|
|
@@ -1673,6 +1678,7 @@ module Aws::QuickSight
|
|
|
1673
1678
|
RegisteredUserEmbeddingExperienceConfiguration = Shapes::StructureShape.new(name: 'RegisteredUserEmbeddingExperienceConfiguration')
|
|
1674
1679
|
RegisteredUserGenerativeQnAEmbeddingConfiguration = Shapes::StructureShape.new(name: 'RegisteredUserGenerativeQnAEmbeddingConfiguration')
|
|
1675
1680
|
RegisteredUserQSearchBarEmbeddingConfiguration = Shapes::StructureShape.new(name: 'RegisteredUserQSearchBarEmbeddingConfiguration')
|
|
1681
|
+
RegisteredUserQuickChatEmbeddingConfiguration = Shapes::StructureShape.new(name: 'RegisteredUserQuickChatEmbeddingConfiguration')
|
|
1676
1682
|
RegisteredUserQuickSightConsoleEmbeddingConfiguration = Shapes::StructureShape.new(name: 'RegisteredUserQuickSightConsoleEmbeddingConfiguration')
|
|
1677
1683
|
RelationalTable = Shapes::StructureShape.new(name: 'RelationalTable')
|
|
1678
1684
|
RelationalTableCatalog = Shapes::StringShape.new(name: 'RelationalTableCatalog')
|
|
@@ -1818,6 +1824,7 @@ module Aws::QuickSight
|
|
|
1818
1824
|
SharedViewConfigurations = Shapes::StructureShape.new(name: 'SharedViewConfigurations')
|
|
1819
1825
|
SharingModel = Shapes::StringShape.new(name: 'SharingModel')
|
|
1820
1826
|
Sheet = Shapes::StructureShape.new(name: 'Sheet')
|
|
1827
|
+
SheetBackgroundStyle = Shapes::StructureShape.new(name: 'SheetBackgroundStyle')
|
|
1821
1828
|
SheetContentType = Shapes::StringShape.new(name: 'SheetContentType')
|
|
1822
1829
|
SheetControlDateTimePickerType = Shapes::StringShape.new(name: 'SheetControlDateTimePickerType')
|
|
1823
1830
|
SheetControlInfoIconLabelOptions = Shapes::StructureShape.new(name: 'SheetControlInfoIconLabelOptions')
|
|
@@ -2034,6 +2041,7 @@ module Aws::QuickSight
|
|
|
2034
2041
|
TextControlPlaceholderOptions = Shapes::StructureShape.new(name: 'TextControlPlaceholderOptions')
|
|
2035
2042
|
TextFieldControlDisplayOptions = Shapes::StructureShape.new(name: 'TextFieldControlDisplayOptions')
|
|
2036
2043
|
TextQualifier = Shapes::StringShape.new(name: 'TextQualifier')
|
|
2044
|
+
TextTransform = Shapes::StringShape.new(name: 'TextTransform')
|
|
2037
2045
|
TextWrap = Shapes::StringShape.new(name: 'TextWrap')
|
|
2038
2046
|
Theme = Shapes::StructureShape.new(name: 'Theme')
|
|
2039
2047
|
ThemeAlias = Shapes::StructureShape.new(name: 'ThemeAlias')
|
|
@@ -2318,8 +2326,10 @@ module Aws::QuickSight
|
|
|
2318
2326
|
VisualPalette = Shapes::StructureShape.new(name: 'VisualPalette')
|
|
2319
2327
|
VisualRole = Shapes::StringShape.new(name: 'VisualRole')
|
|
2320
2328
|
VisualSubtitle = Shapes::StringShape.new(name: 'VisualSubtitle')
|
|
2329
|
+
VisualSubtitleFontConfiguration = Shapes::StructureShape.new(name: 'VisualSubtitleFontConfiguration')
|
|
2321
2330
|
VisualSubtitleLabelOptions = Shapes::StructureShape.new(name: 'VisualSubtitleLabelOptions')
|
|
2322
2331
|
VisualTitle = Shapes::StringShape.new(name: 'VisualTitle')
|
|
2332
|
+
VisualTitleFontConfiguration = Shapes::StructureShape.new(name: 'VisualTitleFontConfiguration')
|
|
2323
2333
|
VisualTitleLabelOptions = Shapes::StructureShape.new(name: 'VisualTitleLabelOptions')
|
|
2324
2334
|
VpcConnectionProperties = Shapes::StructureShape.new(name: 'VpcConnectionProperties')
|
|
2325
2335
|
VpcEndpointId = Shapes::StringShape.new(name: 'VpcEndpointId')
|
|
@@ -2343,6 +2353,7 @@ module Aws::QuickSight
|
|
|
2343
2353
|
WhatIfPointScenario = Shapes::StructureShape.new(name: 'WhatIfPointScenario')
|
|
2344
2354
|
WhatIfRangeScenario = Shapes::StructureShape.new(name: 'WhatIfRangeScenario')
|
|
2345
2355
|
WidgetStatus = Shapes::StringShape.new(name: 'WidgetStatus')
|
|
2356
|
+
Width = Shapes::StringShape.new(name: 'Width')
|
|
2346
2357
|
WordCloudAggregatedFieldWells = Shapes::StructureShape.new(name: 'WordCloudAggregatedFieldWells')
|
|
2347
2358
|
WordCloudChartConfiguration = Shapes::StructureShape.new(name: 'WordCloudChartConfiguration')
|
|
2348
2359
|
WordCloudCloudLayout = Shapes::StringShape.new(name: 'WordCloudCloudLayout')
|
|
@@ -3224,7 +3235,9 @@ module Aws::QuickSight
|
|
|
3224
3235
|
BookmarksConfigurations.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "Enabled"))
|
|
3225
3236
|
BookmarksConfigurations.struct_class = Types::BookmarksConfigurations
|
|
3226
3237
|
|
|
3238
|
+
BorderStyle.add_member(:color, Shapes::ShapeRef.new(shape: Color, location_name: "Color"))
|
|
3227
3239
|
BorderStyle.add_member(:show, Shapes::ShapeRef.new(shape: Boolean, location_name: "Show", metadata: {"box" => true}))
|
|
3240
|
+
BorderStyle.add_member(:width, Shapes::ShapeRef.new(shape: Width, location_name: "Width"))
|
|
3228
3241
|
BorderStyle.struct_class = Types::BorderStyle
|
|
3229
3242
|
|
|
3230
3243
|
BoxPlotAggregatedFieldWells.add_member(:group_by, Shapes::ShapeRef.new(shape: BoxPlotDimensionFieldList, location_name: "GroupBy"))
|
|
@@ -6265,6 +6278,8 @@ module Aws::QuickSight
|
|
|
6265
6278
|
FreeFormLayoutElement.add_member(:selected_border_style, Shapes::ShapeRef.new(shape: FreeFormLayoutElementBorderStyle, location_name: "SelectedBorderStyle"))
|
|
6266
6279
|
FreeFormLayoutElement.add_member(:background_style, Shapes::ShapeRef.new(shape: FreeFormLayoutElementBackgroundStyle, location_name: "BackgroundStyle"))
|
|
6267
6280
|
FreeFormLayoutElement.add_member(:loading_animation, Shapes::ShapeRef.new(shape: LoadingAnimation, location_name: "LoadingAnimation"))
|
|
6281
|
+
FreeFormLayoutElement.add_member(:border_radius, Shapes::ShapeRef.new(shape: BorderRadius, location_name: "BorderRadius"))
|
|
6282
|
+
FreeFormLayoutElement.add_member(:padding, Shapes::ShapeRef.new(shape: Padding, location_name: "Padding"))
|
|
6268
6283
|
FreeFormLayoutElement.struct_class = Types::FreeFormLayoutElement
|
|
6269
6284
|
|
|
6270
6285
|
FreeFormLayoutElementBackgroundStyle.add_member(:visibility, Shapes::ShapeRef.new(shape: Visibility, location_name: "Visibility"))
|
|
@@ -6273,6 +6288,7 @@ module Aws::QuickSight
|
|
|
6273
6288
|
|
|
6274
6289
|
FreeFormLayoutElementBorderStyle.add_member(:visibility, Shapes::ShapeRef.new(shape: Visibility, location_name: "Visibility"))
|
|
6275
6290
|
FreeFormLayoutElementBorderStyle.add_member(:color, Shapes::ShapeRef.new(shape: HexColorWithTransparency, location_name: "Color"))
|
|
6291
|
+
FreeFormLayoutElementBorderStyle.add_member(:width, Shapes::ShapeRef.new(shape: Width, location_name: "Width"))
|
|
6276
6292
|
FreeFormLayoutElementBorderStyle.struct_class = Types::FreeFormLayoutElementBorderStyle
|
|
6277
6293
|
|
|
6278
6294
|
FreeFormLayoutScreenCanvasSizeOptions.add_member(:optimized_view_port_width, Shapes::ShapeRef.new(shape: PixelLength, required: true, location_name: "OptimizedViewPortWidth", metadata: {"box" => true}))
|
|
@@ -6703,8 +6719,23 @@ module Aws::QuickSight
|
|
|
6703
6719
|
GridLayoutElement.add_member(:column_span, Shapes::ShapeRef.new(shape: GridLayoutElementColumnSpan, required: true, location_name: "ColumnSpan"))
|
|
6704
6720
|
GridLayoutElement.add_member(:row_index, Shapes::ShapeRef.new(shape: GridLayoutElementRowIndex, location_name: "RowIndex"))
|
|
6705
6721
|
GridLayoutElement.add_member(:row_span, Shapes::ShapeRef.new(shape: GridLayoutElementRowSpan, required: true, location_name: "RowSpan"))
|
|
6722
|
+
GridLayoutElement.add_member(:border_style, Shapes::ShapeRef.new(shape: GridLayoutElementBorderStyle, location_name: "BorderStyle"))
|
|
6723
|
+
GridLayoutElement.add_member(:selected_border_style, Shapes::ShapeRef.new(shape: GridLayoutElementBorderStyle, location_name: "SelectedBorderStyle"))
|
|
6724
|
+
GridLayoutElement.add_member(:background_style, Shapes::ShapeRef.new(shape: GridLayoutElementBackgroundStyle, location_name: "BackgroundStyle"))
|
|
6725
|
+
GridLayoutElement.add_member(:loading_animation, Shapes::ShapeRef.new(shape: LoadingAnimation, location_name: "LoadingAnimation"))
|
|
6726
|
+
GridLayoutElement.add_member(:border_radius, Shapes::ShapeRef.new(shape: BorderRadius, location_name: "BorderRadius"))
|
|
6727
|
+
GridLayoutElement.add_member(:padding, Shapes::ShapeRef.new(shape: Padding, location_name: "Padding"))
|
|
6706
6728
|
GridLayoutElement.struct_class = Types::GridLayoutElement
|
|
6707
6729
|
|
|
6730
|
+
GridLayoutElementBackgroundStyle.add_member(:visibility, Shapes::ShapeRef.new(shape: Visibility, location_name: "Visibility"))
|
|
6731
|
+
GridLayoutElementBackgroundStyle.add_member(:color, Shapes::ShapeRef.new(shape: HexColorWithTransparency, location_name: "Color"))
|
|
6732
|
+
GridLayoutElementBackgroundStyle.struct_class = Types::GridLayoutElementBackgroundStyle
|
|
6733
|
+
|
|
6734
|
+
GridLayoutElementBorderStyle.add_member(:visibility, Shapes::ShapeRef.new(shape: Visibility, location_name: "Visibility"))
|
|
6735
|
+
GridLayoutElementBorderStyle.add_member(:color, Shapes::ShapeRef.new(shape: HexColorWithTransparency, location_name: "Color"))
|
|
6736
|
+
GridLayoutElementBorderStyle.add_member(:width, Shapes::ShapeRef.new(shape: Width, location_name: "Width"))
|
|
6737
|
+
GridLayoutElementBorderStyle.struct_class = Types::GridLayoutElementBorderStyle
|
|
6738
|
+
|
|
6708
6739
|
GridLayoutElementList.member = Shapes::ShapeRef.new(shape: GridLayoutElement)
|
|
6709
6740
|
|
|
6710
6741
|
GridLayoutScreenCanvasSizeOptions.add_member(:resize_option, Shapes::ShapeRef.new(shape: ResizeOption, required: true, location_name: "ResizeOption"))
|
|
@@ -8706,6 +8737,7 @@ module Aws::QuickSight
|
|
|
8706
8737
|
RegisteredUserEmbeddingExperienceConfiguration.add_member(:q_search_bar, Shapes::ShapeRef.new(shape: RegisteredUserQSearchBarEmbeddingConfiguration, location_name: "QSearchBar"))
|
|
8707
8738
|
RegisteredUserEmbeddingExperienceConfiguration.add_member(:dashboard_visual, Shapes::ShapeRef.new(shape: RegisteredUserDashboardVisualEmbeddingConfiguration, location_name: "DashboardVisual"))
|
|
8708
8739
|
RegisteredUserEmbeddingExperienceConfiguration.add_member(:generative_qn_a, Shapes::ShapeRef.new(shape: RegisteredUserGenerativeQnAEmbeddingConfiguration, location_name: "GenerativeQnA"))
|
|
8740
|
+
RegisteredUserEmbeddingExperienceConfiguration.add_member(:quick_chat, Shapes::ShapeRef.new(shape: RegisteredUserQuickChatEmbeddingConfiguration, location_name: "QuickChat"))
|
|
8709
8741
|
RegisteredUserEmbeddingExperienceConfiguration.struct_class = Types::RegisteredUserEmbeddingExperienceConfiguration
|
|
8710
8742
|
|
|
8711
8743
|
RegisteredUserGenerativeQnAEmbeddingConfiguration.add_member(:initial_topic_id, Shapes::ShapeRef.new(shape: RestrictiveResourceId, location_name: "InitialTopicId"))
|
|
@@ -8714,6 +8746,8 @@ module Aws::QuickSight
|
|
|
8714
8746
|
RegisteredUserQSearchBarEmbeddingConfiguration.add_member(:initial_topic_id, Shapes::ShapeRef.new(shape: RestrictiveResourceId, location_name: "InitialTopicId"))
|
|
8715
8747
|
RegisteredUserQSearchBarEmbeddingConfiguration.struct_class = Types::RegisteredUserQSearchBarEmbeddingConfiguration
|
|
8716
8748
|
|
|
8749
|
+
RegisteredUserQuickChatEmbeddingConfiguration.struct_class = Types::RegisteredUserQuickChatEmbeddingConfiguration
|
|
8750
|
+
|
|
8717
8751
|
RegisteredUserQuickSightConsoleEmbeddingConfiguration.add_member(:initial_path, Shapes::ShapeRef.new(shape: EntryPath, location_name: "InitialPath"))
|
|
8718
8752
|
RegisteredUserQuickSightConsoleEmbeddingConfiguration.add_member(:feature_configurations, Shapes::ShapeRef.new(shape: RegisteredUserConsoleFeatureConfigurations, location_name: "FeatureConfigurations"))
|
|
8719
8753
|
RegisteredUserQuickSightConsoleEmbeddingConfiguration.struct_class = Types::RegisteredUserQuickSightConsoleEmbeddingConfiguration
|
|
@@ -9169,6 +9203,10 @@ module Aws::QuickSight
|
|
|
9169
9203
|
Sheet.add_member(:images, Shapes::ShapeRef.new(shape: SheetImageList, location_name: "Images"))
|
|
9170
9204
|
Sheet.struct_class = Types::Sheet
|
|
9171
9205
|
|
|
9206
|
+
SheetBackgroundStyle.add_member(:color, Shapes::ShapeRef.new(shape: Color, location_name: "Color"))
|
|
9207
|
+
SheetBackgroundStyle.add_member(:gradient, Shapes::ShapeRef.new(shape: String, location_name: "Gradient"))
|
|
9208
|
+
SheetBackgroundStyle.struct_class = Types::SheetBackgroundStyle
|
|
9209
|
+
|
|
9172
9210
|
SheetControlInfoIconLabelOptions.add_member(:visibility, Shapes::ShapeRef.new(shape: Visibility, location_name: "Visibility"))
|
|
9173
9211
|
SheetControlInfoIconLabelOptions.add_member(:info_icon_text, Shapes::ShapeRef.new(shape: SheetControlInfoIconText, location_name: "InfoIconText"))
|
|
9174
9212
|
SheetControlInfoIconLabelOptions.struct_class = Types::SheetControlInfoIconLabelOptions
|
|
@@ -9244,6 +9282,7 @@ module Aws::QuickSight
|
|
|
9244
9282
|
|
|
9245
9283
|
SheetStyle.add_member(:tile, Shapes::ShapeRef.new(shape: TileStyle, location_name: "Tile"))
|
|
9246
9284
|
SheetStyle.add_member(:tile_layout, Shapes::ShapeRef.new(shape: TileLayoutStyle, location_name: "TileLayout"))
|
|
9285
|
+
SheetStyle.add_member(:background, Shapes::ShapeRef.new(shape: SheetBackgroundStyle, location_name: "Background"))
|
|
9247
9286
|
SheetStyle.struct_class = Types::SheetStyle
|
|
9248
9287
|
|
|
9249
9288
|
SheetTextBox.add_member(:sheet_text_box_id, Shapes::ShapeRef.new(shape: ShortRestrictiveResourceId, required: true, location_name: "SheetTextBoxId"))
|
|
@@ -9909,7 +9948,10 @@ module Aws::QuickSight
|
|
|
9909
9948
|
TileLayoutStyle.add_member(:margin, Shapes::ShapeRef.new(shape: MarginStyle, location_name: "Margin"))
|
|
9910
9949
|
TileLayoutStyle.struct_class = Types::TileLayoutStyle
|
|
9911
9950
|
|
|
9951
|
+
TileStyle.add_member(:background_color, Shapes::ShapeRef.new(shape: Color, location_name: "BackgroundColor"))
|
|
9912
9952
|
TileStyle.add_member(:border, Shapes::ShapeRef.new(shape: BorderStyle, location_name: "Border"))
|
|
9953
|
+
TileStyle.add_member(:border_radius, Shapes::ShapeRef.new(shape: BorderRadius, location_name: "BorderRadius"))
|
|
9954
|
+
TileStyle.add_member(:padding, Shapes::ShapeRef.new(shape: Padding, location_name: "Padding"))
|
|
9913
9955
|
TileStyle.struct_class = Types::TileStyle
|
|
9914
9956
|
|
|
9915
9957
|
TimeBasedForecastProperties.add_member(:periods_forward, Shapes::ShapeRef.new(shape: PeriodsForward, location_name: "PeriodsForward", metadata: {"box" => true}))
|
|
@@ -10359,6 +10401,13 @@ module Aws::QuickSight
|
|
|
10359
10401
|
TypeParameters.value = Shapes::ShapeRef.new(shape: LimitedString)
|
|
10360
10402
|
|
|
10361
10403
|
Typography.add_member(:font_families, Shapes::ShapeRef.new(shape: FontList, location_name: "FontFamilies"))
|
|
10404
|
+
Typography.add_member(:axis_title_font_configuration, Shapes::ShapeRef.new(shape: FontConfiguration, location_name: "AxisTitleFontConfiguration"))
|
|
10405
|
+
Typography.add_member(:axis_label_font_configuration, Shapes::ShapeRef.new(shape: FontConfiguration, location_name: "AxisLabelFontConfiguration"))
|
|
10406
|
+
Typography.add_member(:legend_title_font_configuration, Shapes::ShapeRef.new(shape: FontConfiguration, location_name: "LegendTitleFontConfiguration"))
|
|
10407
|
+
Typography.add_member(:legend_value_font_configuration, Shapes::ShapeRef.new(shape: FontConfiguration, location_name: "LegendValueFontConfiguration"))
|
|
10408
|
+
Typography.add_member(:data_label_font_configuration, Shapes::ShapeRef.new(shape: FontConfiguration, location_name: "DataLabelFontConfiguration"))
|
|
10409
|
+
Typography.add_member(:visual_title_font_configuration, Shapes::ShapeRef.new(shape: VisualTitleFontConfiguration, location_name: "VisualTitleFontConfiguration"))
|
|
10410
|
+
Typography.add_member(:visual_subtitle_font_configuration, Shapes::ShapeRef.new(shape: VisualSubtitleFontConfiguration, location_name: "VisualSubtitleFontConfiguration"))
|
|
10362
10411
|
Typography.struct_class = Types::Typography
|
|
10363
10412
|
|
|
10364
10413
|
UIColorPalette.add_member(:primary_foreground, Shapes::ShapeRef.new(shape: HexColor, location_name: "PrimaryForeground"))
|
|
@@ -11156,10 +11205,20 @@ module Aws::QuickSight
|
|
|
11156
11205
|
VisualPalette.add_member(:color_map, Shapes::ShapeRef.new(shape: DataPathColorList, location_name: "ColorMap"))
|
|
11157
11206
|
VisualPalette.struct_class = Types::VisualPalette
|
|
11158
11207
|
|
|
11208
|
+
VisualSubtitleFontConfiguration.add_member(:font_configuration, Shapes::ShapeRef.new(shape: FontConfiguration, location_name: "FontConfiguration"))
|
|
11209
|
+
VisualSubtitleFontConfiguration.add_member(:text_alignment, Shapes::ShapeRef.new(shape: HorizontalTextAlignment, location_name: "TextAlignment"))
|
|
11210
|
+
VisualSubtitleFontConfiguration.add_member(:text_transform, Shapes::ShapeRef.new(shape: TextTransform, location_name: "TextTransform"))
|
|
11211
|
+
VisualSubtitleFontConfiguration.struct_class = Types::VisualSubtitleFontConfiguration
|
|
11212
|
+
|
|
11159
11213
|
VisualSubtitleLabelOptions.add_member(:visibility, Shapes::ShapeRef.new(shape: Visibility, location_name: "Visibility"))
|
|
11160
11214
|
VisualSubtitleLabelOptions.add_member(:format_text, Shapes::ShapeRef.new(shape: LongFormatText, location_name: "FormatText"))
|
|
11161
11215
|
VisualSubtitleLabelOptions.struct_class = Types::VisualSubtitleLabelOptions
|
|
11162
11216
|
|
|
11217
|
+
VisualTitleFontConfiguration.add_member(:font_configuration, Shapes::ShapeRef.new(shape: FontConfiguration, location_name: "FontConfiguration"))
|
|
11218
|
+
VisualTitleFontConfiguration.add_member(:text_alignment, Shapes::ShapeRef.new(shape: HorizontalTextAlignment, location_name: "TextAlignment"))
|
|
11219
|
+
VisualTitleFontConfiguration.add_member(:text_transform, Shapes::ShapeRef.new(shape: TextTransform, location_name: "TextTransform"))
|
|
11220
|
+
VisualTitleFontConfiguration.struct_class = Types::VisualTitleFontConfiguration
|
|
11221
|
+
|
|
11163
11222
|
VisualTitleLabelOptions.add_member(:visibility, Shapes::ShapeRef.new(shape: Visibility, location_name: "Visibility"))
|
|
11164
11223
|
VisualTitleLabelOptions.add_member(:format_text, Shapes::ShapeRef.new(shape: ShortFormatText, location_name: "FormatText"))
|
|
11165
11224
|
VisualTitleLabelOptions.struct_class = Types::VisualTitleLabelOptions
|