aws-sdk-quicksight 1.165.0 → 1.167.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.
@@ -3309,6 +3309,15 @@ module Aws::QuickSight
3309
3309
  # visibility) for a color that is used in a bar chart.
3310
3310
  # @return [Types::ChartAxisLabelOptions]
3311
3311
  #
3312
+ # @!attribute [rw] default_series_settings
3313
+ # The options that determine the default presentation of all bar
3314
+ # series in `BarChartVisual`.
3315
+ # @return [Types::BarChartDefaultSeriesSettings]
3316
+ #
3317
+ # @!attribute [rw] series
3318
+ # The series item configuration of a `BarChartVisual`.
3319
+ # @return [Array<Types::BarSeriesItem>]
3320
+ #
3312
3321
  # @!attribute [rw] legend
3313
3322
  # The legend display setup of the visual.
3314
3323
  # @return [Types::LegendOptions]
@@ -3348,6 +3357,8 @@ module Aws::QuickSight
3348
3357
  :value_axis,
3349
3358
  :value_label_options,
3350
3359
  :color_label_options,
3360
+ :default_series_settings,
3361
+ :series,
3351
3362
  :legend,
3352
3363
  :data_labels,
3353
3364
  :tooltip,
@@ -3358,6 +3369,26 @@ module Aws::QuickSight
3358
3369
  include Aws::Structure
3359
3370
  end
3360
3371
 
3372
+ # The options that determine the default presentation of all bar series
3373
+ # in `BarChartVisual`.
3374
+ #
3375
+ # @!attribute [rw] decal_settings
3376
+ # Decal settings for all bar series in the visual.
3377
+ # @return [Types::DecalSettings]
3378
+ #
3379
+ # @!attribute [rw] border_settings
3380
+ # Border settings for all bar series in the visual.
3381
+ # @return [Types::BorderSettings]
3382
+ #
3383
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/BarChartDefaultSeriesSettings AWS API Documentation
3384
+ #
3385
+ class BarChartDefaultSeriesSettings < Struct.new(
3386
+ :decal_settings,
3387
+ :border_settings)
3388
+ SENSITIVE = []
3389
+ include Aws::Structure
3390
+ end
3391
+
3361
3392
  # The field wells of a `BarChartVisual`.
3362
3393
  #
3363
3394
  # This is a union type structure. For this structure to be valid, only
@@ -3375,6 +3406,25 @@ module Aws::QuickSight
3375
3406
  include Aws::Structure
3376
3407
  end
3377
3408
 
3409
+ # Options that determine the presentation of a bar series in the visual.
3410
+ #
3411
+ # @!attribute [rw] decal_settings
3412
+ # Decal settings for the bar series.
3413
+ # @return [Types::DecalSettings]
3414
+ #
3415
+ # @!attribute [rw] border_settings
3416
+ # Border settings for the bar series.
3417
+ # @return [Types::BorderSettings]
3418
+ #
3419
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/BarChartSeriesSettings AWS API Documentation
3420
+ #
3421
+ class BarChartSeriesSettings < Struct.new(
3422
+ :decal_settings,
3423
+ :border_settings)
3424
+ SENSITIVE = []
3425
+ include Aws::Structure
3426
+ end
3427
+
3378
3428
  # sort-configuration-description
3379
3429
  #
3380
3430
  # @!attribute [rw] category_sort
@@ -3485,6 +3535,28 @@ module Aws::QuickSight
3485
3535
  include Aws::Structure
3486
3536
  end
3487
3537
 
3538
+ # The series item configuration of a `BarChartVisual`.
3539
+ #
3540
+ # This is a union type structure. For this structure to be valid, only
3541
+ # one of the attributes can be defined.
3542
+ #
3543
+ # @!attribute [rw] field_bar_series_item
3544
+ # The field series item configuration of a `BarChartVisual`.
3545
+ # @return [Types::FieldBarSeriesItem]
3546
+ #
3547
+ # @!attribute [rw] data_field_bar_series_item
3548
+ # The data field series item configuration of a `BarChartVisual`.
3549
+ # @return [Types::DataFieldBarSeriesItem]
3550
+ #
3551
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/BarSeriesItem AWS API Documentation
3552
+ #
3553
+ class BarSeriesItem < Struct.new(
3554
+ :field_bar_series_item,
3555
+ :data_field_bar_series_item)
3556
+ SENSITIVE = []
3557
+ include Aws::Structure
3558
+ end
3559
+
3488
3560
  # Metadata for basic authentication using username and password.
3489
3561
  #
3490
3562
  # @!attribute [rw] base_endpoint
@@ -3871,6 +3943,31 @@ module Aws::QuickSight
3871
3943
  include Aws::Structure
3872
3944
  end
3873
3945
 
3946
+ # Border settings configuration for visual elements, including
3947
+ # visibility, width, and color properties.
3948
+ #
3949
+ # @!attribute [rw] border_visibility
3950
+ # Visibility setting for the border.
3951
+ # @return [String]
3952
+ #
3953
+ # @!attribute [rw] border_width
3954
+ # Width of the border. Valid range is from 1px to 8px.
3955
+ # @return [String]
3956
+ #
3957
+ # @!attribute [rw] border_color
3958
+ # Color of the border.
3959
+ # @return [String]
3960
+ #
3961
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/BorderSettings AWS API Documentation
3962
+ #
3963
+ class BorderSettings < Struct.new(
3964
+ :border_visibility,
3965
+ :border_width,
3966
+ :border_color)
3967
+ SENSITIVE = []
3968
+ include Aws::Structure
3969
+ end
3970
+
3874
3971
  # The display options for tile borders for visuals.
3875
3972
  #
3876
3973
  # @!attribute [rw] color
@@ -4589,6 +4686,10 @@ module Aws::QuickSight
4589
4686
  # The ability to perform research-related actions.
4590
4687
  # @return [String]
4591
4688
  #
4689
+ # @!attribute [rw] self_upgrade_user_role
4690
+ # The ability to enable users to upgrade their user role.
4691
+ # @return [String]
4692
+ #
4592
4693
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/Capabilities AWS API Documentation
4593
4694
  #
4594
4695
  class Capabilities < Struct.new(
@@ -4628,7 +4729,8 @@ module Aws::QuickSight
4628
4729
  :space,
4629
4730
  :chat_agent,
4630
4731
  :create_chat_agents,
4631
- :research)
4732
+ :research,
4733
+ :self_upgrade_user_role)
4632
4734
  SENSITIVE = []
4633
4735
  include Aws::Structure
4634
4736
  end
@@ -5148,13 +5250,18 @@ module Aws::QuickSight
5148
5250
  # The color configurations of the column.
5149
5251
  # @return [Types::ColorsConfiguration]
5150
5252
  #
5253
+ # @!attribute [rw] decal_settings_configuration
5254
+ # Decal configuration of the column.
5255
+ # @return [Types::DecalSettingsConfiguration]
5256
+ #
5151
5257
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ColumnConfiguration AWS API Documentation
5152
5258
  #
5153
5259
  class ColumnConfiguration < Struct.new(
5154
5260
  :column,
5155
5261
  :format_configuration,
5156
5262
  :role,
5157
- :colors_configuration)
5263
+ :colors_configuration,
5264
+ :decal_settings_configuration)
5158
5265
  SENSITIVE = []
5159
5266
  include Aws::Structure
5160
5267
  end
@@ -5509,6 +5616,15 @@ module Aws::QuickSight
5509
5616
  # visibility) of a combo chart's color field well.
5510
5617
  # @return [Types::ChartAxisLabelOptions]
5511
5618
  #
5619
+ # @!attribute [rw] default_series_settings
5620
+ # The options that determine the default presentation of all series in
5621
+ # `ComboChartVisual`.
5622
+ # @return [Types::ComboChartDefaultSeriesSettings]
5623
+ #
5624
+ # @!attribute [rw] series
5625
+ # The series item configuration of a `ComboChartVisual`.
5626
+ # @return [Array<Types::ComboSeriesItem>]
5627
+ #
5512
5628
  # @!attribute [rw] legend
5513
5629
  # The legend display setup of the visual.
5514
5630
  # @return [Types::LegendOptions]
@@ -5555,6 +5671,8 @@ module Aws::QuickSight
5555
5671
  :secondary_y_axis_label_options,
5556
5672
  :single_axis_options,
5557
5673
  :color_label_options,
5674
+ :default_series_settings,
5675
+ :series,
5558
5676
  :legend,
5559
5677
  :bar_data_labels,
5560
5678
  :line_data_labels,
@@ -5566,6 +5684,36 @@ module Aws::QuickSight
5566
5684
  include Aws::Structure
5567
5685
  end
5568
5686
 
5687
+ # The options that determine the default presentation of all series in
5688
+ # `ComboChartVisual`.
5689
+ #
5690
+ # @!attribute [rw] line_style_settings
5691
+ # Line styles options for all line series in the visual.
5692
+ # @return [Types::LineChartLineStyleSettings]
5693
+ #
5694
+ # @!attribute [rw] marker_style_settings
5695
+ # Marker styles options for all line series in the visual.
5696
+ # @return [Types::LineChartMarkerStyleSettings]
5697
+ #
5698
+ # @!attribute [rw] decal_settings
5699
+ # Decal settings for all series in the visual.
5700
+ # @return [Types::DecalSettings]
5701
+ #
5702
+ # @!attribute [rw] border_settings
5703
+ # Border settings for all bar series in the visual.
5704
+ # @return [Types::BorderSettings]
5705
+ #
5706
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ComboChartDefaultSeriesSettings AWS API Documentation
5707
+ #
5708
+ class ComboChartDefaultSeriesSettings < Struct.new(
5709
+ :line_style_settings,
5710
+ :marker_style_settings,
5711
+ :decal_settings,
5712
+ :border_settings)
5713
+ SENSITIVE = []
5714
+ include Aws::Structure
5715
+ end
5716
+
5569
5717
  # The field wells of the visual.
5570
5718
  #
5571
5719
  # This is a union type structure. For this structure to be valid, only
@@ -5585,6 +5733,35 @@ module Aws::QuickSight
5585
5733
  include Aws::Structure
5586
5734
  end
5587
5735
 
5736
+ # Options that determine the presentation of a series in the visual.
5737
+ #
5738
+ # @!attribute [rw] line_style_settings
5739
+ # Line styles options for the line series in the visual.
5740
+ # @return [Types::LineChartLineStyleSettings]
5741
+ #
5742
+ # @!attribute [rw] marker_style_settings
5743
+ # Marker styles options for the line series in the visual.
5744
+ # @return [Types::LineChartMarkerStyleSettings]
5745
+ #
5746
+ # @!attribute [rw] decal_settings
5747
+ # Decal settings for the series in the visual.
5748
+ # @return [Types::DecalSettings]
5749
+ #
5750
+ # @!attribute [rw] border_settings
5751
+ # Border settings for the bar series in the visual.
5752
+ # @return [Types::BorderSettings]
5753
+ #
5754
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ComboChartSeriesSettings AWS API Documentation
5755
+ #
5756
+ class ComboChartSeriesSettings < Struct.new(
5757
+ :line_style_settings,
5758
+ :marker_style_settings,
5759
+ :decal_settings,
5760
+ :border_settings)
5761
+ SENSITIVE = []
5762
+ include Aws::Structure
5763
+ end
5764
+
5588
5765
  # The sort configuration of a `ComboChartVisual`.
5589
5766
  #
5590
5767
  # @!attribute [rw] category_sort
@@ -5673,6 +5850,28 @@ module Aws::QuickSight
5673
5850
  include Aws::Structure
5674
5851
  end
5675
5852
 
5853
+ # The series item configuration of a `ComboChartVisual`.
5854
+ #
5855
+ # This is a union type structure. For this structure to be valid, only
5856
+ # one of the attributes can be defined.
5857
+ #
5858
+ # @!attribute [rw] field_combo_series_item
5859
+ # The field series item configuration of a `ComboChartVisual`.
5860
+ # @return [Types::FieldComboSeriesItem]
5861
+ #
5862
+ # @!attribute [rw] data_field_combo_series_item
5863
+ # The data field series item configuration of a `ComboChartVisual`.
5864
+ # @return [Types::DataFieldComboSeriesItem]
5865
+ #
5866
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ComboSeriesItem AWS API Documentation
5867
+ #
5868
+ class ComboSeriesItem < Struct.new(
5869
+ :field_combo_series_item,
5870
+ :data_field_combo_series_item)
5871
+ SENSITIVE = []
5872
+ include Aws::Structure
5873
+ end
5874
+
5676
5875
  # A structure that represents a comparative order.
5677
5876
  #
5678
5877
  # @!attribute [rw] use_ordering
@@ -6118,6 +6317,25 @@ module Aws::QuickSight
6118
6317
  include Aws::Structure
6119
6318
  end
6120
6319
 
6320
+ # The preference coordinate for the geocode preference.
6321
+ #
6322
+ # @!attribute [rw] latitude
6323
+ # The latitude coordinate value for the geocode preference.
6324
+ # @return [Float]
6325
+ #
6326
+ # @!attribute [rw] longitude
6327
+ # The longitude coordinate value for the geocode preference.
6328
+ # @return [Float]
6329
+ #
6330
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/Coordinate AWS API Documentation
6331
+ #
6332
+ class Coordinate < Struct.new(
6333
+ :latitude,
6334
+ :longitude)
6335
+ SENSITIVE = []
6336
+ include Aws::Structure
6337
+ end
6338
+
6121
6339
  # @!attribute [rw] aws_account_id
6122
6340
  # The ID for the Amazon Web Services account that you want to
6123
6341
  # customize Quick Sight for.
@@ -9003,6 +9221,22 @@ module Aws::QuickSight
9003
9221
  include Aws::Structure
9004
9222
  end
9005
9223
 
9224
+ # The options that define customizations available to dashboard readers
9225
+ # for a specific visual
9226
+ #
9227
+ # @!attribute [rw] fields_configuration
9228
+ # The configuration that controls field customization options
9229
+ # available to dashboard readers for a visual.
9230
+ # @return [Types::VisualCustomizationFieldsConfiguration]
9231
+ #
9232
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DashboardCustomizationVisualOptions AWS API Documentation
9233
+ #
9234
+ class DashboardCustomizationVisualOptions < Struct.new(
9235
+ :fields_configuration)
9236
+ SENSITIVE = []
9237
+ include Aws::Structure
9238
+ end
9239
+
9006
9240
  # Dashboard error.
9007
9241
  #
9008
9242
  # @!attribute [rw] type
@@ -9639,6 +9873,60 @@ module Aws::QuickSight
9639
9873
  include Aws::Structure
9640
9874
  end
9641
9875
 
9876
+ # The data field series item configuration of a `BarChartVisual`.
9877
+ #
9878
+ # @!attribute [rw] field_id
9879
+ # Field ID of the field that you are setting the series configuration
9880
+ # for.
9881
+ # @return [String]
9882
+ #
9883
+ # @!attribute [rw] field_value
9884
+ # Field value of the field that you are setting the series
9885
+ # configuration for.
9886
+ # @return [String]
9887
+ #
9888
+ # @!attribute [rw] settings
9889
+ # Options that determine the presentation of bar series associated to
9890
+ # the field.
9891
+ # @return [Types::BarChartSeriesSettings]
9892
+ #
9893
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DataFieldBarSeriesItem AWS API Documentation
9894
+ #
9895
+ class DataFieldBarSeriesItem < Struct.new(
9896
+ :field_id,
9897
+ :field_value,
9898
+ :settings)
9899
+ SENSITIVE = [:field_value]
9900
+ include Aws::Structure
9901
+ end
9902
+
9903
+ # The data field series item configuration of a `ComboChartVisual`.
9904
+ #
9905
+ # @!attribute [rw] field_id
9906
+ # Field ID of the field that you are setting the series configuration
9907
+ # for.
9908
+ # @return [String]
9909
+ #
9910
+ # @!attribute [rw] field_value
9911
+ # Field value of the field that you are setting the series
9912
+ # configuration for.
9913
+ # @return [String]
9914
+ #
9915
+ # @!attribute [rw] settings
9916
+ # Options that determine the presentation of series associated to the
9917
+ # field.
9918
+ # @return [Types::ComboChartSeriesSettings]
9919
+ #
9920
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DataFieldComboSeriesItem AWS API Documentation
9921
+ #
9922
+ class DataFieldComboSeriesItem < Struct.new(
9923
+ :field_id,
9924
+ :field_value,
9925
+ :settings)
9926
+ SENSITIVE = [:field_value]
9927
+ include Aws::Structure
9928
+ end
9929
+
9642
9930
  # The data field series item configuration of a line chart.
9643
9931
  #
9644
9932
  # @!attribute [rw] field_id
@@ -10851,6 +11139,10 @@ module Aws::QuickSight
10851
11139
  # data source in Amazon Secrets Manager.
10852
11140
  # @return [String]
10853
11141
  #
11142
+ # @!attribute [rw] key_pair_credentials
11143
+ # The credentials for connecting using key-pair.
11144
+ # @return [Types::KeyPairCredentials]
11145
+ #
10854
11146
  # @!attribute [rw] web_proxy_credentials
10855
11147
  # The credentials for connecting through a web proxy server.
10856
11148
  # @return [Types::WebProxyCredentials]
@@ -10861,6 +11153,7 @@ module Aws::QuickSight
10861
11153
  :credential_pair,
10862
11154
  :copy_source_arn,
10863
11155
  :secret_arn,
11156
+ :key_pair_credentials,
10864
11157
  :web_proxy_credentials)
10865
11158
  SENSITIVE = []
10866
11159
  include Aws::Structure
@@ -11630,6 +11923,108 @@ module Aws::QuickSight
11630
11923
  include Aws::Structure
11631
11924
  end
11632
11925
 
11926
+ # Decal settings for accessibility features that define visual patterns
11927
+ # and styling for data elements.
11928
+ #
11929
+ # @!attribute [rw] element_value
11930
+ # Field value of the field that you are setting the decal pattern to.
11931
+ # Applicable only for field level settings.
11932
+ # @return [String]
11933
+ #
11934
+ # @!attribute [rw] decal_visibility
11935
+ # Visibility setting for the decal pattern.
11936
+ # @return [String]
11937
+ #
11938
+ # @!attribute [rw] decal_color
11939
+ # Color configuration for the decal pattern.
11940
+ # @return [String]
11941
+ #
11942
+ # @!attribute [rw] decal_pattern_type
11943
+ # Type of pattern used for the decal, such as solid, diagonal, or
11944
+ # circular patterns in various sizes.
11945
+ #
11946
+ # * `SOLID`: Solid fill pattern.
11947
+ #
11948
+ # * `DIAGONAL_SMALL`: Small diagonal stripes pattern.
11949
+ #
11950
+ # * `DIAGONAL_MEDIUM`: Medium diagonal stripes pattern.
11951
+ #
11952
+ # * `DIAGONAL_LARGE`: Large diagonal stripes pattern.
11953
+ #
11954
+ # * `DIAGONAL_OPPOSITE_SMALL`: Small cross-diagonal stripes pattern.
11955
+ #
11956
+ # * `DIAGONAL_OPPOSITE_MEDIUM`: Medium cross-diagonal stripes pattern.
11957
+ #
11958
+ # * `DIAGONAL_OPPOSITE_LARGE`: Large cross-diagonal stripes pattern.
11959
+ #
11960
+ # * `CIRCLE_SMALL`: Small circle pattern.
11961
+ #
11962
+ # * `CIRCLE_MEDIUM`: Medium circle pattern.
11963
+ #
11964
+ # * `CIRCLE_LARGE`: Large circle pattern.
11965
+ #
11966
+ # * `DIAMOND_SMALL`: Small diamonds pattern.
11967
+ #
11968
+ # * `DIAMOND_MEDIUM`: Medium diamonds pattern.
11969
+ #
11970
+ # * `DIAMOND_LARGE`: Large diamonds pattern.
11971
+ #
11972
+ # * `DIAMOND_GRID_SMALL`: Small diamond grid pattern.
11973
+ #
11974
+ # * `DIAMOND_GRID_MEDIUM`: Medium diamond grid pattern.
11975
+ #
11976
+ # * `DIAMOND_GRID_LARGE`: Large diamond grid pattern.
11977
+ #
11978
+ # * `CHECKERBOARD_SMALL`: Small checkerboard pattern.
11979
+ #
11980
+ # * `CHECKERBOARD_MEDIUM`: Medium checkerboard pattern.
11981
+ #
11982
+ # * `CHECKERBOARD_LARGE`: Large checkerboard pattern.
11983
+ #
11984
+ # * `TRIANGLE_SMALL`: Small triangles pattern.
11985
+ #
11986
+ # * `TRIANGLE_MEDIUM`: Medium triangles pattern.
11987
+ #
11988
+ # * `TRIANGLE_LARGE`: Large triangles pattern.
11989
+ # @return [String]
11990
+ #
11991
+ # @!attribute [rw] decal_style_type
11992
+ # Style type for the decal, which can be either manual or automatic.
11993
+ # This field is only applicable for line series.
11994
+ #
11995
+ # * `Manual`: Apply manual line and marker configuration for line
11996
+ # series.
11997
+ #
11998
+ # * `Auto`: Apply automatic line and marker configuration for line
11999
+ # series.
12000
+ # @return [String]
12001
+ #
12002
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DecalSettings AWS API Documentation
12003
+ #
12004
+ class DecalSettings < Struct.new(
12005
+ :element_value,
12006
+ :decal_visibility,
12007
+ :decal_color,
12008
+ :decal_pattern_type,
12009
+ :decal_style_type)
12010
+ SENSITIVE = []
12011
+ include Aws::Structure
12012
+ end
12013
+
12014
+ # Decal settings configuration for a column
12015
+ #
12016
+ # @!attribute [rw] custom_decal_settings
12017
+ # A list of up to 50 decal settings.
12018
+ # @return [Array<Types::DecalSettings>]
12019
+ #
12020
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DecalSettingsConfiguration AWS API Documentation
12021
+ #
12022
+ class DecalSettingsConfiguration < Struct.new(
12023
+ :custom_decal_settings)
12024
+ SENSITIVE = []
12025
+ include Aws::Structure
12026
+ end
12027
+
11633
12028
  # A decimal parameter for a dataset.
11634
12029
  #
11635
12030
  # @!attribute [rw] id
@@ -15954,6 +16349,47 @@ module Aws::QuickSight
15954
16349
  include Aws::Structure
15955
16350
  end
15956
16351
 
16352
+ # @!attribute [rw] aws_account_id
16353
+ # The ID of the Amazon Web Services account that contains the Quick
16354
+ # Suite self-upgrade configuration.
16355
+ # @return [String]
16356
+ #
16357
+ # @!attribute [rw] namespace
16358
+ # The Quick Suite namespace that you want to describe the Quick Suite
16359
+ # self-upgrade configuration for.
16360
+ # @return [String]
16361
+ #
16362
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeSelfUpgradeConfigurationRequest AWS API Documentation
16363
+ #
16364
+ class DescribeSelfUpgradeConfigurationRequest < Struct.new(
16365
+ :aws_account_id,
16366
+ :namespace)
16367
+ SENSITIVE = []
16368
+ include Aws::Structure
16369
+ end
16370
+
16371
+ # @!attribute [rw] self_upgrade_configuration
16372
+ # The self-upgrade configuration for the Quick Suite account.
16373
+ # @return [Types::SelfUpgradeConfiguration]
16374
+ #
16375
+ # @!attribute [rw] request_id
16376
+ # The Amazon Web Services request ID for this operation.
16377
+ # @return [String]
16378
+ #
16379
+ # @!attribute [rw] status
16380
+ # The HTTP status of the request.
16381
+ # @return [Integer]
16382
+ #
16383
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeSelfUpgradeConfigurationResponse AWS API Documentation
16384
+ #
16385
+ class DescribeSelfUpgradeConfigurationResponse < Struct.new(
16386
+ :self_upgrade_configuration,
16387
+ :request_id,
16388
+ :status)
16389
+ SENSITIVE = []
16390
+ include Aws::Structure
16391
+ end
16392
+
15957
16393
  # @!attribute [rw] aws_account_id
15958
16394
  # The ID of the Amazon Web Services account that contains the template
15959
16395
  # alias that you're describing.
@@ -17227,6 +17663,27 @@ module Aws::QuickSight
17227
17663
  include Aws::Structure
17228
17664
  end
17229
17665
 
17666
+ # The field series item configuration of a `BarChartVisual`.
17667
+ #
17668
+ # @!attribute [rw] field_id
17669
+ # Field ID of the field for which you are setting the series
17670
+ # configuration.
17671
+ # @return [String]
17672
+ #
17673
+ # @!attribute [rw] settings
17674
+ # Options that determine the presentation of bar series associated to
17675
+ # the field.
17676
+ # @return [Types::BarChartSeriesSettings]
17677
+ #
17678
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/FieldBarSeriesItem AWS API Documentation
17679
+ #
17680
+ class FieldBarSeriesItem < Struct.new(
17681
+ :field_id,
17682
+ :settings)
17683
+ SENSITIVE = []
17684
+ include Aws::Structure
17685
+ end
17686
+
17230
17687
  # The setup for the detailed tooltip.
17231
17688
  #
17232
17689
  # @!attribute [rw] aggregation_visibility
@@ -17256,6 +17713,27 @@ module Aws::QuickSight
17256
17713
  include Aws::Structure
17257
17714
  end
17258
17715
 
17716
+ # The field series item configuration of a `ComboChartVisual`.
17717
+ #
17718
+ # @!attribute [rw] field_id
17719
+ # Field ID of the field for which you are setting the series
17720
+ # configuration.
17721
+ # @return [String]
17722
+ #
17723
+ # @!attribute [rw] settings
17724
+ # Options that determine the presentation of series associated to the
17725
+ # field.
17726
+ # @return [Types::ComboChartSeriesSettings]
17727
+ #
17728
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/FieldComboSeriesItem AWS API Documentation
17729
+ #
17730
+ class FieldComboSeriesItem < Struct.new(
17731
+ :field_id,
17732
+ :settings)
17733
+ SENSITIVE = []
17734
+ include Aws::Structure
17735
+ end
17736
+
17259
17737
  # A FieldFolder element is a folder that contains fields and nested
17260
17738
  # subfolders.
17261
17739
  #
@@ -17584,6 +18062,10 @@ module Aws::QuickSight
17584
18062
  # The alt text for the visual.
17585
18063
  # @return [String]
17586
18064
  #
18065
+ # @!attribute [rw] geocoding_preferences
18066
+ # The geocoding prefences for filled map visual.
18067
+ # @return [Array<Types::GeocodePreference>]
18068
+ #
17587
18069
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/FilledMapVisual AWS API Documentation
17588
18070
  #
17589
18071
  class FilledMapVisual < Struct.new(
@@ -17594,7 +18076,8 @@ module Aws::QuickSight
17594
18076
  :conditional_formatting,
17595
18077
  :column_hierarchies,
17596
18078
  :actions,
17597
- :visual_content_alt_text)
18079
+ :visual_content_alt_text,
18080
+ :geocoding_preferences)
17598
18081
  SENSITIVE = []
17599
18082
  include Aws::Structure
17600
18083
  end
@@ -19778,6 +20261,88 @@ module Aws::QuickSight
19778
20261
  include Aws::Structure
19779
20262
  end
19780
20263
 
20264
+ # The geocode preference.
20265
+ #
20266
+ # @!attribute [rw] request_key
20267
+ # The unique request key for the geocode preference.
20268
+ # @return [Types::GeocoderHierarchy]
20269
+ #
20270
+ # @!attribute [rw] preference
20271
+ # The preference definition for the geocode preference.
20272
+ # @return [Types::GeocodePreferenceValue]
20273
+ #
20274
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeocodePreference AWS API Documentation
20275
+ #
20276
+ class GeocodePreference < Struct.new(
20277
+ :request_key,
20278
+ :preference)
20279
+ SENSITIVE = []
20280
+ include Aws::Structure
20281
+ end
20282
+
20283
+ # The preference value for the geocode preference.
20284
+ #
20285
+ # @note GeocodePreferenceValue is a union - when making an API calls you must set exactly one of the members.
20286
+ #
20287
+ # @note GeocodePreferenceValue is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of GeocodePreferenceValue corresponding to the set member.
20288
+ #
20289
+ # @!attribute [rw] geocoder_hierarchy
20290
+ # The preference hierarchy for the geocode preference.
20291
+ # @return [Types::GeocoderHierarchy]
20292
+ #
20293
+ # @!attribute [rw] coordinate
20294
+ # The preference coordinate for the geocode preference.
20295
+ # @return [Types::Coordinate]
20296
+ #
20297
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeocodePreferenceValue AWS API Documentation
20298
+ #
20299
+ class GeocodePreferenceValue < Struct.new(
20300
+ :geocoder_hierarchy,
20301
+ :coordinate,
20302
+ :unknown)
20303
+ SENSITIVE = []
20304
+ include Aws::Structure
20305
+ include Aws::Structure::Union
20306
+
20307
+ class GeocoderHierarchy < GeocodePreferenceValue; end
20308
+ class Coordinate < GeocodePreferenceValue; end
20309
+ class Unknown < GeocodePreferenceValue; end
20310
+ end
20311
+
20312
+ # The preference hierarchy for the geocode preference.
20313
+ #
20314
+ # @!attribute [rw] country
20315
+ # The country value for the preference hierarchy.
20316
+ # @return [String]
20317
+ #
20318
+ # @!attribute [rw] state
20319
+ # The state/region value for the preference hierarchy.
20320
+ # @return [String]
20321
+ #
20322
+ # @!attribute [rw] county
20323
+ # The county/district value for the preference hierarchy.
20324
+ # @return [String]
20325
+ #
20326
+ # @!attribute [rw] city
20327
+ # The city value for the preference hierarchy.
20328
+ # @return [String]
20329
+ #
20330
+ # @!attribute [rw] post_code
20331
+ # The postcode value for the preference hierarchy.
20332
+ # @return [String]
20333
+ #
20334
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeocoderHierarchy AWS API Documentation
20335
+ #
20336
+ class GeocoderHierarchy < Struct.new(
20337
+ :country,
20338
+ :state,
20339
+ :county,
20340
+ :city,
20341
+ :post_code)
20342
+ SENSITIVE = []
20343
+ include Aws::Structure
20344
+ end
20345
+
19781
20346
  # The definition for a categorical color.
19782
20347
  #
19783
20348
  # @!attribute [rw] category_data_colors
@@ -20435,6 +21000,10 @@ module Aws::QuickSight
20435
21000
  # The alt text for the visual.
20436
21001
  # @return [String]
20437
21002
  #
21003
+ # @!attribute [rw] geocoding_preferences
21004
+ # The geocoding prefences for geospatial map.
21005
+ # @return [Array<Types::GeocodePreference>]
21006
+ #
20438
21007
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialMapVisual AWS API Documentation
20439
21008
  #
20440
21009
  class GeospatialMapVisual < Struct.new(
@@ -20444,7 +21013,8 @@ module Aws::QuickSight
20444
21013
  :chart_configuration,
20445
21014
  :column_hierarchies,
20446
21015
  :actions,
20447
- :visual_content_alt_text)
21016
+ :visual_content_alt_text,
21017
+ :geocoding_preferences)
20448
21018
  SENSITIVE = []
20449
21019
  include Aws::Structure
20450
21020
  end
@@ -20895,6 +21465,70 @@ module Aws::QuickSight
20895
21465
  include Aws::Structure
20896
21466
  end
20897
21467
 
21468
+ # ///////////////////////// /////////////////////////
21469
+ #
21470
+ # @!attribute [rw] aws_account_id
21471
+ # The ID for the Amazon Web Services account that the user whose
21472
+ # identity context you want to retrieve is in. Currently, you use the
21473
+ # ID for the Amazon Web Services account that contains your Quick
21474
+ # Sight account.
21475
+ # @return [String]
21476
+ #
21477
+ # @!attribute [rw] user_identifier
21478
+ # The identifier for the user whose identity context you want to
21479
+ # retrieve.
21480
+ # @return [Types::UserIdentifier]
21481
+ #
21482
+ # @!attribute [rw] namespace
21483
+ # The namespace of the user that you want to get identity context for.
21484
+ # This parameter is required when the UserIdentifier is specified
21485
+ # using Email or UserName.
21486
+ # @return [String]
21487
+ #
21488
+ # @!attribute [rw] session_expires_at
21489
+ # The timestamp at which the session will expire.
21490
+ # @return [Time]
21491
+ #
21492
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GetIdentityContextRequest AWS API Documentation
21493
+ #
21494
+ class GetIdentityContextRequest < Struct.new(
21495
+ :aws_account_id,
21496
+ :user_identifier,
21497
+ :namespace,
21498
+ :session_expires_at)
21499
+ SENSITIVE = []
21500
+ include Aws::Structure
21501
+ end
21502
+
21503
+ # @!attribute [rw] status
21504
+ # The HTTP status of the request.
21505
+ # @return [Integer]
21506
+ #
21507
+ # @!attribute [rw] request_id
21508
+ # The Amazon Web Services request ID for this operation.
21509
+ # @return [String]
21510
+ #
21511
+ # @!attribute [rw] context
21512
+ # The identity context information for the user. This is an identity
21513
+ # token that should be used as the ContextAssertion parameter in the
21514
+ # [STS AssumeRole API][1] call to obtain identity enhanced Amazon Web
21515
+ # Services credentials.
21516
+ #
21517
+ #
21518
+ #
21519
+ # [1]: https://docs.aws.amazon.com/STS/latest/APIReference/API_AssumeRole.html
21520
+ # @return [String]
21521
+ #
21522
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GetIdentityContextResponse AWS API Documentation
21523
+ #
21524
+ class GetIdentityContextResponse < Struct.new(
21525
+ :status,
21526
+ :request_id,
21527
+ :context)
21528
+ SENSITIVE = []
21529
+ include Aws::Structure
21530
+ end
21531
+
20898
21532
  # @!attribute [rw] aws_account_id
20899
21533
  # The ID for the Amazon Web Services account associated with your
20900
21534
  # Amazon Quick Sight subscription.
@@ -22557,6 +23191,24 @@ module Aws::QuickSight
22557
23191
  include Aws::Structure
22558
23192
  end
22559
23193
 
23194
+ # One or more parameter has a value that isn't valid.
23195
+ #
23196
+ # @!attribute [rw] message
23197
+ # @return [String]
23198
+ #
23199
+ # @!attribute [rw] request_id
23200
+ # The Amazon Web Services request ID for this request.
23201
+ # @return [String]
23202
+ #
23203
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/InvalidParameterException AWS API Documentation
23204
+ #
23205
+ class InvalidParameterException < Struct.new(
23206
+ :message,
23207
+ :request_id)
23208
+ SENSITIVE = []
23209
+ include Aws::Structure
23210
+ end
23211
+
22560
23212
  # One or more parameters has a value that isn't valid.
22561
23213
  #
22562
23214
  # @!attribute [rw] message
@@ -23128,6 +23780,31 @@ module Aws::QuickSight
23128
23780
  include Aws::Structure
23129
23781
  end
23130
23782
 
23783
+ # The combination of username, private key and passphrase that are used
23784
+ # as credentials.
23785
+ #
23786
+ # @!attribute [rw] key_pair_username
23787
+ # Username
23788
+ # @return [String]
23789
+ #
23790
+ # @!attribute [rw] private_key
23791
+ # PrivateKey
23792
+ # @return [String]
23793
+ #
23794
+ # @!attribute [rw] private_key_passphrase
23795
+ # PrivateKeyPassphrase
23796
+ # @return [String]
23797
+ #
23798
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/KeyPairCredentials AWS API Documentation
23799
+ #
23800
+ class KeyPairCredentials < Struct.new(
23801
+ :key_pair_username,
23802
+ :private_key,
23803
+ :private_key_passphrase)
23804
+ SENSITIVE = [:private_key, :private_key_passphrase]
23805
+ include Aws::Structure
23806
+ end
23807
+
23131
23808
  # The share label options for the labels.
23132
23809
  #
23133
23810
  # @!attribute [rw] visibility
@@ -23569,12 +24246,17 @@ module Aws::QuickSight
23569
24246
  # Marker styles options for all line series in the visual.
23570
24247
  # @return [Types::LineChartMarkerStyleSettings]
23571
24248
  #
24249
+ # @!attribute [rw] decal_settings
24250
+ # Decal settings options for all line series in the visual.
24251
+ # @return [Types::DecalSettings]
24252
+ #
23572
24253
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/LineChartDefaultSeriesSettings AWS API Documentation
23573
24254
  #
23574
24255
  class LineChartDefaultSeriesSettings < Struct.new(
23575
24256
  :axis_binding,
23576
24257
  :line_style_settings,
23577
- :marker_style_settings)
24258
+ :marker_style_settings,
24259
+ :decal_settings)
23578
24260
  SENSITIVE = []
23579
24261
  include Aws::Structure
23580
24262
  end
@@ -23686,11 +24368,16 @@ module Aws::QuickSight
23686
24368
  # Marker styles options for a line series in `LineChartVisual`.
23687
24369
  # @return [Types::LineChartMarkerStyleSettings]
23688
24370
  #
24371
+ # @!attribute [rw] decal_settings
24372
+ # Decal settings for a line series in `LineChartVisual`.
24373
+ # @return [Types::DecalSettings]
24374
+ #
23689
24375
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/LineChartSeriesSettings AWS API Documentation
23690
24376
  #
23691
24377
  class LineChartSeriesSettings < Struct.new(
23692
24378
  :line_style_settings,
23693
- :marker_style_settings)
24379
+ :marker_style_settings,
24380
+ :decal_settings)
23694
24381
  SENSITIVE = []
23695
24382
  include Aws::Structure
23696
24383
  end
@@ -25137,6 +25824,63 @@ module Aws::QuickSight
25137
25824
  include Aws::Structure
25138
25825
  end
25139
25826
 
25827
+ # @!attribute [rw] aws_account_id
25828
+ # The ID of the Amazon Web Services account that contains the
25829
+ # self-upgrade requests.
25830
+ # @return [String]
25831
+ #
25832
+ # @!attribute [rw] namespace
25833
+ # The Quick Suite namespace for the self-upgrade requests.
25834
+ # @return [String]
25835
+ #
25836
+ # @!attribute [rw] next_token
25837
+ # The token for the next set of results, or null if there are no more
25838
+ # results.
25839
+ # @return [String]
25840
+ #
25841
+ # @!attribute [rw] max_results
25842
+ # The maximum number of results to return.
25843
+ # @return [Integer]
25844
+ #
25845
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ListSelfUpgradesRequest AWS API Documentation
25846
+ #
25847
+ class ListSelfUpgradesRequest < Struct.new(
25848
+ :aws_account_id,
25849
+ :namespace,
25850
+ :next_token,
25851
+ :max_results)
25852
+ SENSITIVE = []
25853
+ include Aws::Structure
25854
+ end
25855
+
25856
+ # @!attribute [rw] self_upgrade_request_details
25857
+ # A list of self-upgrade request details.
25858
+ # @return [Array<Types::SelfUpgradeRequestDetail>]
25859
+ #
25860
+ # @!attribute [rw] next_token
25861
+ # The token for the next set of results, or null if there are no more
25862
+ # results.
25863
+ # @return [String]
25864
+ #
25865
+ # @!attribute [rw] request_id
25866
+ # The Amazon Web Services request ID for this operation.
25867
+ # @return [String]
25868
+ #
25869
+ # @!attribute [rw] status
25870
+ # The HTTP status of the request.
25871
+ # @return [Integer]
25872
+ #
25873
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ListSelfUpgradesResponse AWS API Documentation
25874
+ #
25875
+ class ListSelfUpgradesResponse < Struct.new(
25876
+ :self_upgrade_request_details,
25877
+ :next_token,
25878
+ :request_id,
25879
+ :status)
25880
+ SENSITIVE = []
25881
+ include Aws::Structure
25882
+ end
25883
+
25140
25884
  # @!attribute [rw] resource_arn
25141
25885
  # The Amazon Resource Name (ARN) of the resource that you want a list
25142
25886
  # of tags for.
@@ -28394,6 +29138,11 @@ module Aws::QuickSight
28394
29138
  # The paginated report options for a pivot table visual.
28395
29139
  # @return [Types::PivotTablePaginatedReportOptions]
28396
29140
  #
29141
+ # @!attribute [rw] dashboard_customization_visual_options
29142
+ # The options that define customizations available to dashboard
29143
+ # readers for a specific visual
29144
+ # @return [Types::DashboardCustomizationVisualOptions]
29145
+ #
28397
29146
  # @!attribute [rw] interactions
28398
29147
  # The general visual interactions setup for a visual.
28399
29148
  # @return [Types::VisualInteractionOptions]
@@ -28407,6 +29156,7 @@ module Aws::QuickSight
28407
29156
  :total_options,
28408
29157
  :field_options,
28409
29158
  :paginated_report_options,
29159
+ :dashboard_customization_visual_options,
28410
29160
  :interactions)
28411
29161
  SENSITIVE = []
28412
29162
  include Aws::Structure
@@ -31057,6 +31807,26 @@ module Aws::QuickSight
31057
31807
  include Aws::Structure
31058
31808
  end
31059
31809
 
31810
+ # A structure that contains information about files that are requested
31811
+ # for registered user during a `StartDashboardSnapshotJob` API call.
31812
+ #
31813
+ # @!attribute [rw] file_groups
31814
+ # A list of `SnapshotJobResultFileGroup` objects that contain
31815
+ # information on the files that are requested for registered user
31816
+ # during a `StartDashboardSnapshotJob` API call. If the job succeeds,
31817
+ # these objects contain the location where the snapshot artifacts are
31818
+ # stored. If the job fails, the objects contain information about the
31819
+ # error that caused the job to fail.
31820
+ # @return [Array<Types::SnapshotJobResultFileGroup>]
31821
+ #
31822
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/RegisteredUserSnapshotJobResult AWS API Documentation
31823
+ #
31824
+ class RegisteredUserSnapshotJobResult < Struct.new(
31825
+ :file_groups)
31826
+ SENSITIVE = []
31827
+ include Aws::Structure
31828
+ end
31829
+
31060
31830
  # A physical table type for relational data sources.
31061
31831
  #
31062
31832
  # @!attribute [rw] data_source_arn
@@ -32981,6 +33751,81 @@ module Aws::QuickSight
32981
33751
  include Aws::Structure
32982
33752
  end
32983
33753
 
33754
+ # The self-upgrade configuration for the Quick Suite account.
33755
+ #
33756
+ # @!attribute [rw] self_upgrade_status
33757
+ # Status set for the self-upgrade configuration for the Quick Suite
33758
+ # account. It can contain the following values:
33759
+ #
33760
+ # * `AUTO_APPROVAL`: All the self-upgrade requests will be auto
33761
+ # approved.
33762
+ #
33763
+ # * `ADMIN_APPROVAL`: All the self-upgrade requests will require admin
33764
+ # approval.
33765
+ # @return [String]
33766
+ #
33767
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SelfUpgradeConfiguration AWS API Documentation
33768
+ #
33769
+ class SelfUpgradeConfiguration < Struct.new(
33770
+ :self_upgrade_status)
33771
+ SENSITIVE = []
33772
+ include Aws::Structure
33773
+ end
33774
+
33775
+ # Details of a self-upgrade request.
33776
+ #
33777
+ # @!attribute [rw] upgrade_request_id
33778
+ # The ID of the self-upgrade request.
33779
+ # @return [String]
33780
+ #
33781
+ # @!attribute [rw] user_name
33782
+ # The username of the user who initiated the self-upgrade request.
33783
+ # @return [String]
33784
+ #
33785
+ # @!attribute [rw] original_role
33786
+ # The original role of the user before the upgrade.
33787
+ # @return [String]
33788
+ #
33789
+ # @!attribute [rw] requested_role
33790
+ # The role that the user is requesting to upgrade to.
33791
+ # @return [String]
33792
+ #
33793
+ # @!attribute [rw] request_note
33794
+ # An optional note explaining the reason for the self-upgrade request.
33795
+ # @return [String]
33796
+ #
33797
+ # @!attribute [rw] creation_time
33798
+ # The time when the self-upgrade request was created.
33799
+ # @return [Integer]
33800
+ #
33801
+ # @!attribute [rw] request_status
33802
+ # The status of the self-upgrade request.
33803
+ # @return [String]
33804
+ #
33805
+ # @!attribute [rw] last_update_attempt_time
33806
+ # The time of the last update attempt for the self-upgrade request.
33807
+ # @return [Integer]
33808
+ #
33809
+ # @!attribute [rw] last_update_failure_reason
33810
+ # The reason for the last update failure, if applicable.
33811
+ # @return [String]
33812
+ #
33813
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SelfUpgradeRequestDetail AWS API Documentation
33814
+ #
33815
+ class SelfUpgradeRequestDetail < Struct.new(
33816
+ :upgrade_request_id,
33817
+ :user_name,
33818
+ :original_role,
33819
+ :requested_role,
33820
+ :request_note,
33821
+ :creation_time,
33822
+ :request_status,
33823
+ :last_update_attempt_time,
33824
+ :last_update_failure_reason)
33825
+ SENSITIVE = []
33826
+ include Aws::Structure
33827
+ end
33828
+
32984
33829
  # A structure that represents a semantic entity type.
32985
33830
  #
32986
33831
  # @!attribute [rw] type_name
@@ -34060,6 +34905,12 @@ module Aws::QuickSight
34060
34905
  # An object that contains information on the error that caused the
34061
34906
  # snapshot job to fail.
34062
34907
  #
34908
+ # For more information, see [DescribeDashboardSnapshotJobResult API][1].
34909
+ #
34910
+ #
34911
+ #
34912
+ # [1]: https://docs.aws.amazon.com/quicksight/latest/APIReference/API_DescribeDashboardSnapshotJobResult.html
34913
+ #
34063
34914
  # @!attribute [rw] error_message
34064
34915
  # The error message.
34065
34916
  # @return [String]
@@ -34088,10 +34939,17 @@ module Aws::QuickSight
34088
34939
  # call.
34089
34940
  # @return [Array<Types::AnonymousUserSnapshotJobResult>]
34090
34941
  #
34942
+ # @!attribute [rw] registered_users
34943
+ # A list of `RegisteredUserSnapshotJobResult` objects that contain
34944
+ # information about files that are requested for registered user
34945
+ # during a `StartDashboardSnapshotJob` API call.
34946
+ # @return [Array<Types::RegisteredUserSnapshotJobResult>]
34947
+ #
34091
34948
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SnapshotJobResult AWS API Documentation
34092
34949
  #
34093
34950
  class SnapshotJobResult < Struct.new(
34094
- :anonymous_users)
34951
+ :anonymous_users,
34952
+ :registered_users)
34095
34953
  SENSITIVE = []
34096
34954
  include Aws::Structure
34097
34955
  end
@@ -34182,6 +35040,10 @@ module Aws::QuickSight
34182
35040
  # A structure that contains information about the users that the
34183
35041
  # dashboard snapshot is generated for.
34184
35042
  #
35043
+ # When using identity-enhanced session credentials, set the
35044
+ # UserConfiguration request attribute to null. Otherwise, the request
35045
+ # will be invalid.
35046
+ #
34185
35047
  # @!attribute [rw] anonymous_users
34186
35048
  # An array of records that describe the anonymous users that the
34187
35049
  # dashboard snapshot is generated for.
@@ -34666,9 +35528,14 @@ module Aws::QuickSight
34666
35528
  # @return [String]
34667
35529
  #
34668
35530
  # @!attribute [rw] user_configuration
34669
- # A structure that contains information about the anonymous users that
34670
- # the generated snapshot is for. This API will not return information
34671
- # about registered Amazon Quick Sight.
35531
+ # A structure that contains information about the users that the
35532
+ # dashboard snapshot is generated for. The users can be either
35533
+ # anonymous users or registered users. Anonymous users cannot be used
35534
+ # together with registered users.
35535
+ #
35536
+ # When using identity-enhanced session credentials, set the
35537
+ # UserConfiguration request attribute to null. Otherwise, the request
35538
+ # will be invalid.
34672
35539
  # @return [Types::SnapshotUserConfiguration]
34673
35540
  #
34674
35541
  # @!attribute [rw] snapshot_configuration
@@ -35300,6 +36167,11 @@ module Aws::QuickSight
35300
36167
  # A collection of inline visualizations to display within a chart.
35301
36168
  # @return [Array<Types::TableInlineVisualization>]
35302
36169
  #
36170
+ # @!attribute [rw] dashboard_customization_visual_options
36171
+ # The options that define customizations available to dashboard
36172
+ # readers for a specific visual
36173
+ # @return [Types::DashboardCustomizationVisualOptions]
36174
+ #
35303
36175
  # @!attribute [rw] interactions
35304
36176
  # The general visual interactions setup for a visual.
35305
36177
  # @return [Types::VisualInteractionOptions]
@@ -35314,6 +36186,7 @@ module Aws::QuickSight
35314
36186
  :field_options,
35315
36187
  :paginated_report_options,
35316
36188
  :table_inline_visualizations,
36189
+ :dashboard_customization_visual_options,
35317
36190
  :interactions)
35318
36191
  SENSITIVE = []
35319
36192
  include Aws::Structure
@@ -41354,6 +42227,99 @@ module Aws::QuickSight
41354
42227
  include Aws::Structure
41355
42228
  end
41356
42229
 
42230
+ # @!attribute [rw] aws_account_id
42231
+ # The ID of the Amazon Web Services account that contains the Quick
42232
+ # Suite self-upgrade configuration that you want to update.
42233
+ # @return [String]
42234
+ #
42235
+ # @!attribute [rw] namespace
42236
+ # The Quick Suite namespace that you want to update the Quick Suite
42237
+ # self-upgrade configuration for.
42238
+ # @return [String]
42239
+ #
42240
+ # @!attribute [rw] self_upgrade_status
42241
+ # The self-upgrade status that you want to set for the Quick Suite
42242
+ # account.
42243
+ # @return [String]
42244
+ #
42245
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateSelfUpgradeConfigurationRequest AWS API Documentation
42246
+ #
42247
+ class UpdateSelfUpgradeConfigurationRequest < Struct.new(
42248
+ :aws_account_id,
42249
+ :namespace,
42250
+ :self_upgrade_status)
42251
+ SENSITIVE = []
42252
+ include Aws::Structure
42253
+ end
42254
+
42255
+ # @!attribute [rw] request_id
42256
+ # The Amazon Web Services request ID for this operation.
42257
+ # @return [String]
42258
+ #
42259
+ # @!attribute [rw] status
42260
+ # The HTTP status of the request.
42261
+ # @return [Integer]
42262
+ #
42263
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateSelfUpgradeConfigurationResponse AWS API Documentation
42264
+ #
42265
+ class UpdateSelfUpgradeConfigurationResponse < Struct.new(
42266
+ :request_id,
42267
+ :status)
42268
+ SENSITIVE = []
42269
+ include Aws::Structure
42270
+ end
42271
+
42272
+ # @!attribute [rw] aws_account_id
42273
+ # The ID of the Amazon Web Services account that contains the
42274
+ # self-upgrade request.
42275
+ # @return [String]
42276
+ #
42277
+ # @!attribute [rw] namespace
42278
+ # The Quick Suite namespace for the self-upgrade request.
42279
+ # @return [String]
42280
+ #
42281
+ # @!attribute [rw] upgrade_request_id
42282
+ # The ID of the self-upgrade request to update.
42283
+ # @return [String]
42284
+ #
42285
+ # @!attribute [rw] action
42286
+ # The action to perform on the self-upgrade request. Valid values are
42287
+ # `APPROVE`, `DENY`, or `VERIFY`.
42288
+ # @return [String]
42289
+ #
42290
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateSelfUpgradeRequest AWS API Documentation
42291
+ #
42292
+ class UpdateSelfUpgradeRequest < Struct.new(
42293
+ :aws_account_id,
42294
+ :namespace,
42295
+ :upgrade_request_id,
42296
+ :action)
42297
+ SENSITIVE = []
42298
+ include Aws::Structure
42299
+ end
42300
+
42301
+ # @!attribute [rw] self_upgrade_request_detail
42302
+ # Details of the updated self-upgrade request.
42303
+ # @return [Types::SelfUpgradeRequestDetail]
42304
+ #
42305
+ # @!attribute [rw] request_id
42306
+ # The Amazon Web Services request ID for this operation.
42307
+ # @return [String]
42308
+ #
42309
+ # @!attribute [rw] status
42310
+ # The HTTP status of the request.
42311
+ # @return [Integer]
42312
+ #
42313
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateSelfUpgradeResponse AWS API Documentation
42314
+ #
42315
+ class UpdateSelfUpgradeResponse < Struct.new(
42316
+ :self_upgrade_request_detail,
42317
+ :request_id,
42318
+ :status)
42319
+ SENSITIVE = []
42320
+ include Aws::Structure
42321
+ end
42322
+
41357
42323
  # @!attribute [rw] aws_account_id
41358
42324
  # The ID of the Amazon Web Services account that contains the template
41359
42325
  # alias that you're updating.
@@ -42377,6 +43343,41 @@ module Aws::QuickSight
42377
43343
  include Aws::Structure
42378
43344
  end
42379
43345
 
43346
+ # A structure that contains information to identify a user.
43347
+ #
43348
+ # @note UserIdentifier is a union - when making an API calls you must set exactly one of the members.
43349
+ #
43350
+ # @!attribute [rw] user_name
43351
+ # The name of the user that you want to get identity context for.
43352
+ # @return [String]
43353
+ #
43354
+ # @!attribute [rw] email
43355
+ # The email address of the user that you want to get identity context
43356
+ # for.
43357
+ # @return [String]
43358
+ #
43359
+ # @!attribute [rw] user_arn
43360
+ # The Amazon Resource Name (ARN) of the user that you want to get
43361
+ # identity context for.
43362
+ # @return [String]
43363
+ #
43364
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UserIdentifier AWS API Documentation
43365
+ #
43366
+ class UserIdentifier < Struct.new(
43367
+ :user_name,
43368
+ :email,
43369
+ :user_arn,
43370
+ :unknown)
43371
+ SENSITIVE = [:user_name, :email]
43372
+ include Aws::Structure
43373
+ include Aws::Structure::Union
43374
+
43375
+ class UserName < UserIdentifier; end
43376
+ class Email < UserIdentifier; end
43377
+ class UserArn < UserIdentifier; end
43378
+ class Unknown < UserIdentifier; end
43379
+ end
43380
+
42380
43381
  # The structure of a VPC connection.
42381
43382
  #
42382
43383
  # @!attribute [rw] vpc_connection_id
@@ -42972,6 +43973,29 @@ module Aws::QuickSight
42972
43973
  include Aws::Structure
42973
43974
  end
42974
43975
 
43976
+ # The configuration that controls field customization options available
43977
+ # to dashboard readers for a visual.
43978
+ #
43979
+ # @!attribute [rw] status
43980
+ # Specifies whether dashboard readers can customize fields for this
43981
+ # visual. This option is `ENABLED` by default.
43982
+ # @return [String]
43983
+ #
43984
+ # @!attribute [rw] additional_fields
43985
+ # The additional dataset fields available for dashboard readers to
43986
+ # customize the visual with, beyond the fields already configured on
43987
+ # the visual.
43988
+ # @return [Array<Types::ColumnIdentifier>]
43989
+ #
43990
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/VisualCustomizationFieldsConfiguration AWS API Documentation
43991
+ #
43992
+ class VisualCustomizationFieldsConfiguration < Struct.new(
43993
+ :status,
43994
+ :additional_fields)
43995
+ SENSITIVE = []
43996
+ include Aws::Structure
43997
+ end
43998
+
42975
43999
  # Defines what initiates a highlight operation on a visual, such as a
42976
44000
  # click or hover.
42977
44001
  #