aws-sdk-quicksight 1.117.0 → 1.118.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.
@@ -196,6 +196,35 @@ module Aws::QuickSight
196
196
  include Aws::Structure
197
197
  end
198
198
 
199
+ # The definition of an Agg function.
200
+ #
201
+ # @!attribute [rw] aggregation
202
+ # The aggregation of an Agg function.
203
+ # @return [String]
204
+ #
205
+ # @!attribute [rw] aggregation_function_parameters
206
+ # The aggregation parameters for an Agg function.
207
+ # @return [Hash<String,String>]
208
+ #
209
+ # @!attribute [rw] period
210
+ # The period of an Agg function.
211
+ # @return [String]
212
+ #
213
+ # @!attribute [rw] period_field
214
+ # The period field for an Agg function.
215
+ # @return [String]
216
+ #
217
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AggFunction AWS API Documentation
218
+ #
219
+ class AggFunction < Struct.new(
220
+ :aggregation,
221
+ :aggregation_function_parameters,
222
+ :period,
223
+ :period_field)
224
+ SENSITIVE = []
225
+ include Aws::Structure
226
+ end
227
+
199
228
  # An aggregation function aggregates values from a dimension or measure.
200
229
  #
201
230
  # This is a union type structure. For this structure to be valid, only
@@ -244,6 +273,25 @@ module Aws::QuickSight
244
273
  include Aws::Structure
245
274
  end
246
275
 
276
+ # The definition of an `AggregationPartitionBy`.
277
+ #
278
+ # @!attribute [rw] field_name
279
+ # The field Name for an `AggregationPartitionBy`.
280
+ # @return [String]
281
+ #
282
+ # @!attribute [rw] time_granularity
283
+ # The `TimeGranularity` for an `AggregationPartitionBy`.
284
+ # @return [String]
285
+ #
286
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AggregationPartitionBy AWS API Documentation
287
+ #
288
+ class AggregationPartitionBy < Struct.new(
289
+ :field_name,
290
+ :time_granularity)
291
+ SENSITIVE = []
292
+ include Aws::Structure
293
+ end
294
+
247
295
  # The configuration options to sort aggregated values.
248
296
  #
249
297
  # @!attribute [rw] column
@@ -630,6 +678,30 @@ module Aws::QuickSight
630
678
  include Aws::Structure
631
679
  end
632
680
 
681
+ # The definition of the Anchor.
682
+ #
683
+ # @!attribute [rw] anchor_type
684
+ # The `AnchorType` for the Anchor.
685
+ # @return [String]
686
+ #
687
+ # @!attribute [rw] time_granularity
688
+ # The `TimeGranularity` of the Anchor.
689
+ # @return [String]
690
+ #
691
+ # @!attribute [rw] offset
692
+ # The offset of the Anchor.
693
+ # @return [Integer]
694
+ #
695
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/Anchor AWS API Documentation
696
+ #
697
+ class Anchor < Struct.new(
698
+ :anchor_type,
699
+ :time_granularity,
700
+ :offset)
701
+ SENSITIVE = []
702
+ include Aws::Structure
703
+ end
704
+
633
705
  # The date configuration of the filter.
634
706
  #
635
707
  # @!attribute [rw] anchor_option
@@ -2691,6 +2763,134 @@ module Aws::QuickSight
2691
2763
  include Aws::Structure
2692
2764
  end
2693
2765
 
2766
+ # @!attribute [rw] aws_account_id
2767
+ # The ID of the Amazon Web Services account that you want to create a
2768
+ # reviewed answer in.
2769
+ # @return [String]
2770
+ #
2771
+ # @!attribute [rw] topic_id
2772
+ # The ID for the topic reviewed answer that you want to create. This
2773
+ # ID is unique per Amazon Web Services Region for each Amazon Web
2774
+ # Services account.
2775
+ # @return [String]
2776
+ #
2777
+ # @!attribute [rw] answers
2778
+ # The definition of the Answers to be created.
2779
+ # @return [Array<Types::CreateTopicReviewedAnswer>]
2780
+ #
2781
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/BatchCreateTopicReviewedAnswerRequest AWS API Documentation
2782
+ #
2783
+ class BatchCreateTopicReviewedAnswerRequest < Struct.new(
2784
+ :aws_account_id,
2785
+ :topic_id,
2786
+ :answers)
2787
+ SENSITIVE = []
2788
+ include Aws::Structure
2789
+ end
2790
+
2791
+ # @!attribute [rw] topic_id
2792
+ # The ID for the topic reviewed answer that you want to create. This
2793
+ # ID is unique per Amazon Web Services Region for each Amazon Web
2794
+ # Services account.
2795
+ # @return [String]
2796
+ #
2797
+ # @!attribute [rw] topic_arn
2798
+ # The Amazon Resource Name (ARN) of the topic.
2799
+ # @return [String]
2800
+ #
2801
+ # @!attribute [rw] succeeded_answers
2802
+ # The definition of Answers that are successfully created.
2803
+ # @return [Array<Types::SucceededTopicReviewedAnswer>]
2804
+ #
2805
+ # @!attribute [rw] invalid_answers
2806
+ # The definition of Answers that are invalid and not created.
2807
+ # @return [Array<Types::InvalidTopicReviewedAnswer>]
2808
+ #
2809
+ # @!attribute [rw] status
2810
+ # The HTTP status of the request.
2811
+ # @return [Integer]
2812
+ #
2813
+ # @!attribute [rw] request_id
2814
+ # The Amazon Web Services request ID for this operation.
2815
+ # @return [String]
2816
+ #
2817
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/BatchCreateTopicReviewedAnswerResponse AWS API Documentation
2818
+ #
2819
+ class BatchCreateTopicReviewedAnswerResponse < Struct.new(
2820
+ :topic_id,
2821
+ :topic_arn,
2822
+ :succeeded_answers,
2823
+ :invalid_answers,
2824
+ :status,
2825
+ :request_id)
2826
+ SENSITIVE = []
2827
+ include Aws::Structure
2828
+ end
2829
+
2830
+ # @!attribute [rw] aws_account_id
2831
+ # The ID of the Amazon Web Services account that you want to delete a
2832
+ # reviewed answers in.
2833
+ # @return [String]
2834
+ #
2835
+ # @!attribute [rw] topic_id
2836
+ # The ID for the topic reviewed answer that you want to delete. This
2837
+ # ID is unique per Amazon Web Services Region for each Amazon Web
2838
+ # Services account.
2839
+ # @return [String]
2840
+ #
2841
+ # @!attribute [rw] answer_ids
2842
+ # The Answer IDs of the Answers to be deleted.
2843
+ # @return [Array<String>]
2844
+ #
2845
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/BatchDeleteTopicReviewedAnswerRequest AWS API Documentation
2846
+ #
2847
+ class BatchDeleteTopicReviewedAnswerRequest < Struct.new(
2848
+ :aws_account_id,
2849
+ :topic_id,
2850
+ :answer_ids)
2851
+ SENSITIVE = []
2852
+ include Aws::Structure
2853
+ end
2854
+
2855
+ # @!attribute [rw] topic_id
2856
+ # The ID of the topic reviewed answer that you want to delete. This ID
2857
+ # is unique per Amazon Web Services Region for each Amazon Web
2858
+ # Services account.
2859
+ # @return [String]
2860
+ #
2861
+ # @!attribute [rw] topic_arn
2862
+ # The Amazon Resource Name (ARN) of the topic.
2863
+ # @return [String]
2864
+ #
2865
+ # @!attribute [rw] succeeded_answers
2866
+ # The definition of Answers that are successfully deleted.
2867
+ # @return [Array<Types::SucceededTopicReviewedAnswer>]
2868
+ #
2869
+ # @!attribute [rw] invalid_answers
2870
+ # The definition of Answers that are invalid and not deleted.
2871
+ # @return [Array<Types::InvalidTopicReviewedAnswer>]
2872
+ #
2873
+ # @!attribute [rw] request_id
2874
+ # The Amazon Web Services request ID for this operation.
2875
+ # @return [String]
2876
+ #
2877
+ # @!attribute [rw] status
2878
+ # The HTTP status of the request.
2879
+ # @return [Integer]
2880
+ #
2881
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/BatchDeleteTopicReviewedAnswerResponse AWS API Documentation
2882
+ #
2883
+ class BatchDeleteTopicReviewedAnswerResponse < Struct.new(
2884
+ :topic_id,
2885
+ :topic_arn,
2886
+ :succeeded_answers,
2887
+ :invalid_answers,
2888
+ :request_id,
2889
+ :status)
2890
+ SENSITIVE = []
2891
+ include Aws::Structure
2892
+ end
2893
+
2694
2894
  # The parameters that are required to connect to a Google BigQuery data
2695
2895
  # source.
2696
2896
  #
@@ -3611,6 +3811,25 @@ module Aws::QuickSight
3611
3811
  include Aws::Structure
3612
3812
  end
3613
3813
 
3814
+ # The definition for a `CollectiveConstantEntry`.
3815
+ #
3816
+ # @!attribute [rw] constant_type
3817
+ # The `ConstantType` of a `CollectiveConstantEntry`.
3818
+ # @return [String]
3819
+ #
3820
+ # @!attribute [rw] value
3821
+ # The value of a `CollectiveConstantEntry`.
3822
+ # @return [String]
3823
+ #
3824
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CollectiveConstantEntry AWS API Documentation
3825
+ #
3826
+ class CollectiveConstantEntry < Struct.new(
3827
+ :constant_type,
3828
+ :value)
3829
+ SENSITIVE = []
3830
+ include Aws::Structure
3831
+ end
3832
+
3614
3833
  # Determines the color scale that is applied to the visual.
3615
3834
  #
3616
3835
  # @!attribute [rw] colors
@@ -4534,6 +4753,39 @@ module Aws::QuickSight
4534
4753
  include Aws::Structure
4535
4754
  end
4536
4755
 
4756
+ # The definition for the `ContributionAnalysisFactor`.
4757
+ #
4758
+ # @!attribute [rw] field_name
4759
+ # The field name of the `ContributionAnalysisFactor`.
4760
+ # @return [String]
4761
+ #
4762
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ContributionAnalysisFactor AWS API Documentation
4763
+ #
4764
+ class ContributionAnalysisFactor < Struct.new(
4765
+ :field_name)
4766
+ SENSITIVE = []
4767
+ include Aws::Structure
4768
+ end
4769
+
4770
+ # The definition for the `ContributionAnalysisTimeRanges`.
4771
+ #
4772
+ # @!attribute [rw] start_range
4773
+ # The start range for the `ContributionAnalysisTimeRanges`.
4774
+ # @return [Types::TopicIRFilterOption]
4775
+ #
4776
+ # @!attribute [rw] end_range
4777
+ # The end range for the `ContributionAnalysisTimeRanges`.
4778
+ # @return [Types::TopicIRFilterOption]
4779
+ #
4780
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ContributionAnalysisTimeRanges AWS API Documentation
4781
+ #
4782
+ class ContributionAnalysisTimeRanges < Struct.new(
4783
+ :start_range,
4784
+ :end_range)
4785
+ SENSITIVE = []
4786
+ include Aws::Structure
4787
+ end
4788
+
4537
4789
  # @!attribute [rw] aws_account_id
4538
4790
  # The ID for the Amazon Web Services account that you want to
4539
4791
  # customize Amazon QuickSight for.
@@ -6443,6 +6695,45 @@ module Aws::QuickSight
6443
6695
  include Aws::Structure
6444
6696
  end
6445
6697
 
6698
+ # The definition for a `CreateTopicReviewedAnswer`.
6699
+ #
6700
+ # @!attribute [rw] answer_id
6701
+ # The answer ID for the `CreateTopicReviewedAnswer`.
6702
+ # @return [String]
6703
+ #
6704
+ # @!attribute [rw] dataset_arn
6705
+ # The Dataset arn for the `CreateTopicReviewedAnswer`.
6706
+ # @return [String]
6707
+ #
6708
+ # @!attribute [rw] question
6709
+ # The Question to be created.
6710
+ # @return [String]
6711
+ #
6712
+ # @!attribute [rw] mir
6713
+ # The Mir for the `CreateTopicReviewedAnswer`.
6714
+ # @return [Types::TopicIR]
6715
+ #
6716
+ # @!attribute [rw] primary_visual
6717
+ # The `PrimaryVisual` for the `CreateTopicReviewedAnswer`.
6718
+ # @return [Types::TopicVisual]
6719
+ #
6720
+ # @!attribute [rw] template
6721
+ # The template for the `CreateTopicReviewedAnswer`.
6722
+ # @return [Types::TopicTemplate]
6723
+ #
6724
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateTopicReviewedAnswer AWS API Documentation
6725
+ #
6726
+ class CreateTopicReviewedAnswer < Struct.new(
6727
+ :answer_id,
6728
+ :dataset_arn,
6729
+ :question,
6730
+ :mir,
6731
+ :primary_visual,
6732
+ :template)
6733
+ SENSITIVE = []
6734
+ include Aws::Structure
6735
+ end
6736
+
6446
6737
  # @!attribute [rw] aws_account_id
6447
6738
  # The Amazon Web Services account ID of the account where you want to
6448
6739
  # create a new VPC connection.
@@ -9021,12 +9312,24 @@ module Aws::QuickSight
9021
9312
  # The configuration of info icon label options.
9022
9313
  # @return [Types::SheetControlInfoIconLabelOptions]
9023
9314
  #
9315
+ # @!attribute [rw] helper_text_visibility
9316
+ # The helper text visibility of the
9317
+ # `DateTimePickerControlDisplayOptions`.
9318
+ # @return [String]
9319
+ #
9320
+ # @!attribute [rw] date_icon_visibility
9321
+ # The date icon visibility of the
9322
+ # `DateTimePickerControlDisplayOptions`.
9323
+ # @return [String]
9324
+ #
9024
9325
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DateTimePickerControlDisplayOptions AWS API Documentation
9025
9326
  #
9026
9327
  class DateTimePickerControlDisplayOptions < Struct.new(
9027
9328
  :title_options,
9028
9329
  :date_time_format,
9029
- :info_icon_label_options)
9330
+ :info_icon_label_options,
9331
+ :helper_text_visibility,
9332
+ :date_icon_visibility)
9030
9333
  SENSITIVE = []
9031
9334
  include Aws::Structure
9032
9335
  end
@@ -14290,6 +14593,30 @@ module Aws::QuickSight
14290
14593
  include Aws::Structure
14291
14594
  end
14292
14595
 
14596
+ # The definition for the `FilterAggMetrics`.
14597
+ #
14598
+ # @!attribute [rw] metric_operand
14599
+ # The metric operand of the `FilterAggMetrics`.
14600
+ # @return [Types::Identifier]
14601
+ #
14602
+ # @!attribute [rw] function
14603
+ # The function for the `FilterAggMetrics`.
14604
+ # @return [String]
14605
+ #
14606
+ # @!attribute [rw] sort_direction
14607
+ # The sort direction for `FilterAggMetrics`.
14608
+ # @return [String]
14609
+ #
14610
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/FilterAggMetrics AWS API Documentation
14611
+ #
14612
+ class FilterAggMetrics < Struct.new(
14613
+ :metric_operand,
14614
+ :function,
14615
+ :sort_direction)
14616
+ SENSITIVE = []
14617
+ include Aws::Structure
14618
+ end
14619
+
14293
14620
  # The control of a filter that is used to interact with a dashboard or
14294
14621
  # an analysis.
14295
14622
  #
@@ -17267,6 +17594,20 @@ module Aws::QuickSight
17267
17594
  include Aws::Structure
17268
17595
  end
17269
17596
 
17597
+ # The definition for the identifier.
17598
+ #
17599
+ # @!attribute [rw] identity
17600
+ # The identity of the identifier.
17601
+ # @return [String]
17602
+ #
17603
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/Identifier AWS API Documentation
17604
+ #
17605
+ class Identifier < Struct.new(
17606
+ :identity)
17607
+ SENSITIVE = []
17608
+ include Aws::Structure
17609
+ end
17610
+
17270
17611
  # The parameters for an IAM Identity Center configuration.
17271
17612
  #
17272
17613
  # @!attribute [rw] enable_identity_propagation
@@ -17716,6 +18057,25 @@ module Aws::QuickSight
17716
18057
  include Aws::Structure
17717
18058
  end
17718
18059
 
18060
+ # The definition for a `InvalidTopicReviewedAnswer`.
18061
+ #
18062
+ # @!attribute [rw] answer_id
18063
+ # The answer ID for the `InvalidTopicReviewedAnswer`.
18064
+ # @return [String]
18065
+ #
18066
+ # @!attribute [rw] error
18067
+ # The error that is returned for the `InvalidTopicReviewedAnswer`.
18068
+ # @return [String]
18069
+ #
18070
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/InvalidTopicReviewedAnswer AWS API Documentation
18071
+ #
18072
+ class InvalidTopicReviewedAnswer < Struct.new(
18073
+ :answer_id,
18074
+ :error)
18075
+ SENSITIVE = []
18076
+ include Aws::Structure
18077
+ end
18078
+
17719
18079
  # The limit configuration of the visual display for an axis.
17720
18080
  #
17721
18081
  # @!attribute [rw] items_limit
@@ -20211,6 +20571,60 @@ module Aws::QuickSight
20211
20571
  include Aws::Structure
20212
20572
  end
20213
20573
 
20574
+ # @!attribute [rw] aws_account_id
20575
+ # The ID of the Amazon Web Services account that containd the reviewed
20576
+ # answers that you want listed.
20577
+ # @return [String]
20578
+ #
20579
+ # @!attribute [rw] topic_id
20580
+ # The ID for the topic that contains the reviewed answer that you want
20581
+ # to list. This ID is unique per Amazon Web Services Region for each
20582
+ # Amazon Web Services account.
20583
+ # @return [String]
20584
+ #
20585
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ListTopicReviewedAnswersRequest AWS API Documentation
20586
+ #
20587
+ class ListTopicReviewedAnswersRequest < Struct.new(
20588
+ :aws_account_id,
20589
+ :topic_id)
20590
+ SENSITIVE = []
20591
+ include Aws::Structure
20592
+ end
20593
+
20594
+ # @!attribute [rw] topic_id
20595
+ # The ID for the topic that contains the reviewed answer that you want
20596
+ # to list. This ID is unique per Amazon Web Services Region for each
20597
+ # Amazon Web Services account.
20598
+ # @return [String]
20599
+ #
20600
+ # @!attribute [rw] topic_arn
20601
+ # The Amazon Resource Name (ARN) of the topic.
20602
+ # @return [String]
20603
+ #
20604
+ # @!attribute [rw] answers
20605
+ # The definition of all Answers in the topic.
20606
+ # @return [Array<Types::TopicReviewedAnswer>]
20607
+ #
20608
+ # @!attribute [rw] status
20609
+ # The HTTP status of the request.
20610
+ # @return [Integer]
20611
+ #
20612
+ # @!attribute [rw] request_id
20613
+ # The Amazon Web Services request ID for this operation.
20614
+ # @return [String]
20615
+ #
20616
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ListTopicReviewedAnswersResponse AWS API Documentation
20617
+ #
20618
+ class ListTopicReviewedAnswersResponse < Struct.new(
20619
+ :topic_id,
20620
+ :topic_arn,
20621
+ :answers,
20622
+ :status,
20623
+ :request_id)
20624
+ SENSITIVE = []
20625
+ include Aws::Structure
20626
+ end
20627
+
20214
20628
  # @!attribute [rw] aws_account_id
20215
20629
  # The ID of the Amazon Web Services account that contains the topics
20216
20630
  # that you want to list.
@@ -20897,6 +21311,20 @@ module Aws::QuickSight
20897
21311
  include Aws::Structure
20898
21312
  end
20899
21313
 
21314
+ # The definition for a `NamedEntityRef`.
21315
+ #
21316
+ # @!attribute [rw] named_entity_name
21317
+ # The `NamedEntityName` for the `NamedEntityRef`.
21318
+ # @return [String]
21319
+ #
21320
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/NamedEntityRef AWS API Documentation
21321
+ #
21322
+ class NamedEntityRef < Struct.new(
21323
+ :named_entity_name)
21324
+ SENSITIVE = []
21325
+ include Aws::Structure
21326
+ end
21327
+
20900
21328
  # Errors that occur during namespace creation.
20901
21329
  #
20902
21330
  # @!attribute [rw] type
@@ -26582,6 +27010,25 @@ module Aws::QuickSight
26582
27010
  include Aws::Structure
26583
27011
  end
26584
27012
 
27013
+ # The definition for the slot.
27014
+ #
27015
+ # @!attribute [rw] slot_id
27016
+ # The slot ID of the slot.
27017
+ # @return [String]
27018
+ #
27019
+ # @!attribute [rw] visual_id
27020
+ # The visual ID for the slot.
27021
+ # @return [String]
27022
+ #
27023
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/Slot AWS API Documentation
27024
+ #
27025
+ class Slot < Struct.new(
27026
+ :slot_id,
27027
+ :visual_id)
27028
+ SENSITIVE = []
27029
+ include Aws::Structure
27030
+ end
27031
+
26585
27032
  # Configures the properties of a chart's axes that are used by small
26586
27033
  # multiples panels.
26587
27034
  #
@@ -27623,6 +28070,20 @@ module Aws::QuickSight
27623
28070
  include Aws::Structure
27624
28071
  end
27625
28072
 
28073
+ # The definition for a `SucceededTopicReviewedAnswer`.
28074
+ #
28075
+ # @!attribute [rw] answer_id
28076
+ # The answer ID for the `SucceededTopicReviewedAnswer`.
28077
+ # @return [String]
28078
+ #
28079
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SucceededTopicReviewedAnswer AWS API Documentation
28080
+ #
28081
+ class SucceededTopicReviewedAnswer < Struct.new(
28082
+ :answer_id)
28083
+ SENSITIVE = []
28084
+ include Aws::Structure
28085
+ end
28086
+
27626
28087
  # A success entry that occurs when a `KeyRegistration` job is
27627
28088
  # successfully applied to the Amazon QuickSight account.
27628
28089
  #
@@ -29851,6 +30312,40 @@ module Aws::QuickSight
29851
30312
  include Aws::Structure
29852
30313
  end
29853
30314
 
30315
+ # The definition for a `TopicConstantValue`.
30316
+ #
30317
+ # @!attribute [rw] constant_type
30318
+ # The constant type of a `TopicConstantValue`.
30319
+ # @return [String]
30320
+ #
30321
+ # @!attribute [rw] value
30322
+ # The value of the `TopicConstantValue`.
30323
+ # @return [String]
30324
+ #
30325
+ # @!attribute [rw] minimum
30326
+ # The minimum for the `TopicConstantValue`.
30327
+ # @return [String]
30328
+ #
30329
+ # @!attribute [rw] maximum
30330
+ # The maximum for the `TopicConstantValue`.
30331
+ # @return [String]
30332
+ #
30333
+ # @!attribute [rw] value_list
30334
+ # The value list of the `TopicConstantValue`.
30335
+ # @return [Array<Types::CollectiveConstantEntry>]
30336
+ #
30337
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TopicConstantValue AWS API Documentation
30338
+ #
30339
+ class TopicConstantValue < Struct.new(
30340
+ :constant_type,
30341
+ :value,
30342
+ :minimum,
30343
+ :maximum,
30344
+ :value_list)
30345
+ SENSITIVE = []
30346
+ include Aws::Structure
30347
+ end
30348
+
29854
30349
  # A filter used to restrict data based on a range of dates or times.
29855
30350
  #
29856
30351
  # @!attribute [rw] inclusive
@@ -29971,6 +30466,292 @@ module Aws::QuickSight
29971
30466
  include Aws::Structure
29972
30467
  end
29973
30468
 
30469
+ # The definition for a `TopicIR`.
30470
+ #
30471
+ # @!attribute [rw] metrics
30472
+ # The metrics for the `TopicIR`.
30473
+ # @return [Array<Types::TopicIRMetric>]
30474
+ #
30475
+ # @!attribute [rw] group_by_list
30476
+ # The GroupBy list for the `TopicIR`.
30477
+ # @return [Array<Types::TopicIRGroupBy>]
30478
+ #
30479
+ # @!attribute [rw] filters
30480
+ # The filters for the `TopicIR`.
30481
+ # @return [Array<Array<Types::TopicIRFilterOption>>]
30482
+ #
30483
+ # @!attribute [rw] sort
30484
+ # The sort for the `TopicIR`.
30485
+ # @return [Types::TopicSortClause]
30486
+ #
30487
+ # @!attribute [rw] contribution_analysis
30488
+ # The contribution analysis for the `TopicIR`.
30489
+ # @return [Types::TopicIRContributionAnalysis]
30490
+ #
30491
+ # @!attribute [rw] visual
30492
+ # The visual for the `TopicIR`.
30493
+ # @return [Types::VisualOptions]
30494
+ #
30495
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TopicIR AWS API Documentation
30496
+ #
30497
+ class TopicIR < Struct.new(
30498
+ :metrics,
30499
+ :group_by_list,
30500
+ :filters,
30501
+ :sort,
30502
+ :contribution_analysis,
30503
+ :visual)
30504
+ SENSITIVE = []
30505
+ include Aws::Structure
30506
+ end
30507
+
30508
+ # The definition of a `TopicIRComparisonMethod`.
30509
+ #
30510
+ # @!attribute [rw] type
30511
+ # The type for the `TopicIRComparisonMethod`.
30512
+ # @return [String]
30513
+ #
30514
+ # @!attribute [rw] period
30515
+ # The period for the `TopicIRComparisonMethod`.
30516
+ # @return [String]
30517
+ #
30518
+ # @!attribute [rw] window_size
30519
+ # The window size for the `TopicIRComparisonMethod`.
30520
+ # @return [Integer]
30521
+ #
30522
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TopicIRComparisonMethod AWS API Documentation
30523
+ #
30524
+ class TopicIRComparisonMethod < Struct.new(
30525
+ :type,
30526
+ :period,
30527
+ :window_size)
30528
+ SENSITIVE = []
30529
+ include Aws::Structure
30530
+ end
30531
+
30532
+ # The definition for a `TopicIRContributionAnalysis`.
30533
+ #
30534
+ # @!attribute [rw] factors
30535
+ # The factors for a `TopicIRContributionAnalysis`.
30536
+ # @return [Array<Types::ContributionAnalysisFactor>]
30537
+ #
30538
+ # @!attribute [rw] time_ranges
30539
+ # The time ranges for the `TopicIRContributionAnalysis`.
30540
+ # @return [Types::ContributionAnalysisTimeRanges]
30541
+ #
30542
+ # @!attribute [rw] direction
30543
+ # The direction for the `TopicIRContributionAnalysis`.
30544
+ # @return [String]
30545
+ #
30546
+ # @!attribute [rw] sort_type
30547
+ # The sort type for the `TopicIRContributionAnalysis`.
30548
+ # @return [String]
30549
+ #
30550
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TopicIRContributionAnalysis AWS API Documentation
30551
+ #
30552
+ class TopicIRContributionAnalysis < Struct.new(
30553
+ :factors,
30554
+ :time_ranges,
30555
+ :direction,
30556
+ :sort_type)
30557
+ SENSITIVE = []
30558
+ include Aws::Structure
30559
+ end
30560
+
30561
+ # The definition for a `TopicIRFilterOption`.
30562
+ #
30563
+ # @!attribute [rw] filter_type
30564
+ # The filter type for the `TopicIRFilterOption`.
30565
+ # @return [String]
30566
+ #
30567
+ # @!attribute [rw] filter_class
30568
+ # The filter class for the `TopicIRFilterOption`.
30569
+ # @return [String]
30570
+ #
30571
+ # @!attribute [rw] operand_field
30572
+ # The operand field for the `TopicIRFilterOption`.
30573
+ # @return [Types::Identifier]
30574
+ #
30575
+ # @!attribute [rw] function
30576
+ # The function for the `TopicIRFilterOption`.
30577
+ # @return [String]
30578
+ #
30579
+ # @!attribute [rw] constant
30580
+ # The constant for the `TopicIRFilterOption`.
30581
+ # @return [Types::TopicConstantValue]
30582
+ #
30583
+ # @!attribute [rw] inverse
30584
+ # The inverse for the `TopicIRFilterOption`.
30585
+ # @return [Boolean]
30586
+ #
30587
+ # @!attribute [rw] null_filter
30588
+ # The null filter for the `TopicIRFilterOption`.
30589
+ # @return [String]
30590
+ #
30591
+ # @!attribute [rw] aggregation
30592
+ # The aggregation for the `TopicIRFilterOption`.
30593
+ # @return [String]
30594
+ #
30595
+ # @!attribute [rw] aggregation_function_parameters
30596
+ # The aggregation function parameters for the `TopicIRFilterOption`.
30597
+ # @return [Hash<String,String>]
30598
+ #
30599
+ # @!attribute [rw] aggregation_partition_by
30600
+ # The `AggregationPartitionBy` for the `TopicIRFilterOption`.
30601
+ # @return [Array<Types::AggregationPartitionBy>]
30602
+ #
30603
+ # @!attribute [rw] range
30604
+ # The range for the `TopicIRFilterOption`.
30605
+ # @return [Types::TopicConstantValue]
30606
+ #
30607
+ # @!attribute [rw] inclusive
30608
+ # The inclusive for the `TopicIRFilterOption`.
30609
+ # @return [Boolean]
30610
+ #
30611
+ # @!attribute [rw] time_granularity
30612
+ # The time granularity for the `TopicIRFilterOption`.
30613
+ # @return [String]
30614
+ #
30615
+ # @!attribute [rw] last_next_offset
30616
+ # The last next offset for the `TopicIRFilterOption`.
30617
+ # @return [Types::TopicConstantValue]
30618
+ #
30619
+ # @!attribute [rw] agg_metrics
30620
+ # The agg metrics for the `TopicIRFilterOption`.
30621
+ # @return [Array<Types::FilterAggMetrics>]
30622
+ #
30623
+ # @!attribute [rw] top_bottom_limit
30624
+ # The `TopBottomLimit` for the `TopicIRFilterOption`.
30625
+ # @return [Types::TopicConstantValue]
30626
+ #
30627
+ # @!attribute [rw] sort_direction
30628
+ # The sort direction for the `TopicIRFilterOption`.
30629
+ # @return [String]
30630
+ #
30631
+ # @!attribute [rw] anchor
30632
+ # The anchor for the `TopicIRFilterOption`.
30633
+ # @return [Types::Anchor]
30634
+ #
30635
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TopicIRFilterOption AWS API Documentation
30636
+ #
30637
+ class TopicIRFilterOption < Struct.new(
30638
+ :filter_type,
30639
+ :filter_class,
30640
+ :operand_field,
30641
+ :function,
30642
+ :constant,
30643
+ :inverse,
30644
+ :null_filter,
30645
+ :aggregation,
30646
+ :aggregation_function_parameters,
30647
+ :aggregation_partition_by,
30648
+ :range,
30649
+ :inclusive,
30650
+ :time_granularity,
30651
+ :last_next_offset,
30652
+ :agg_metrics,
30653
+ :top_bottom_limit,
30654
+ :sort_direction,
30655
+ :anchor)
30656
+ SENSITIVE = []
30657
+ include Aws::Structure
30658
+ end
30659
+
30660
+ # The definition for a `TopicIRGroupBy`.
30661
+ #
30662
+ # @!attribute [rw] field_name
30663
+ # The field name for the `TopicIRGroupBy`.
30664
+ # @return [Types::Identifier]
30665
+ #
30666
+ # @!attribute [rw] time_granularity
30667
+ # The time granularity for the `TopicIRGroupBy`.
30668
+ # @return [String]
30669
+ #
30670
+ # @!attribute [rw] sort
30671
+ # The sort for the `TopicIRGroupBy`.
30672
+ # @return [Types::TopicSortClause]
30673
+ #
30674
+ # @!attribute [rw] display_format
30675
+ # The display format for the `TopicIRGroupBy`.
30676
+ # @return [String]
30677
+ #
30678
+ # @!attribute [rw] display_format_options
30679
+ # A structure that represents additional options for display
30680
+ # formatting.
30681
+ # @return [Types::DisplayFormatOptions]
30682
+ #
30683
+ # @!attribute [rw] named_entity
30684
+ # The named entity for the `TopicIRGroupBy`.
30685
+ # @return [Types::NamedEntityRef]
30686
+ #
30687
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TopicIRGroupBy AWS API Documentation
30688
+ #
30689
+ class TopicIRGroupBy < Struct.new(
30690
+ :field_name,
30691
+ :time_granularity,
30692
+ :sort,
30693
+ :display_format,
30694
+ :display_format_options,
30695
+ :named_entity)
30696
+ SENSITIVE = []
30697
+ include Aws::Structure
30698
+ end
30699
+
30700
+ # The definition for a `TopicIRMetric`.
30701
+ #
30702
+ # @!attribute [rw] metric_id
30703
+ # The metric ID for the `TopicIRMetric`.
30704
+ # @return [Types::Identifier]
30705
+ #
30706
+ # @!attribute [rw] function
30707
+ # The function for the `TopicIRMetric`.
30708
+ # @return [Types::AggFunction]
30709
+ #
30710
+ # @!attribute [rw] operands
30711
+ # The operands for the `TopicIRMetric`.
30712
+ # @return [Array<Types::Identifier>]
30713
+ #
30714
+ # @!attribute [rw] comparison_method
30715
+ # The comparison method for the `TopicIRMetric`.
30716
+ # @return [Types::TopicIRComparisonMethod]
30717
+ #
30718
+ # @!attribute [rw] expression
30719
+ # The expression for the `TopicIRMetric`.
30720
+ # @return [String]
30721
+ #
30722
+ # @!attribute [rw] calculated_field_references
30723
+ # The calculated field references for the `TopicIRMetric`.
30724
+ # @return [Array<Types::Identifier>]
30725
+ #
30726
+ # @!attribute [rw] display_format
30727
+ # The display format for the `TopicIRMetric`.
30728
+ # @return [String]
30729
+ #
30730
+ # @!attribute [rw] display_format_options
30731
+ # A structure that represents additional options for display
30732
+ # formatting.
30733
+ # @return [Types::DisplayFormatOptions]
30734
+ #
30735
+ # @!attribute [rw] named_entity
30736
+ # The named entity for the `TopicIRMetric`.
30737
+ # @return [Types::NamedEntityRef]
30738
+ #
30739
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TopicIRMetric AWS API Documentation
30740
+ #
30741
+ class TopicIRMetric < Struct.new(
30742
+ :metric_id,
30743
+ :function,
30744
+ :operands,
30745
+ :comparison_method,
30746
+ :expression,
30747
+ :calculated_field_references,
30748
+ :display_format,
30749
+ :display_format_options,
30750
+ :named_entity)
30751
+ SENSITIVE = [:expression]
30752
+ include Aws::Structure
30753
+ end
30754
+
29974
30755
  # A structure that represents a named entity.
29975
30756
  #
29976
30757
  # @!attribute [rw] entity_name
@@ -30208,6 +30989,50 @@ module Aws::QuickSight
30208
30989
  include Aws::Structure
30209
30990
  end
30210
30991
 
30992
+ # The deinition for a `TopicReviewedAnswer`.
30993
+ #
30994
+ # @!attribute [rw] arn
30995
+ # The Amazon Resource Name (ARN) of the reviewed answer.
30996
+ # @return [String]
30997
+ #
30998
+ # @!attribute [rw] answer_id
30999
+ # The answer ID of the reviewed answer.
31000
+ # @return [String]
31001
+ #
31002
+ # @!attribute [rw] dataset_arn
31003
+ # The Dataset ARN for the `TopicReviewedAnswer`.
31004
+ # @return [String]
31005
+ #
31006
+ # @!attribute [rw] question
31007
+ # The question for the `TopicReviewedAnswer`.
31008
+ # @return [String]
31009
+ #
31010
+ # @!attribute [rw] mir
31011
+ # The mir for the `TopicReviewedAnswer`.
31012
+ # @return [Types::TopicIR]
31013
+ #
31014
+ # @!attribute [rw] primary_visual
31015
+ # The primary visual for the `TopicReviewedAnswer`.
31016
+ # @return [Types::TopicVisual]
31017
+ #
31018
+ # @!attribute [rw] template
31019
+ # The template for the `TopicReviewedAnswer`.
31020
+ # @return [Types::TopicTemplate]
31021
+ #
31022
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TopicReviewedAnswer AWS API Documentation
31023
+ #
31024
+ class TopicReviewedAnswer < Struct.new(
31025
+ :arn,
31026
+ :answer_id,
31027
+ :dataset_arn,
31028
+ :question,
31029
+ :mir,
31030
+ :primary_visual,
31031
+ :template)
31032
+ SENSITIVE = []
31033
+ include Aws::Structure
31034
+ end
31035
+
30211
31036
  # A structure that represents a singular filter constant, used in
30212
31037
  # filters to specify a single value to match against.
30213
31038
  #
@@ -30229,6 +31054,25 @@ module Aws::QuickSight
30229
31054
  include Aws::Structure
30230
31055
  end
30231
31056
 
31057
+ # The definition for a `TopicSortClause`.
31058
+ #
31059
+ # @!attribute [rw] operand
31060
+ # The operand for a `TopicSortClause`.
31061
+ # @return [Types::Identifier]
31062
+ #
31063
+ # @!attribute [rw] sort_direction
31064
+ # The sort direction for the `TopicSortClause`.
31065
+ # @return [String]
31066
+ #
31067
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TopicSortClause AWS API Documentation
31068
+ #
31069
+ class TopicSortClause < Struct.new(
31070
+ :operand,
31071
+ :sort_direction)
31072
+ SENSITIVE = []
31073
+ include Aws::Structure
31074
+ end
31075
+
30232
31076
  # A topic summary.
30233
31077
  #
30234
31078
  # @!attribute [rw] arn
@@ -30259,6 +31103,54 @@ module Aws::QuickSight
30259
31103
  include Aws::Structure
30260
31104
  end
30261
31105
 
31106
+ # The definition for a `TopicTemplate`.
31107
+ #
31108
+ # @!attribute [rw] template_type
31109
+ # The template type for the `TopicTemplate`.
31110
+ # @return [String]
31111
+ #
31112
+ # @!attribute [rw] slots
31113
+ # The slots for the `TopicTemplate`.
31114
+ # @return [Array<Types::Slot>]
31115
+ #
31116
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TopicTemplate AWS API Documentation
31117
+ #
31118
+ class TopicTemplate < Struct.new(
31119
+ :template_type,
31120
+ :slots)
31121
+ SENSITIVE = []
31122
+ include Aws::Structure
31123
+ end
31124
+
31125
+ # The definition for a `TopicVisual`.
31126
+ #
31127
+ # @!attribute [rw] visual_id
31128
+ # The visual ID for the `TopicVisual`.
31129
+ # @return [String]
31130
+ #
31131
+ # @!attribute [rw] role
31132
+ # The role for the `TopicVisual`.
31133
+ # @return [String]
31134
+ #
31135
+ # @!attribute [rw] ir
31136
+ # The ir for the `TopicVisual`.
31137
+ # @return [Types::TopicIR]
31138
+ #
31139
+ # @!attribute [rw] supporting_visuals
31140
+ # The supporting visuals for the `TopicVisual`.
31141
+ # @return [Array<Types::TopicVisual>]
31142
+ #
31143
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TopicVisual AWS API Documentation
31144
+ #
31145
+ class TopicVisual < Struct.new(
31146
+ :visual_id,
31147
+ :role,
31148
+ :ir,
31149
+ :supporting_visuals)
31150
+ SENSITIVE = []
31151
+ include Aws::Structure
31152
+ end
31153
+
30262
31154
  # The total aggregation computation configuration.
30263
31155
  #
30264
31156
  # @!attribute [rw] computation_id
@@ -33965,6 +34857,20 @@ module Aws::QuickSight
33965
34857
  include Aws::Structure
33966
34858
  end
33967
34859
 
34860
+ # The definition for a `VisualOptions`.
34861
+ #
34862
+ # @!attribute [rw] type
34863
+ # The type for a `VisualOptions`.
34864
+ # @return [String]
34865
+ #
34866
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/VisualOptions AWS API Documentation
34867
+ #
34868
+ class VisualOptions < Struct.new(
34869
+ :type)
34870
+ SENSITIVE = []
34871
+ include Aws::Structure
34872
+ end
34873
+
33968
34874
  # The visual display options for the visual palette.
33969
34875
  #
33970
34876
  # @!attribute [rw] chart_color