aws-sdk-quicksight 1.103.0 → 1.104.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.
@@ -2489,6 +2489,10 @@ module Aws::QuickSight
2489
2489
  # visual.
2490
2490
  # @return [Array<Types::ContributionAnalysisDefault>]
2491
2491
  #
2492
+ # @!attribute [rw] interactions
2493
+ # The general visual interactions setup for a visual.
2494
+ # @return [Types::VisualInteractionOptions]
2495
+ #
2492
2496
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/BarChartConfiguration AWS API Documentation
2493
2497
  #
2494
2498
  class BarChartConfiguration < Struct.new(
@@ -2507,7 +2511,8 @@ module Aws::QuickSight
2507
2511
  :data_labels,
2508
2512
  :tooltip,
2509
2513
  :reference_lines,
2510
- :contribution_analysis_defaults)
2514
+ :contribution_analysis_defaults,
2515
+ :interactions)
2511
2516
  SENSITIVE = []
2512
2517
  include Aws::Structure
2513
2518
  end
@@ -2831,6 +2836,10 @@ module Aws::QuickSight
2831
2836
  # The palette (chart color) display setup of the visual.
2832
2837
  # @return [Types::VisualPalette]
2833
2838
  #
2839
+ # @!attribute [rw] interactions
2840
+ # The general visual interactions setup for a visual.
2841
+ # @return [Types::VisualInteractionOptions]
2842
+ #
2834
2843
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/BoxPlotChartConfiguration AWS API Documentation
2835
2844
  #
2836
2845
  class BoxPlotChartConfiguration < Struct.new(
@@ -2844,7 +2853,8 @@ module Aws::QuickSight
2844
2853
  :legend,
2845
2854
  :tooltip,
2846
2855
  :reference_lines,
2847
- :visual_palette)
2856
+ :visual_palette,
2857
+ :interactions)
2848
2858
  SENSITIVE = []
2849
2859
  include Aws::Structure
2850
2860
  end
@@ -3812,6 +3822,10 @@ module Aws::QuickSight
3812
3822
  # The palette (chart color) display setup of the visual.
3813
3823
  # @return [Types::VisualPalette]
3814
3824
  #
3825
+ # @!attribute [rw] interactions
3826
+ # The general visual interactions setup for a visual.
3827
+ # @return [Types::VisualInteractionOptions]
3828
+ #
3815
3829
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ComboChartConfiguration AWS API Documentation
3816
3830
  #
3817
3831
  class ComboChartConfiguration < Struct.new(
@@ -3831,7 +3845,8 @@ module Aws::QuickSight
3831
3845
  :line_data_labels,
3832
3846
  :tooltip,
3833
3847
  :reference_lines,
3834
- :visual_palette)
3848
+ :visual_palette,
3849
+ :interactions)
3835
3850
  SENSITIVE = []
3836
3851
  include Aws::Structure
3837
3852
  end
@@ -4269,6 +4284,22 @@ module Aws::QuickSight
4269
4284
  include Aws::Structure
4270
4285
  end
4271
4286
 
4287
+ # The context menu options for a visual's interactions.
4288
+ #
4289
+ # @!attribute [rw] availability_status
4290
+ # The availability status of the context menu options. If the value of
4291
+ # this property is set to `ENABLED`, dashboard readers can interact
4292
+ # with the context menu.
4293
+ # @return [String]
4294
+ #
4295
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ContextMenuOption AWS API Documentation
4296
+ #
4297
+ class ContextMenuOption < Struct.new(
4298
+ :availability_status)
4299
+ SENSITIVE = []
4300
+ include Aws::Structure
4301
+ end
4302
+
4272
4303
  # The contribution analysis visual display for a line, pie, or bar
4273
4304
  # chart.
4274
4305
  #
@@ -6434,12 +6465,17 @@ module Aws::QuickSight
6434
6465
  # `'IMAGE'`.
6435
6466
  # @return [String]
6436
6467
  #
6468
+ # @!attribute [rw] interactions
6469
+ # The general visual interactions setup for a visual.
6470
+ # @return [Types::VisualInteractionOptions]
6471
+ #
6437
6472
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CustomContentConfiguration AWS API Documentation
6438
6473
  #
6439
6474
  class CustomContentConfiguration < Struct.new(
6440
6475
  :content_url,
6441
6476
  :content_type,
6442
- :image_scaling)
6477
+ :image_scaling,
6478
+ :interactions)
6443
6479
  SENSITIVE = []
6444
6480
  include Aws::Structure
6445
6481
  end
@@ -13433,6 +13469,10 @@ module Aws::QuickSight
13433
13469
  # The map style options of the filled map visual.
13434
13470
  # @return [Types::GeospatialMapStyleOptions]
13435
13471
  #
13472
+ # @!attribute [rw] interactions
13473
+ # The general visual interactions setup for a visual.
13474
+ # @return [Types::VisualInteractionOptions]
13475
+ #
13436
13476
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/FilledMapConfiguration AWS API Documentation
13437
13477
  #
13438
13478
  class FilledMapConfiguration < Struct.new(
@@ -13441,7 +13481,8 @@ module Aws::QuickSight
13441
13481
  :legend,
13442
13482
  :tooltip,
13443
13483
  :window_options,
13444
- :map_style_options)
13484
+ :map_style_options,
13485
+ :interactions)
13445
13486
  SENSITIVE = []
13446
13487
  include Aws::Structure
13447
13488
  end
@@ -14787,6 +14828,10 @@ module Aws::QuickSight
14787
14828
  # The visual palette configuration of a `FunnelChartVisual`.
14788
14829
  # @return [Types::VisualPalette]
14789
14830
  #
14831
+ # @!attribute [rw] interactions
14832
+ # The general visual interactions setup for a visual.
14833
+ # @return [Types::VisualInteractionOptions]
14834
+ #
14790
14835
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/FunnelChartConfiguration AWS API Documentation
14791
14836
  #
14792
14837
  class FunnelChartConfiguration < Struct.new(
@@ -14796,7 +14841,8 @@ module Aws::QuickSight
14796
14841
  :value_label_options,
14797
14842
  :tooltip,
14798
14843
  :data_label_options,
14799
- :visual_palette)
14844
+ :visual_palette,
14845
+ :interactions)
14800
14846
  SENSITIVE = []
14801
14847
  include Aws::Structure
14802
14848
  end
@@ -15007,6 +15053,10 @@ module Aws::QuickSight
15007
15053
  # The visual palette configuration of a `GaugeChartVisual`.
15008
15054
  # @return [Types::VisualPalette]
15009
15055
  #
15056
+ # @!attribute [rw] interactions
15057
+ # The general visual interactions setup for a visual.
15058
+ # @return [Types::VisualInteractionOptions]
15059
+ #
15010
15060
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GaugeChartConfiguration AWS API Documentation
15011
15061
  #
15012
15062
  class GaugeChartConfiguration < Struct.new(
@@ -15014,7 +15064,8 @@ module Aws::QuickSight
15014
15064
  :gauge_chart_options,
15015
15065
  :data_labels,
15016
15066
  :tooltip_options,
15017
- :visual_palette)
15067
+ :visual_palette,
15068
+ :interactions)
15018
15069
  SENSITIVE = []
15019
15070
  include Aws::Structure
15020
15071
  end
@@ -15461,6 +15512,10 @@ module Aws::QuickSight
15461
15512
  # The visual display options for the visual palette.
15462
15513
  # @return [Types::VisualPalette]
15463
15514
  #
15515
+ # @!attribute [rw] interactions
15516
+ # The general visual interactions setup for a visual.
15517
+ # @return [Types::VisualInteractionOptions]
15518
+ #
15464
15519
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialMapConfiguration AWS API Documentation
15465
15520
  #
15466
15521
  class GeospatialMapConfiguration < Struct.new(
@@ -15470,7 +15525,8 @@ module Aws::QuickSight
15470
15525
  :window_options,
15471
15526
  :map_style_options,
15472
15527
  :point_style_options,
15473
- :visual_palette)
15528
+ :visual_palette,
15529
+ :interactions)
15474
15530
  SENSITIVE = []
15475
15531
  include Aws::Structure
15476
15532
  end
@@ -16176,6 +16232,10 @@ module Aws::QuickSight
16176
16232
  # The tooltip display setup of the visual.
16177
16233
  # @return [Types::TooltipOptions]
16178
16234
  #
16235
+ # @!attribute [rw] interactions
16236
+ # The general visual interactions setup for a visual.
16237
+ # @return [Types::VisualInteractionOptions]
16238
+ #
16179
16239
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/HeatMapConfiguration AWS API Documentation
16180
16240
  #
16181
16241
  class HeatMapConfiguration < Struct.new(
@@ -16186,7 +16246,8 @@ module Aws::QuickSight
16186
16246
  :color_scale,
16187
16247
  :legend,
16188
16248
  :data_labels,
16189
- :tooltip)
16249
+ :tooltip,
16250
+ :interactions)
16190
16251
  SENSITIVE = []
16191
16252
  include Aws::Structure
16192
16253
  end
@@ -16365,6 +16426,10 @@ module Aws::QuickSight
16365
16426
  # The visual palette configuration of a histogram.
16366
16427
  # @return [Types::VisualPalette]
16367
16428
  #
16429
+ # @!attribute [rw] interactions
16430
+ # The general visual interactions setup for a visual.
16431
+ # @return [Types::VisualInteractionOptions]
16432
+ #
16368
16433
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/HistogramConfiguration AWS API Documentation
16369
16434
  #
16370
16435
  class HistogramConfiguration < Struct.new(
@@ -16375,7 +16440,8 @@ module Aws::QuickSight
16375
16440
  :bin_options,
16376
16441
  :data_labels,
16377
16442
  :tooltip,
16378
- :visual_palette)
16443
+ :visual_palette,
16444
+ :interactions)
16379
16445
  SENSITIVE = []
16380
16446
  include Aws::Structure
16381
16447
  end
@@ -16644,11 +16710,16 @@ module Aws::QuickSight
16644
16710
  # The custom narrative of the insight visual.
16645
16711
  # @return [Types::CustomNarrativeOptions]
16646
16712
  #
16713
+ # @!attribute [rw] interactions
16714
+ # The general visual interactions setup for a visual.
16715
+ # @return [Types::VisualInteractionOptions]
16716
+ #
16647
16717
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/InsightConfiguration AWS API Documentation
16648
16718
  #
16649
16719
  class InsightConfiguration < Struct.new(
16650
16720
  :computations,
16651
- :custom_narrative)
16721
+ :custom_narrative,
16722
+ :interactions)
16652
16723
  SENSITIVE = []
16653
16724
  include Aws::Structure
16654
16725
  end
@@ -17114,12 +17185,17 @@ module Aws::QuickSight
17114
17185
  # The options that determine the presentation of a KPI visual.
17115
17186
  # @return [Types::KPIOptions]
17116
17187
  #
17188
+ # @!attribute [rw] interactions
17189
+ # The general visual interactions setup for a visual.
17190
+ # @return [Types::VisualInteractionOptions]
17191
+ #
17117
17192
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/KPIConfiguration AWS API Documentation
17118
17193
  #
17119
17194
  class KPIConfiguration < Struct.new(
17120
17195
  :field_wells,
17121
17196
  :sort_configuration,
17122
- :kpi_options)
17197
+ :kpi_options,
17198
+ :interactions)
17123
17199
  SENSITIVE = []
17124
17200
  include Aws::Structure
17125
17201
  end
@@ -17632,6 +17708,10 @@ module Aws::QuickSight
17632
17708
  # The visual palette configuration of a line chart.
17633
17709
  # @return [Types::VisualPalette]
17634
17710
  #
17711
+ # @!attribute [rw] interactions
17712
+ # The general visual interactions setup for a visual.
17713
+ # @return [Types::VisualInteractionOptions]
17714
+ #
17635
17715
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/LineChartConfiguration AWS API Documentation
17636
17716
  #
17637
17717
  class LineChartConfiguration < Struct.new(
@@ -17654,7 +17734,8 @@ module Aws::QuickSight
17654
17734
  :reference_lines,
17655
17735
  :tooltip,
17656
17736
  :contribution_analysis_defaults,
17657
- :visual_palette)
17737
+ :visual_palette,
17738
+ :interactions)
17658
17739
  SENSITIVE = []
17659
17740
  include Aws::Structure
17660
17741
  end
@@ -21457,6 +21538,10 @@ module Aws::QuickSight
21457
21538
  # visual.
21458
21539
  # @return [Array<Types::ContributionAnalysisDefault>]
21459
21540
  #
21541
+ # @!attribute [rw] interactions
21542
+ # The general visual interactions setup for a visual.
21543
+ # @return [Types::VisualInteractionOptions]
21544
+ #
21460
21545
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/PieChartConfiguration AWS API Documentation
21461
21546
  #
21462
21547
  class PieChartConfiguration < Struct.new(
@@ -21470,7 +21555,8 @@ module Aws::QuickSight
21470
21555
  :data_labels,
21471
21556
  :tooltip,
21472
21557
  :visual_palette,
21473
- :contribution_analysis_defaults)
21558
+ :contribution_analysis_defaults,
21559
+ :interactions)
21474
21560
  SENSITIVE = []
21475
21561
  include Aws::Structure
21476
21562
  end
@@ -21729,6 +21815,10 @@ module Aws::QuickSight
21729
21815
  # The paginated report options for a pivot table visual.
21730
21816
  # @return [Types::PivotTablePaginatedReportOptions]
21731
21817
  #
21818
+ # @!attribute [rw] interactions
21819
+ # The general visual interactions setup for a visual.
21820
+ # @return [Types::VisualInteractionOptions]
21821
+ #
21732
21822
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/PivotTableConfiguration AWS API Documentation
21733
21823
  #
21734
21824
  class PivotTableConfiguration < Struct.new(
@@ -21737,7 +21827,8 @@ module Aws::QuickSight
21737
21827
  :table_options,
21738
21828
  :total_options,
21739
21829
  :field_options,
21740
- :paginated_report_options)
21830
+ :paginated_report_options,
21831
+ :interactions)
21741
21832
  SENSITIVE = []
21742
21833
  include Aws::Structure
21743
21834
  end
@@ -22485,6 +22576,10 @@ module Aws::QuickSight
22485
22576
  # The axis behavior options of a radar chart.
22486
22577
  # @return [String]
22487
22578
  #
22579
+ # @!attribute [rw] interactions
22580
+ # The general visual interactions setup for a visual.
22581
+ # @return [Types::VisualInteractionOptions]
22582
+ #
22488
22583
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/RadarChartConfiguration AWS API Documentation
22489
22584
  #
22490
22585
  class RadarChartConfiguration < Struct.new(
@@ -22502,7 +22597,8 @@ module Aws::QuickSight
22502
22597
  :color_axis,
22503
22598
  :color_label_options,
22504
22599
  :legend,
22505
- :axes_range_scale)
22600
+ :axes_range_scale,
22601
+ :interactions)
22506
22602
  SENSITIVE = []
22507
22603
  include Aws::Structure
22508
22604
  end
@@ -24147,12 +24243,17 @@ module Aws::QuickSight
24147
24243
  # The data label configuration of a sankey diagram.
24148
24244
  # @return [Types::DataLabelOptions]
24149
24245
  #
24246
+ # @!attribute [rw] interactions
24247
+ # The general visual interactions setup for a visual.
24248
+ # @return [Types::VisualInteractionOptions]
24249
+ #
24150
24250
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SankeyDiagramChartConfiguration AWS API Documentation
24151
24251
  #
24152
24252
  class SankeyDiagramChartConfiguration < Struct.new(
24153
24253
  :field_wells,
24154
24254
  :sort_configuration,
24155
- :data_labels)
24255
+ :data_labels,
24256
+ :interactions)
24156
24257
  SENSITIVE = []
24157
24258
  include Aws::Structure
24158
24259
  end
@@ -24325,6 +24426,10 @@ module Aws::QuickSight
24325
24426
  # The palette (chart color) display setup of the visual.
24326
24427
  # @return [Types::VisualPalette]
24327
24428
  #
24429
+ # @!attribute [rw] interactions
24430
+ # The general visual interactions setup for a visual.
24431
+ # @return [Types::VisualInteractionOptions]
24432
+ #
24328
24433
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ScatterPlotConfiguration AWS API Documentation
24329
24434
  #
24330
24435
  class ScatterPlotConfiguration < Struct.new(
@@ -24337,7 +24442,8 @@ module Aws::QuickSight
24337
24442
  :legend,
24338
24443
  :data_labels,
24339
24444
  :tooltip,
24340
- :visual_palette)
24445
+ :visual_palette,
24446
+ :interactions)
24341
24447
  SENSITIVE = []
24342
24448
  include Aws::Structure
24343
24449
  end
@@ -26854,6 +26960,10 @@ module Aws::QuickSight
26854
26960
  # A collection of inline visualizations to display within a chart.
26855
26961
  # @return [Array<Types::TableInlineVisualization>]
26856
26962
  #
26963
+ # @!attribute [rw] interactions
26964
+ # The general visual interactions setup for a visual.
26965
+ # @return [Types::VisualInteractionOptions]
26966
+ #
26857
26967
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TableConfiguration AWS API Documentation
26858
26968
  #
26859
26969
  class TableConfiguration < Struct.new(
@@ -26863,7 +26973,8 @@ module Aws::QuickSight
26863
26973
  :total_options,
26864
26974
  :field_options,
26865
26975
  :paginated_report_options,
26866
- :table_inline_visualizations)
26976
+ :table_inline_visualizations,
26977
+ :interactions)
26867
26978
  SENSITIVE = []
26868
26979
  include Aws::Structure
26869
26980
  end
@@ -29468,6 +29579,10 @@ module Aws::QuickSight
29468
29579
  # The tooltip display setup of the visual.
29469
29580
  # @return [Types::TooltipOptions]
29470
29581
  #
29582
+ # @!attribute [rw] interactions
29583
+ # The general visual interactions setup for a visual.
29584
+ # @return [Types::VisualInteractionOptions]
29585
+ #
29471
29586
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TreeMapConfiguration AWS API Documentation
29472
29587
  #
29473
29588
  class TreeMapConfiguration < Struct.new(
@@ -29479,7 +29594,8 @@ module Aws::QuickSight
29479
29594
  :color_scale,
29480
29595
  :legend,
29481
29596
  :data_labels,
29482
- :tooltip)
29597
+ :tooltip,
29598
+ :interactions)
29483
29599
  SENSITIVE = []
29484
29600
  include Aws::Structure
29485
29601
  end
@@ -30820,11 +30936,13 @@ module Aws::QuickSight
30820
30936
  # @return [String]
30821
30937
  #
30822
30938
  # @!attribute [rw] grant_permissions
30823
- # The permissions that you want to grant on a resource.
30939
+ # The permissions that you want to grant on a resource. Namespace ARNs
30940
+ # are not supported `Principal` values for folder permissions.
30824
30941
  # @return [Array<Types::ResourcePermission>]
30825
30942
  #
30826
30943
  # @!attribute [rw] revoke_permissions
30827
- # The permissions that you want to revoke from a resource.
30944
+ # The permissions that you want to revoke from a resource. Namespace
30945
+ # ARNs are not supported `Principal` values for folder permissions.
30828
30946
  # @return [Array<Types::ResourcePermission>]
30829
30947
  #
30830
30948
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateFolderPermissionsRequest AWS API Documentation
@@ -32788,6 +32906,25 @@ module Aws::QuickSight
32788
32906
  include Aws::Structure
32789
32907
  end
32790
32908
 
32909
+ # The general visual interactions setup for visual publish options
32910
+ #
32911
+ # @!attribute [rw] visual_menu_option
32912
+ # The on-visual menu options for a visual.
32913
+ # @return [Types::VisualMenuOption]
32914
+ #
32915
+ # @!attribute [rw] context_menu_option
32916
+ # The context menu options for a visual.
32917
+ # @return [Types::ContextMenuOption]
32918
+ #
32919
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/VisualInteractionOptions AWS API Documentation
32920
+ #
32921
+ class VisualInteractionOptions < Struct.new(
32922
+ :visual_menu_option,
32923
+ :context_menu_option)
32924
+ SENSITIVE = []
32925
+ include Aws::Structure
32926
+ end
32927
+
32791
32928
  # The menu options for a visual.
32792
32929
  #
32793
32930
  # @!attribute [rw] availability_status
@@ -32899,6 +33036,21 @@ module Aws::QuickSight
32899
33036
  include Aws::Structure
32900
33037
  end
32901
33038
 
33039
+ # The color configuration of a waterfall visual.
33040
+ #
33041
+ # @!attribute [rw] group_color_configuration
33042
+ # The color configuration for individual groups within a waterfall
33043
+ # visual.
33044
+ # @return [Types::WaterfallChartGroupColorConfiguration]
33045
+ #
33046
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/WaterfallChartColorConfiguration AWS API Documentation
33047
+ #
33048
+ class WaterfallChartColorConfiguration < Struct.new(
33049
+ :group_color_configuration)
33050
+ SENSITIVE = []
33051
+ include Aws::Structure
33052
+ end
33053
+
32902
33054
  # The configuration for a waterfall visual.
32903
33055
  #
32904
33056
  # @!attribute [rw] field_wells
@@ -32942,6 +33094,14 @@ module Aws::QuickSight
32942
33094
  # The visual palette configuration of a waterfall visual.
32943
33095
  # @return [Types::VisualPalette]
32944
33096
  #
33097
+ # @!attribute [rw] color_configuration
33098
+ # The color configuration of a waterfall visual.
33099
+ # @return [Types::WaterfallChartColorConfiguration]
33100
+ #
33101
+ # @!attribute [rw] interactions
33102
+ # The general visual interactions setup for a visual.
33103
+ # @return [Types::VisualInteractionOptions]
33104
+ #
32945
33105
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/WaterfallChartConfiguration AWS API Documentation
32946
33106
  #
32947
33107
  class WaterfallChartConfiguration < Struct.new(
@@ -32954,7 +33114,9 @@ module Aws::QuickSight
32954
33114
  :primary_y_axis_display_options,
32955
33115
  :legend,
32956
33116
  :data_labels,
32957
- :visual_palette)
33117
+ :visual_palette,
33118
+ :color_configuration,
33119
+ :interactions)
32958
33120
  SENSITIVE = []
32959
33121
  include Aws::Structure
32960
33122
  end
@@ -32973,6 +33135,31 @@ module Aws::QuickSight
32973
33135
  include Aws::Structure
32974
33136
  end
32975
33137
 
33138
+ # The color configuration for individual groups within a waterfall
33139
+ # visual.
33140
+ #
33141
+ # @!attribute [rw] positive_bar_color
33142
+ # Defines the color for the positive bars of a waterfall chart.
33143
+ # @return [String]
33144
+ #
33145
+ # @!attribute [rw] negative_bar_color
33146
+ # Defines the color for the negative bars of a waterfall chart.
33147
+ # @return [String]
33148
+ #
33149
+ # @!attribute [rw] total_bar_color
33150
+ # Defines the color for the total bars of a waterfall chart.
33151
+ # @return [String]
33152
+ #
33153
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/WaterfallChartGroupColorConfiguration AWS API Documentation
33154
+ #
33155
+ class WaterfallChartGroupColorConfiguration < Struct.new(
33156
+ :positive_bar_color,
33157
+ :negative_bar_color,
33158
+ :total_bar_color)
33159
+ SENSITIVE = []
33160
+ include Aws::Structure
33161
+ end
33162
+
32976
33163
  # The options that determine the presentation of a waterfall visual.
32977
33164
  #
32978
33165
  # @!attribute [rw] total_bar_label
@@ -33140,13 +33327,18 @@ module Aws::QuickSight
33140
33327
  # The options for a word cloud visual.
33141
33328
  # @return [Types::WordCloudOptions]
33142
33329
  #
33330
+ # @!attribute [rw] interactions
33331
+ # The general visual interactions setup for a visual.
33332
+ # @return [Types::VisualInteractionOptions]
33333
+ #
33143
33334
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/WordCloudChartConfiguration AWS API Documentation
33144
33335
  #
33145
33336
  class WordCloudChartConfiguration < Struct.new(
33146
33337
  :field_wells,
33147
33338
  :sort_configuration,
33148
33339
  :category_label_options,
33149
- :word_cloud_options)
33340
+ :word_cloud_options,
33341
+ :interactions)
33150
33342
  SENSITIVE = []
33151
33343
  include Aws::Structure
33152
33344
  end
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-quicksight/customizations'
52
52
  # @!group service
53
53
  module Aws::QuickSight
54
54
 
55
- GEM_VERSION = '1.103.0'
55
+ GEM_VERSION = '1.104.0'
56
56
 
57
57
  end