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
|
@@ -3873,14 +3873,24 @@ module Aws::QuickSight
|
|
|
3873
3873
|
|
|
3874
3874
|
# The display options for tile borders for visuals.
|
|
3875
3875
|
#
|
|
3876
|
+
# @!attribute [rw] color
|
|
3877
|
+
# The option to add color for tile borders for visuals.
|
|
3878
|
+
# @return [String]
|
|
3879
|
+
#
|
|
3876
3880
|
# @!attribute [rw] show
|
|
3877
3881
|
# The option to enable display of borders for visuals.
|
|
3878
3882
|
# @return [Boolean]
|
|
3879
3883
|
#
|
|
3884
|
+
# @!attribute [rw] width
|
|
3885
|
+
# The option to set the width of tile borders for visuals.
|
|
3886
|
+
# @return [String]
|
|
3887
|
+
#
|
|
3880
3888
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/BorderStyle AWS API Documentation
|
|
3881
3889
|
#
|
|
3882
3890
|
class BorderStyle < Struct.new(
|
|
3883
|
-
:
|
|
3891
|
+
:color,
|
|
3892
|
+
:show,
|
|
3893
|
+
:width)
|
|
3884
3894
|
SENSITIVE = []
|
|
3885
3895
|
include Aws::Structure
|
|
3886
3896
|
end
|
|
@@ -18897,6 +18907,14 @@ module Aws::QuickSight
|
|
|
18897
18907
|
# The loading animation configuration of a free-form layout element.
|
|
18898
18908
|
# @return [Types::LoadingAnimation]
|
|
18899
18909
|
#
|
|
18910
|
+
# @!attribute [rw] border_radius
|
|
18911
|
+
# The border radius of a free-form layout element.
|
|
18912
|
+
# @return [String]
|
|
18913
|
+
#
|
|
18914
|
+
# @!attribute [rw] padding
|
|
18915
|
+
# The padding of a free-form layout element.
|
|
18916
|
+
# @return [String]
|
|
18917
|
+
#
|
|
18900
18918
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/FreeFormLayoutElement AWS API Documentation
|
|
18901
18919
|
#
|
|
18902
18920
|
class FreeFormLayoutElement < Struct.new(
|
|
@@ -18911,7 +18929,9 @@ module Aws::QuickSight
|
|
|
18911
18929
|
:border_style,
|
|
18912
18930
|
:selected_border_style,
|
|
18913
18931
|
:background_style,
|
|
18914
|
-
:loading_animation
|
|
18932
|
+
:loading_animation,
|
|
18933
|
+
:border_radius,
|
|
18934
|
+
:padding)
|
|
18915
18935
|
SENSITIVE = []
|
|
18916
18936
|
include Aws::Structure
|
|
18917
18937
|
end
|
|
@@ -18945,11 +18965,16 @@ module Aws::QuickSight
|
|
|
18945
18965
|
# The border color of a free-form layout element.
|
|
18946
18966
|
# @return [String]
|
|
18947
18967
|
#
|
|
18968
|
+
# @!attribute [rw] width
|
|
18969
|
+
# The border width of a free-form layout element.
|
|
18970
|
+
# @return [String]
|
|
18971
|
+
#
|
|
18948
18972
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/FreeFormLayoutElementBorderStyle AWS API Documentation
|
|
18949
18973
|
#
|
|
18950
18974
|
class FreeFormLayoutElementBorderStyle < Struct.new(
|
|
18951
18975
|
:visibility,
|
|
18952
|
-
:color
|
|
18976
|
+
:color,
|
|
18977
|
+
:width)
|
|
18953
18978
|
SENSITIVE = []
|
|
18954
18979
|
include Aws::Structure
|
|
18955
18980
|
end
|
|
@@ -21075,6 +21100,31 @@ module Aws::QuickSight
|
|
|
21075
21100
|
# The height of a grid element expressed as a number of grid rows.
|
|
21076
21101
|
# @return [Integer]
|
|
21077
21102
|
#
|
|
21103
|
+
# @!attribute [rw] border_style
|
|
21104
|
+
# The border style configuration of a grid layout element.
|
|
21105
|
+
# @return [Types::GridLayoutElementBorderStyle]
|
|
21106
|
+
#
|
|
21107
|
+
# @!attribute [rw] selected_border_style
|
|
21108
|
+
# The border style configuration of a grid layout element. This border
|
|
21109
|
+
# style is used when the element is selected.
|
|
21110
|
+
# @return [Types::GridLayoutElementBorderStyle]
|
|
21111
|
+
#
|
|
21112
|
+
# @!attribute [rw] background_style
|
|
21113
|
+
# The background style configuration of a grid layout element.
|
|
21114
|
+
# @return [Types::GridLayoutElementBackgroundStyle]
|
|
21115
|
+
#
|
|
21116
|
+
# @!attribute [rw] loading_animation
|
|
21117
|
+
# The configuration of loading animation in free-form layout.
|
|
21118
|
+
# @return [Types::LoadingAnimation]
|
|
21119
|
+
#
|
|
21120
|
+
# @!attribute [rw] border_radius
|
|
21121
|
+
# The border radius of a grid layout element.
|
|
21122
|
+
# @return [String]
|
|
21123
|
+
#
|
|
21124
|
+
# @!attribute [rw] padding
|
|
21125
|
+
# The padding of a grid layout element.
|
|
21126
|
+
# @return [String]
|
|
21127
|
+
#
|
|
21078
21128
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GridLayoutElement AWS API Documentation
|
|
21079
21129
|
#
|
|
21080
21130
|
class GridLayoutElement < Struct.new(
|
|
@@ -21083,7 +21133,56 @@ module Aws::QuickSight
|
|
|
21083
21133
|
:column_index,
|
|
21084
21134
|
:column_span,
|
|
21085
21135
|
:row_index,
|
|
21086
|
-
:row_span
|
|
21136
|
+
:row_span,
|
|
21137
|
+
:border_style,
|
|
21138
|
+
:selected_border_style,
|
|
21139
|
+
:background_style,
|
|
21140
|
+
:loading_animation,
|
|
21141
|
+
:border_radius,
|
|
21142
|
+
:padding)
|
|
21143
|
+
SENSITIVE = []
|
|
21144
|
+
include Aws::Structure
|
|
21145
|
+
end
|
|
21146
|
+
|
|
21147
|
+
# The background style configuration of a grid layout element.
|
|
21148
|
+
#
|
|
21149
|
+
# @!attribute [rw] visibility
|
|
21150
|
+
# The background visibility of a grid layout element.
|
|
21151
|
+
# @return [String]
|
|
21152
|
+
#
|
|
21153
|
+
# @!attribute [rw] color
|
|
21154
|
+
# The background color of a grid layout element.
|
|
21155
|
+
# @return [String]
|
|
21156
|
+
#
|
|
21157
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GridLayoutElementBackgroundStyle AWS API Documentation
|
|
21158
|
+
#
|
|
21159
|
+
class GridLayoutElementBackgroundStyle < Struct.new(
|
|
21160
|
+
:visibility,
|
|
21161
|
+
:color)
|
|
21162
|
+
SENSITIVE = []
|
|
21163
|
+
include Aws::Structure
|
|
21164
|
+
end
|
|
21165
|
+
|
|
21166
|
+
# The border style configuration of a grid layout element.
|
|
21167
|
+
#
|
|
21168
|
+
# @!attribute [rw] visibility
|
|
21169
|
+
# The border visibility of a grid layout element.
|
|
21170
|
+
# @return [String]
|
|
21171
|
+
#
|
|
21172
|
+
# @!attribute [rw] color
|
|
21173
|
+
# The border color of a grid layout element.
|
|
21174
|
+
# @return [String]
|
|
21175
|
+
#
|
|
21176
|
+
# @!attribute [rw] width
|
|
21177
|
+
# The border width of a grid layout element.
|
|
21178
|
+
# @return [String]
|
|
21179
|
+
#
|
|
21180
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GridLayoutElementBorderStyle AWS API Documentation
|
|
21181
|
+
#
|
|
21182
|
+
class GridLayoutElementBorderStyle < Struct.new(
|
|
21183
|
+
:visibility,
|
|
21184
|
+
:color,
|
|
21185
|
+
:width)
|
|
21087
21186
|
SENSITIVE = []
|
|
21088
21187
|
include Aws::Structure
|
|
21089
21188
|
end
|
|
@@ -30840,6 +30939,10 @@ module Aws::QuickSight
|
|
|
30840
30939
|
# [1]: https://docs.aws.amazon.com/quicksight/latest/user/embedding-overview.html
|
|
30841
30940
|
# @return [Types::RegisteredUserGenerativeQnAEmbeddingConfiguration]
|
|
30842
30941
|
#
|
|
30942
|
+
# @!attribute [rw] quick_chat
|
|
30943
|
+
# The configuration details for embedding the Quick chat agent.
|
|
30944
|
+
# @return [Types::RegisteredUserQuickChatEmbeddingConfiguration]
|
|
30945
|
+
#
|
|
30843
30946
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/RegisteredUserEmbeddingExperienceConfiguration AWS API Documentation
|
|
30844
30947
|
#
|
|
30845
30948
|
class RegisteredUserEmbeddingExperienceConfiguration < Struct.new(
|
|
@@ -30847,7 +30950,8 @@ module Aws::QuickSight
|
|
|
30847
30950
|
:quick_sight_console,
|
|
30848
30951
|
:q_search_bar,
|
|
30849
30952
|
:dashboard_visual,
|
|
30850
|
-
:generative_qn_a
|
|
30953
|
+
:generative_qn_a,
|
|
30954
|
+
:quick_chat)
|
|
30851
30955
|
SENSITIVE = []
|
|
30852
30956
|
include Aws::Structure
|
|
30853
30957
|
end
|
|
@@ -30906,6 +31010,15 @@ module Aws::QuickSight
|
|
|
30906
31010
|
include Aws::Structure
|
|
30907
31011
|
end
|
|
30908
31012
|
|
|
31013
|
+
# An object that provides information about the configuration of a chat
|
|
31014
|
+
# agent.
|
|
31015
|
+
#
|
|
31016
|
+
# @api private
|
|
31017
|
+
#
|
|
31018
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/RegisteredUserQuickChatEmbeddingConfiguration AWS API Documentation
|
|
31019
|
+
#
|
|
31020
|
+
class RegisteredUserQuickChatEmbeddingConfiguration < Aws::EmptyStructure; end
|
|
31021
|
+
|
|
30909
31022
|
# Information about the Amazon Quick Sight console that you want to
|
|
30910
31023
|
# embed.
|
|
30911
31024
|
#
|
|
@@ -33134,6 +33247,25 @@ module Aws::QuickSight
|
|
|
33134
33247
|
include Aws::Structure
|
|
33135
33248
|
end
|
|
33136
33249
|
|
|
33250
|
+
# The background configuration for sheets.
|
|
33251
|
+
#
|
|
33252
|
+
# @!attribute [rw] color
|
|
33253
|
+
# The solid color background option for sheets.
|
|
33254
|
+
# @return [String]
|
|
33255
|
+
#
|
|
33256
|
+
# @!attribute [rw] gradient
|
|
33257
|
+
# The gradient background option for sheets.
|
|
33258
|
+
# @return [String]
|
|
33259
|
+
#
|
|
33260
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SheetBackgroundStyle AWS API Documentation
|
|
33261
|
+
#
|
|
33262
|
+
class SheetBackgroundStyle < Struct.new(
|
|
33263
|
+
:color,
|
|
33264
|
+
:gradient)
|
|
33265
|
+
SENSITIVE = []
|
|
33266
|
+
include Aws::Structure
|
|
33267
|
+
end
|
|
33268
|
+
|
|
33137
33269
|
# A control to display info icons for filters and parameters.
|
|
33138
33270
|
#
|
|
33139
33271
|
# @!attribute [rw] visibility
|
|
@@ -33498,11 +33630,16 @@ module Aws::QuickSight
|
|
|
33498
33630
|
# The layout options for tiles.
|
|
33499
33631
|
# @return [Types::TileLayoutStyle]
|
|
33500
33632
|
#
|
|
33633
|
+
# @!attribute [rw] background
|
|
33634
|
+
# The background for sheets.
|
|
33635
|
+
# @return [Types::SheetBackgroundStyle]
|
|
33636
|
+
#
|
|
33501
33637
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SheetStyle AWS API Documentation
|
|
33502
33638
|
#
|
|
33503
33639
|
class SheetStyle < Struct.new(
|
|
33504
33640
|
:tile,
|
|
33505
|
-
:tile_layout
|
|
33641
|
+
:tile_layout,
|
|
33642
|
+
:background)
|
|
33506
33643
|
SENSITIVE = []
|
|
33507
33644
|
include Aws::Structure
|
|
33508
33645
|
end
|
|
@@ -36564,14 +36701,29 @@ module Aws::QuickSight
|
|
|
36564
36701
|
|
|
36565
36702
|
# Display options related to tiles on a sheet.
|
|
36566
36703
|
#
|
|
36704
|
+
# @!attribute [rw] background_color
|
|
36705
|
+
# The background color of a tile.
|
|
36706
|
+
# @return [String]
|
|
36707
|
+
#
|
|
36567
36708
|
# @!attribute [rw] border
|
|
36568
36709
|
# The border around a tile.
|
|
36569
36710
|
# @return [Types::BorderStyle]
|
|
36570
36711
|
#
|
|
36712
|
+
# @!attribute [rw] border_radius
|
|
36713
|
+
# The border radius of a tile.
|
|
36714
|
+
# @return [String]
|
|
36715
|
+
#
|
|
36716
|
+
# @!attribute [rw] padding
|
|
36717
|
+
# The padding of a tile.
|
|
36718
|
+
# @return [String]
|
|
36719
|
+
#
|
|
36571
36720
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TileStyle AWS API Documentation
|
|
36572
36721
|
#
|
|
36573
36722
|
class TileStyle < Struct.new(
|
|
36574
|
-
:
|
|
36723
|
+
:background_color,
|
|
36724
|
+
:border,
|
|
36725
|
+
:border_radius,
|
|
36726
|
+
:padding)
|
|
36575
36727
|
SENSITIVE = []
|
|
36576
36728
|
include Aws::Structure
|
|
36577
36729
|
end
|
|
@@ -38704,10 +38856,45 @@ module Aws::QuickSight
|
|
|
38704
38856
|
# Determines the list of font families.
|
|
38705
38857
|
# @return [Array<Types::Font>]
|
|
38706
38858
|
#
|
|
38859
|
+
# @!attribute [rw] axis_title_font_configuration
|
|
38860
|
+
# Configures the display properties of the given text.
|
|
38861
|
+
# @return [Types::FontConfiguration]
|
|
38862
|
+
#
|
|
38863
|
+
# @!attribute [rw] axis_label_font_configuration
|
|
38864
|
+
# Configures the display properties of the given text.
|
|
38865
|
+
# @return [Types::FontConfiguration]
|
|
38866
|
+
#
|
|
38867
|
+
# @!attribute [rw] legend_title_font_configuration
|
|
38868
|
+
# Configures the display properties of the given text.
|
|
38869
|
+
# @return [Types::FontConfiguration]
|
|
38870
|
+
#
|
|
38871
|
+
# @!attribute [rw] legend_value_font_configuration
|
|
38872
|
+
# Configures the display properties of the given text.
|
|
38873
|
+
# @return [Types::FontConfiguration]
|
|
38874
|
+
#
|
|
38875
|
+
# @!attribute [rw] data_label_font_configuration
|
|
38876
|
+
# Configures the display properties of the given text.
|
|
38877
|
+
# @return [Types::FontConfiguration]
|
|
38878
|
+
#
|
|
38879
|
+
# @!attribute [rw] visual_title_font_configuration
|
|
38880
|
+
# Configures the display properties of the visual title.
|
|
38881
|
+
# @return [Types::VisualTitleFontConfiguration]
|
|
38882
|
+
#
|
|
38883
|
+
# @!attribute [rw] visual_subtitle_font_configuration
|
|
38884
|
+
# Configures the display properties of the visual sub-title.
|
|
38885
|
+
# @return [Types::VisualSubtitleFontConfiguration]
|
|
38886
|
+
#
|
|
38707
38887
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/Typography AWS API Documentation
|
|
38708
38888
|
#
|
|
38709
38889
|
class Typography < Struct.new(
|
|
38710
|
-
:font_families
|
|
38890
|
+
:font_families,
|
|
38891
|
+
:axis_title_font_configuration,
|
|
38892
|
+
:axis_label_font_configuration,
|
|
38893
|
+
:legend_title_font_configuration,
|
|
38894
|
+
:legend_value_font_configuration,
|
|
38895
|
+
:data_label_font_configuration,
|
|
38896
|
+
:visual_title_font_configuration,
|
|
38897
|
+
:visual_subtitle_font_configuration)
|
|
38711
38898
|
SENSITIVE = []
|
|
38712
38899
|
include Aws::Structure
|
|
38713
38900
|
end
|
|
@@ -42867,6 +43054,30 @@ module Aws::QuickSight
|
|
|
42867
43054
|
include Aws::Structure
|
|
42868
43055
|
end
|
|
42869
43056
|
|
|
43057
|
+
# Configures the display properties of the visual sub-title.
|
|
43058
|
+
#
|
|
43059
|
+
# @!attribute [rw] font_configuration
|
|
43060
|
+
# Configures the display properties of the given text.
|
|
43061
|
+
# @return [Types::FontConfiguration]
|
|
43062
|
+
#
|
|
43063
|
+
# @!attribute [rw] text_alignment
|
|
43064
|
+
# Determines the alignment of visual sub-title.
|
|
43065
|
+
# @return [String]
|
|
43066
|
+
#
|
|
43067
|
+
# @!attribute [rw] text_transform
|
|
43068
|
+
# Determines the text transformation of visual sub-title.
|
|
43069
|
+
# @return [String]
|
|
43070
|
+
#
|
|
43071
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/VisualSubtitleFontConfiguration AWS API Documentation
|
|
43072
|
+
#
|
|
43073
|
+
class VisualSubtitleFontConfiguration < Struct.new(
|
|
43074
|
+
:font_configuration,
|
|
43075
|
+
:text_alignment,
|
|
43076
|
+
:text_transform)
|
|
43077
|
+
SENSITIVE = []
|
|
43078
|
+
include Aws::Structure
|
|
43079
|
+
end
|
|
43080
|
+
|
|
42870
43081
|
# The subtitle label options for a visual.
|
|
42871
43082
|
#
|
|
42872
43083
|
# @!attribute [rw] visibility
|
|
@@ -42887,6 +43098,30 @@ module Aws::QuickSight
|
|
|
42887
43098
|
include Aws::Structure
|
|
42888
43099
|
end
|
|
42889
43100
|
|
|
43101
|
+
# Configures the display properties of the visual title.
|
|
43102
|
+
#
|
|
43103
|
+
# @!attribute [rw] font_configuration
|
|
43104
|
+
# Configures the display properties of the given text.
|
|
43105
|
+
# @return [Types::FontConfiguration]
|
|
43106
|
+
#
|
|
43107
|
+
# @!attribute [rw] text_alignment
|
|
43108
|
+
# Determines the alignment of visual title.
|
|
43109
|
+
# @return [String]
|
|
43110
|
+
#
|
|
43111
|
+
# @!attribute [rw] text_transform
|
|
43112
|
+
# Determines the text transformation of visual title.
|
|
43113
|
+
# @return [String]
|
|
43114
|
+
#
|
|
43115
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/VisualTitleFontConfiguration AWS API Documentation
|
|
43116
|
+
#
|
|
43117
|
+
class VisualTitleFontConfiguration < Struct.new(
|
|
43118
|
+
:font_configuration,
|
|
43119
|
+
:text_alignment,
|
|
43120
|
+
:text_transform)
|
|
43121
|
+
SENSITIVE = []
|
|
43122
|
+
include Aws::Structure
|
|
43123
|
+
end
|
|
43124
|
+
|
|
42890
43125
|
# The title label options for a visual.
|
|
42891
43126
|
#
|
|
42892
43127
|
# @!attribute [rw] visibility
|