aws-sdk-quicksight 1.163.0 → 1.164.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.
@@ -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
- :show)
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
@@ -33134,6 +33233,25 @@ module Aws::QuickSight
33134
33233
  include Aws::Structure
33135
33234
  end
33136
33235
 
33236
+ # The background configuration for sheets.
33237
+ #
33238
+ # @!attribute [rw] color
33239
+ # The solid color background option for sheets.
33240
+ # @return [String]
33241
+ #
33242
+ # @!attribute [rw] gradient
33243
+ # The gradient background option for sheets.
33244
+ # @return [String]
33245
+ #
33246
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SheetBackgroundStyle AWS API Documentation
33247
+ #
33248
+ class SheetBackgroundStyle < Struct.new(
33249
+ :color,
33250
+ :gradient)
33251
+ SENSITIVE = []
33252
+ include Aws::Structure
33253
+ end
33254
+
33137
33255
  # A control to display info icons for filters and parameters.
33138
33256
  #
33139
33257
  # @!attribute [rw] visibility
@@ -33498,11 +33616,16 @@ module Aws::QuickSight
33498
33616
  # The layout options for tiles.
33499
33617
  # @return [Types::TileLayoutStyle]
33500
33618
  #
33619
+ # @!attribute [rw] background
33620
+ # The background for sheets.
33621
+ # @return [Types::SheetBackgroundStyle]
33622
+ #
33501
33623
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SheetStyle AWS API Documentation
33502
33624
  #
33503
33625
  class SheetStyle < Struct.new(
33504
33626
  :tile,
33505
- :tile_layout)
33627
+ :tile_layout,
33628
+ :background)
33506
33629
  SENSITIVE = []
33507
33630
  include Aws::Structure
33508
33631
  end
@@ -36564,14 +36687,29 @@ module Aws::QuickSight
36564
36687
 
36565
36688
  # Display options related to tiles on a sheet.
36566
36689
  #
36690
+ # @!attribute [rw] background_color
36691
+ # The background color of a tile.
36692
+ # @return [String]
36693
+ #
36567
36694
  # @!attribute [rw] border
36568
36695
  # The border around a tile.
36569
36696
  # @return [Types::BorderStyle]
36570
36697
  #
36698
+ # @!attribute [rw] border_radius
36699
+ # The border radius of a tile.
36700
+ # @return [String]
36701
+ #
36702
+ # @!attribute [rw] padding
36703
+ # The padding of a tile.
36704
+ # @return [String]
36705
+ #
36571
36706
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TileStyle AWS API Documentation
36572
36707
  #
36573
36708
  class TileStyle < Struct.new(
36574
- :border)
36709
+ :background_color,
36710
+ :border,
36711
+ :border_radius,
36712
+ :padding)
36575
36713
  SENSITIVE = []
36576
36714
  include Aws::Structure
36577
36715
  end
@@ -38704,10 +38842,45 @@ module Aws::QuickSight
38704
38842
  # Determines the list of font families.
38705
38843
  # @return [Array<Types::Font>]
38706
38844
  #
38845
+ # @!attribute [rw] axis_title_font_configuration
38846
+ # Configures the display properties of the given text.
38847
+ # @return [Types::FontConfiguration]
38848
+ #
38849
+ # @!attribute [rw] axis_label_font_configuration
38850
+ # Configures the display properties of the given text.
38851
+ # @return [Types::FontConfiguration]
38852
+ #
38853
+ # @!attribute [rw] legend_title_font_configuration
38854
+ # Configures the display properties of the given text.
38855
+ # @return [Types::FontConfiguration]
38856
+ #
38857
+ # @!attribute [rw] legend_value_font_configuration
38858
+ # Configures the display properties of the given text.
38859
+ # @return [Types::FontConfiguration]
38860
+ #
38861
+ # @!attribute [rw] data_label_font_configuration
38862
+ # Configures the display properties of the given text.
38863
+ # @return [Types::FontConfiguration]
38864
+ #
38865
+ # @!attribute [rw] visual_title_font_configuration
38866
+ # Configures the display properties of the visual title.
38867
+ # @return [Types::VisualTitleFontConfiguration]
38868
+ #
38869
+ # @!attribute [rw] visual_subtitle_font_configuration
38870
+ # Configures the display properties of the visual sub-title.
38871
+ # @return [Types::VisualSubtitleFontConfiguration]
38872
+ #
38707
38873
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/Typography AWS API Documentation
38708
38874
  #
38709
38875
  class Typography < Struct.new(
38710
- :font_families)
38876
+ :font_families,
38877
+ :axis_title_font_configuration,
38878
+ :axis_label_font_configuration,
38879
+ :legend_title_font_configuration,
38880
+ :legend_value_font_configuration,
38881
+ :data_label_font_configuration,
38882
+ :visual_title_font_configuration,
38883
+ :visual_subtitle_font_configuration)
38711
38884
  SENSITIVE = []
38712
38885
  include Aws::Structure
38713
38886
  end
@@ -42867,6 +43040,30 @@ module Aws::QuickSight
42867
43040
  include Aws::Structure
42868
43041
  end
42869
43042
 
43043
+ # Configures the display properties of the visual sub-title.
43044
+ #
43045
+ # @!attribute [rw] font_configuration
43046
+ # Configures the display properties of the given text.
43047
+ # @return [Types::FontConfiguration]
43048
+ #
43049
+ # @!attribute [rw] text_alignment
43050
+ # Determines the alignment of visual sub-title.
43051
+ # @return [String]
43052
+ #
43053
+ # @!attribute [rw] text_transform
43054
+ # Determines the text transformation of visual sub-title.
43055
+ # @return [String]
43056
+ #
43057
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/VisualSubtitleFontConfiguration AWS API Documentation
43058
+ #
43059
+ class VisualSubtitleFontConfiguration < Struct.new(
43060
+ :font_configuration,
43061
+ :text_alignment,
43062
+ :text_transform)
43063
+ SENSITIVE = []
43064
+ include Aws::Structure
43065
+ end
43066
+
42870
43067
  # The subtitle label options for a visual.
42871
43068
  #
42872
43069
  # @!attribute [rw] visibility
@@ -42887,6 +43084,30 @@ module Aws::QuickSight
42887
43084
  include Aws::Structure
42888
43085
  end
42889
43086
 
43087
+ # Configures the display properties of the visual title.
43088
+ #
43089
+ # @!attribute [rw] font_configuration
43090
+ # Configures the display properties of the given text.
43091
+ # @return [Types::FontConfiguration]
43092
+ #
43093
+ # @!attribute [rw] text_alignment
43094
+ # Determines the alignment of visual title.
43095
+ # @return [String]
43096
+ #
43097
+ # @!attribute [rw] text_transform
43098
+ # Determines the text transformation of visual title.
43099
+ # @return [String]
43100
+ #
43101
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/VisualTitleFontConfiguration AWS API Documentation
43102
+ #
43103
+ class VisualTitleFontConfiguration < Struct.new(
43104
+ :font_configuration,
43105
+ :text_alignment,
43106
+ :text_transform)
43107
+ SENSITIVE = []
43108
+ include Aws::Structure
43109
+ end
43110
+
42890
43111
  # The title label options for a visual.
42891
43112
  #
42892
43113
  # @!attribute [rw] visibility
@@ -54,7 +54,7 @@ module Aws::QuickSight
54
54
  autoload :EndpointProvider, 'aws-sdk-quicksight/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-quicksight/endpoints'
56
56
 
57
- GEM_VERSION = '1.163.0'
57
+ GEM_VERSION = '1.164.0'
58
58
 
59
59
  end
60
60