aws-sdk-quicksight 1.138.0 → 1.140.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-quicksight/client.rb +456 -4
- data/lib/aws-sdk-quicksight/client_api.rb +262 -0
- data/lib/aws-sdk-quicksight/types.rb +527 -3
- data/lib/aws-sdk-quicksight.rb +1 -1
- data/sig/client.rbs +164 -4
- data/sig/types.rbs +154 -3
- metadata +2 -2
@@ -6079,6 +6079,11 @@ module Aws::QuickSight
|
|
6079
6079
|
# these folders.
|
6080
6080
|
# @return [Array<String>]
|
6081
6081
|
#
|
6082
|
+
# @!attribute [rw] performance_configuration
|
6083
|
+
# The configuration for the performance optimization of the dataset
|
6084
|
+
# that contains a `UniqueKey` configuration.
|
6085
|
+
# @return [Types::PerformanceConfiguration]
|
6086
|
+
#
|
6082
6087
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateDataSetRequest AWS API Documentation
|
6083
6088
|
#
|
6084
6089
|
class CreateDataSetRequest < Struct.new(
|
@@ -6097,7 +6102,8 @@ module Aws::QuickSight
|
|
6097
6102
|
:tags,
|
6098
6103
|
:data_set_usage_configuration,
|
6099
6104
|
:dataset_parameters,
|
6100
|
-
:folder_arns
|
6105
|
+
:folder_arns,
|
6106
|
+
:performance_configuration)
|
6101
6107
|
SENSITIVE = []
|
6102
6108
|
include Aws::Structure
|
6103
6109
|
end
|
@@ -8440,6 +8446,55 @@ module Aws::QuickSight
|
|
8440
8446
|
include Aws::Structure
|
8441
8447
|
end
|
8442
8448
|
|
8449
|
+
# The QA result that is made from dashboard visual.
|
8450
|
+
#
|
8451
|
+
# @!attribute [rw] dashboard_id
|
8452
|
+
# The ID of the dashboard.
|
8453
|
+
# @return [String]
|
8454
|
+
#
|
8455
|
+
# @!attribute [rw] dashboard_name
|
8456
|
+
# The name of the dashboard.
|
8457
|
+
# @return [String]
|
8458
|
+
#
|
8459
|
+
# @!attribute [rw] sheet_id
|
8460
|
+
# The ID of the sheet.
|
8461
|
+
# @return [String]
|
8462
|
+
#
|
8463
|
+
# @!attribute [rw] sheet_name
|
8464
|
+
# The name of the sheet.
|
8465
|
+
# @return [String]
|
8466
|
+
#
|
8467
|
+
# @!attribute [rw] visual_id
|
8468
|
+
# The ID of the visual.
|
8469
|
+
# @return [String]
|
8470
|
+
#
|
8471
|
+
# @!attribute [rw] visual_title
|
8472
|
+
# The title of the visual.
|
8473
|
+
# @return [String]
|
8474
|
+
#
|
8475
|
+
# @!attribute [rw] visual_subtitle
|
8476
|
+
# The subtitle of the visual.
|
8477
|
+
# @return [String]
|
8478
|
+
#
|
8479
|
+
# @!attribute [rw] dashboard_url
|
8480
|
+
# The URL of the dashboard.
|
8481
|
+
# @return [String]
|
8482
|
+
#
|
8483
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DashboardVisualResult AWS API Documentation
|
8484
|
+
#
|
8485
|
+
class DashboardVisualResult < Struct.new(
|
8486
|
+
:dashboard_id,
|
8487
|
+
:dashboard_name,
|
8488
|
+
:sheet_id,
|
8489
|
+
:sheet_name,
|
8490
|
+
:visual_id,
|
8491
|
+
:visual_title,
|
8492
|
+
:visual_subtitle,
|
8493
|
+
:dashboard_url)
|
8494
|
+
SENSITIVE = []
|
8495
|
+
include Aws::Structure
|
8496
|
+
end
|
8497
|
+
|
8443
8498
|
# A structure that represents a data aggregation.
|
8444
8499
|
#
|
8445
8500
|
# @!attribute [rw] dataset_row_date_granularity
|
@@ -8904,6 +8959,10 @@ module Aws::QuickSight
|
|
8904
8959
|
# The parameters that are declared in a dataset.
|
8905
8960
|
# @return [Array<Types::DatasetParameter>]
|
8906
8961
|
#
|
8962
|
+
# @!attribute [rw] performance_configuration
|
8963
|
+
# The performance optimization configuration of a dataset.
|
8964
|
+
# @return [Types::PerformanceConfiguration]
|
8965
|
+
#
|
8907
8966
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DataSet AWS API Documentation
|
8908
8967
|
#
|
8909
8968
|
class DataSet < Struct.new(
|
@@ -8923,7 +8982,8 @@ module Aws::QuickSight
|
|
8923
8982
|
:row_level_permission_tag_configuration,
|
8924
8983
|
:column_level_permission_rules,
|
8925
8984
|
:data_set_usage_configuration,
|
8926
|
-
:dataset_parameters
|
8985
|
+
:dataset_parameters,
|
8986
|
+
:performance_configuration)
|
8927
8987
|
SENSITIVE = []
|
8928
8988
|
include Aws::Structure
|
8929
8989
|
end
|
@@ -10961,6 +11021,45 @@ module Aws::QuickSight
|
|
10961
11021
|
include Aws::Structure
|
10962
11022
|
end
|
10963
11023
|
|
11024
|
+
# @!attribute [rw] aws_account_id
|
11025
|
+
# The ID of the Amazon QuickSight account that you want to disconnect
|
11026
|
+
# from a Amazon Q Business application.
|
11027
|
+
# @return [String]
|
11028
|
+
#
|
11029
|
+
# @!attribute [rw] namespace
|
11030
|
+
# The Amazon QuickSight namespace that you want to delete a linked
|
11031
|
+
# Amazon Q Business application from. If this field is left blank, the
|
11032
|
+
# Amazon Q Business application is deleted from the default namespace.
|
11033
|
+
# Currently, the default namespace is the only valid value for this
|
11034
|
+
# parameter.
|
11035
|
+
# @return [String]
|
11036
|
+
#
|
11037
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DeleteDefaultQBusinessApplicationRequest AWS API Documentation
|
11038
|
+
#
|
11039
|
+
class DeleteDefaultQBusinessApplicationRequest < Struct.new(
|
11040
|
+
:aws_account_id,
|
11041
|
+
:namespace)
|
11042
|
+
SENSITIVE = []
|
11043
|
+
include Aws::Structure
|
11044
|
+
end
|
11045
|
+
|
11046
|
+
# @!attribute [rw] request_id
|
11047
|
+
# The Amazon Web Services request ID for this operation.
|
11048
|
+
# @return [String]
|
11049
|
+
#
|
11050
|
+
# @!attribute [rw] status
|
11051
|
+
# The HTTP status of the request.
|
11052
|
+
# @return [Integer]
|
11053
|
+
#
|
11054
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DeleteDefaultQBusinessApplicationResponse AWS API Documentation
|
11055
|
+
#
|
11056
|
+
class DeleteDefaultQBusinessApplicationResponse < Struct.new(
|
11057
|
+
:request_id,
|
11058
|
+
:status)
|
11059
|
+
SENSITIVE = []
|
11060
|
+
include Aws::Structure
|
11061
|
+
end
|
11062
|
+
|
10964
11063
|
# @!attribute [rw] aws_account_id
|
10965
11064
|
# The ID for the Amazon Web Services account that contains the folder.
|
10966
11065
|
# @return [String]
|
@@ -13336,6 +13435,50 @@ module Aws::QuickSight
|
|
13336
13435
|
include Aws::Structure
|
13337
13436
|
end
|
13338
13437
|
|
13438
|
+
# @!attribute [rw] aws_account_id
|
13439
|
+
# The ID of the Amazon QuickSight account that is linked to the Amazon
|
13440
|
+
# Q Business application that you want described.
|
13441
|
+
# @return [String]
|
13442
|
+
#
|
13443
|
+
# @!attribute [rw] namespace
|
13444
|
+
# The Amazon QuickSight namespace that contains the linked Amazon Q
|
13445
|
+
# Business application. If this field is left blank, the default
|
13446
|
+
# namespace is used. Currently, the default namespace is the only
|
13447
|
+
# valid value for this parameter.
|
13448
|
+
# @return [String]
|
13449
|
+
#
|
13450
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeDefaultQBusinessApplicationRequest AWS API Documentation
|
13451
|
+
#
|
13452
|
+
class DescribeDefaultQBusinessApplicationRequest < Struct.new(
|
13453
|
+
:aws_account_id,
|
13454
|
+
:namespace)
|
13455
|
+
SENSITIVE = []
|
13456
|
+
include Aws::Structure
|
13457
|
+
end
|
13458
|
+
|
13459
|
+
# @!attribute [rw] request_id
|
13460
|
+
# The Amazon Web Services request ID for this operation.
|
13461
|
+
# @return [String]
|
13462
|
+
#
|
13463
|
+
# @!attribute [rw] status
|
13464
|
+
# The HTTP status of the request.
|
13465
|
+
# @return [Integer]
|
13466
|
+
#
|
13467
|
+
# @!attribute [rw] application_id
|
13468
|
+
# The ID of the Amazon Q Business application that is linked to the
|
13469
|
+
# Amazon QuickSight account.
|
13470
|
+
# @return [String]
|
13471
|
+
#
|
13472
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeDefaultQBusinessApplicationResponse AWS API Documentation
|
13473
|
+
#
|
13474
|
+
class DescribeDefaultQBusinessApplicationResponse < Struct.new(
|
13475
|
+
:request_id,
|
13476
|
+
:status,
|
13477
|
+
:application_id)
|
13478
|
+
SENSITIVE = []
|
13479
|
+
include Aws::Structure
|
13480
|
+
end
|
13481
|
+
|
13339
13482
|
# @!attribute [rw] aws_account_id
|
13340
13483
|
# The ID for the Amazon Web Services account that contains the folder.
|
13341
13484
|
# @return [String]
|
@@ -13885,6 +14028,41 @@ module Aws::QuickSight
|
|
13885
14028
|
include Aws::Structure
|
13886
14029
|
end
|
13887
14030
|
|
14031
|
+
# @!attribute [rw] aws_account_id
|
14032
|
+
# The ID of the Amazon Web Services account that contains the Amazon
|
14033
|
+
# QuickSight Q Search configuration that the user wants described.
|
14034
|
+
# @return [String]
|
14035
|
+
#
|
14036
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeQuickSightQSearchConfigurationRequest AWS API Documentation
|
14037
|
+
#
|
14038
|
+
class DescribeQuickSightQSearchConfigurationRequest < Struct.new(
|
14039
|
+
:aws_account_id)
|
14040
|
+
SENSITIVE = []
|
14041
|
+
include Aws::Structure
|
14042
|
+
end
|
14043
|
+
|
14044
|
+
# @!attribute [rw] q_search_status
|
14045
|
+
# The status of Amazon QuickSight Q Search configuration.
|
14046
|
+
# @return [String]
|
14047
|
+
#
|
14048
|
+
# @!attribute [rw] request_id
|
14049
|
+
# The Amazon Web Services request ID for this operation.
|
14050
|
+
# @return [String]
|
14051
|
+
#
|
14052
|
+
# @!attribute [rw] status
|
14053
|
+
# The HTTP status of the request.
|
14054
|
+
# @return [Integer]
|
14055
|
+
#
|
14056
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeQuickSightQSearchConfigurationResponse AWS API Documentation
|
14057
|
+
#
|
14058
|
+
class DescribeQuickSightQSearchConfigurationResponse < Struct.new(
|
14059
|
+
:q_search_status,
|
14060
|
+
:request_id,
|
14061
|
+
:status)
|
14062
|
+
SENSITIVE = []
|
14063
|
+
include Aws::Structure
|
14064
|
+
end
|
14065
|
+
|
13888
14066
|
# @!attribute [rw] aws_account_id
|
13889
14067
|
# The Amazon Web Services account ID.
|
13890
14068
|
# @return [String]
|
@@ -17458,6 +17636,112 @@ module Aws::QuickSight
|
|
17458
17636
|
include Aws::Structure
|
17459
17637
|
end
|
17460
17638
|
|
17639
|
+
# @!attribute [rw] aws_account_id
|
17640
|
+
# The ID of the Amazon Web Services registered user.
|
17641
|
+
# @return [String]
|
17642
|
+
#
|
17643
|
+
# @!attribute [rw] session_lifetime_in_minutes
|
17644
|
+
# The validity of the session in minutes.
|
17645
|
+
# @return [Integer]
|
17646
|
+
#
|
17647
|
+
# @!attribute [rw] experience_configuration
|
17648
|
+
# The type of experience you want to embed. For registered users, you
|
17649
|
+
# can embed Amazon QuickSight dashboards or the Amazon QuickSight
|
17650
|
+
# console.
|
17651
|
+
#
|
17652
|
+
# <note markdown="1"> Exactly one of the experience configurations is required. You can
|
17653
|
+
# choose `Dashboard` or `QuickSightConsole`. You cannot choose more
|
17654
|
+
# than one experience configuration.
|
17655
|
+
#
|
17656
|
+
# </note>
|
17657
|
+
# @return [Types::RegisteredUserEmbeddingExperienceConfiguration]
|
17658
|
+
#
|
17659
|
+
# @!attribute [rw] allowed_domains
|
17660
|
+
# A list of domains to be allowed to generate the embed URL.
|
17661
|
+
# @return [Array<String>]
|
17662
|
+
#
|
17663
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GenerateEmbedUrlForRegisteredUserWithIdentityRequest AWS API Documentation
|
17664
|
+
#
|
17665
|
+
class GenerateEmbedUrlForRegisteredUserWithIdentityRequest < Struct.new(
|
17666
|
+
:aws_account_id,
|
17667
|
+
:session_lifetime_in_minutes,
|
17668
|
+
:experience_configuration,
|
17669
|
+
:allowed_domains)
|
17670
|
+
SENSITIVE = []
|
17671
|
+
include Aws::Structure
|
17672
|
+
end
|
17673
|
+
|
17674
|
+
# @!attribute [rw] embed_url
|
17675
|
+
# The generated embed URL for the registered user.
|
17676
|
+
# @return [String]
|
17677
|
+
#
|
17678
|
+
# @!attribute [rw] status
|
17679
|
+
# The HTTP status of the request.
|
17680
|
+
# @return [Integer]
|
17681
|
+
#
|
17682
|
+
# @!attribute [rw] request_id
|
17683
|
+
# The Amazon Web Services request ID for this operation.
|
17684
|
+
# @return [String]
|
17685
|
+
#
|
17686
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GenerateEmbedUrlForRegisteredUserWithIdentityResponse AWS API Documentation
|
17687
|
+
#
|
17688
|
+
class GenerateEmbedUrlForRegisteredUserWithIdentityResponse < Struct.new(
|
17689
|
+
:embed_url,
|
17690
|
+
:status,
|
17691
|
+
:request_id)
|
17692
|
+
SENSITIVE = [:embed_url]
|
17693
|
+
include Aws::Structure
|
17694
|
+
end
|
17695
|
+
|
17696
|
+
# The QA result that is made from generated answer.
|
17697
|
+
#
|
17698
|
+
# @!attribute [rw] question_text
|
17699
|
+
# The question text.
|
17700
|
+
# @return [String]
|
17701
|
+
#
|
17702
|
+
# @!attribute [rw] answer_status
|
17703
|
+
# The answer status of the generated answer.
|
17704
|
+
# @return [String]
|
17705
|
+
#
|
17706
|
+
# @!attribute [rw] topic_id
|
17707
|
+
# The ID of the topic.
|
17708
|
+
# @return [String]
|
17709
|
+
#
|
17710
|
+
# @!attribute [rw] topic_name
|
17711
|
+
# The name of the topic.
|
17712
|
+
# @return [String]
|
17713
|
+
#
|
17714
|
+
# @!attribute [rw] restatement
|
17715
|
+
# The restatement for the answer.
|
17716
|
+
# @return [String]
|
17717
|
+
#
|
17718
|
+
# @!attribute [rw] question_id
|
17719
|
+
# The ID of the question.
|
17720
|
+
# @return [String]
|
17721
|
+
#
|
17722
|
+
# @!attribute [rw] answer_id
|
17723
|
+
# The ID of the answer.
|
17724
|
+
# @return [String]
|
17725
|
+
#
|
17726
|
+
# @!attribute [rw] question_url
|
17727
|
+
# The URL of the question.
|
17728
|
+
# @return [String]
|
17729
|
+
#
|
17730
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeneratedAnswerResult AWS API Documentation
|
17731
|
+
#
|
17732
|
+
class GeneratedAnswerResult < Struct.new(
|
17733
|
+
:question_text,
|
17734
|
+
:answer_status,
|
17735
|
+
:topic_id,
|
17736
|
+
:topic_name,
|
17737
|
+
:restatement,
|
17738
|
+
:question_id,
|
17739
|
+
:answer_id,
|
17740
|
+
:question_url)
|
17741
|
+
SENSITIVE = [:question_text, :restatement]
|
17742
|
+
include Aws::Structure
|
17743
|
+
end
|
17744
|
+
|
17461
17745
|
# Geospatial column group that denotes a hierarchy.
|
17462
17746
|
#
|
17463
17747
|
# @!attribute [rw] name
|
@@ -24929,6 +25213,21 @@ module Aws::QuickSight
|
|
24929
25213
|
include Aws::Structure
|
24930
25214
|
end
|
24931
25215
|
|
25216
|
+
# The configuration for the performance optimization of the dataset that
|
25217
|
+
# contains a `UniqueKey` configuration.
|
25218
|
+
#
|
25219
|
+
# @!attribute [rw] unique_keys
|
25220
|
+
# A `UniqueKey` configuration.
|
25221
|
+
# @return [Array<Types::UniqueKey>]
|
25222
|
+
#
|
25223
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/PerformanceConfiguration AWS API Documentation
|
25224
|
+
#
|
25225
|
+
class PerformanceConfiguration < Struct.new(
|
25226
|
+
:unique_keys)
|
25227
|
+
SENSITIVE = []
|
25228
|
+
include Aws::Structure
|
25229
|
+
end
|
25230
|
+
|
24932
25231
|
# The period over period computation configuration.
|
24933
25232
|
#
|
24934
25233
|
# @!attribute [rw] computation_id
|
@@ -26086,6 +26385,66 @@ module Aws::QuickSight
|
|
26086
26385
|
include Aws::Structure
|
26087
26386
|
end
|
26088
26387
|
|
26388
|
+
# @!attribute [rw] aws_account_id
|
26389
|
+
# The ID of the Amazon Web Services account that the user wants to
|
26390
|
+
# execute Predict QA results in.
|
26391
|
+
# @return [String]
|
26392
|
+
#
|
26393
|
+
# @!attribute [rw] query_text
|
26394
|
+
# The query text to be used to predict QA results.
|
26395
|
+
# @return [String]
|
26396
|
+
#
|
26397
|
+
# @!attribute [rw] include_quick_sight_q_index
|
26398
|
+
# Indicates whether Q indicies are included or excluded.
|
26399
|
+
# @return [String]
|
26400
|
+
#
|
26401
|
+
# @!attribute [rw] include_generated_answer
|
26402
|
+
# Indicates whether generated answers are included or excluded.
|
26403
|
+
# @return [String]
|
26404
|
+
#
|
26405
|
+
# @!attribute [rw] max_topics_to_consider
|
26406
|
+
# The number of maximum topics to be considered to predict QA results.
|
26407
|
+
# @return [Integer]
|
26408
|
+
#
|
26409
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/PredictQAResultsRequest AWS API Documentation
|
26410
|
+
#
|
26411
|
+
class PredictQAResultsRequest < Struct.new(
|
26412
|
+
:aws_account_id,
|
26413
|
+
:query_text,
|
26414
|
+
:include_quick_sight_q_index,
|
26415
|
+
:include_generated_answer,
|
26416
|
+
:max_topics_to_consider)
|
26417
|
+
SENSITIVE = [:query_text]
|
26418
|
+
include Aws::Structure
|
26419
|
+
end
|
26420
|
+
|
26421
|
+
# @!attribute [rw] primary_result
|
26422
|
+
# The primary visual response.
|
26423
|
+
# @return [Types::QAResult]
|
26424
|
+
#
|
26425
|
+
# @!attribute [rw] additional_results
|
26426
|
+
# Additional visual responses.
|
26427
|
+
# @return [Array<Types::QAResult>]
|
26428
|
+
#
|
26429
|
+
# @!attribute [rw] request_id
|
26430
|
+
# The Amazon Web Services request ID for this operation.
|
26431
|
+
# @return [String]
|
26432
|
+
#
|
26433
|
+
# @!attribute [rw] status
|
26434
|
+
# The HTTP status of the request.
|
26435
|
+
# @return [Integer]
|
26436
|
+
#
|
26437
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/PredictQAResultsResponse AWS API Documentation
|
26438
|
+
#
|
26439
|
+
class PredictQAResultsResponse < Struct.new(
|
26440
|
+
:primary_result,
|
26441
|
+
:additional_results,
|
26442
|
+
:request_id,
|
26443
|
+
:status)
|
26444
|
+
SENSITIVE = []
|
26445
|
+
include Aws::Structure
|
26446
|
+
end
|
26447
|
+
|
26089
26448
|
# The parameters for Presto.
|
26090
26449
|
#
|
26091
26450
|
# @!attribute [rw] host
|
@@ -26179,6 +26538,31 @@ module Aws::QuickSight
|
|
26179
26538
|
include Aws::Structure
|
26180
26539
|
end
|
26181
26540
|
|
26541
|
+
# The QA result that is made from the `DashboardVisual` or
|
26542
|
+
# `GeneratedAnswer`.
|
26543
|
+
#
|
26544
|
+
# @!attribute [rw] result_type
|
26545
|
+
# The type of QA result.
|
26546
|
+
# @return [String]
|
26547
|
+
#
|
26548
|
+
# @!attribute [rw] dashboard_visual
|
26549
|
+
# The representation of a dashboard visual result.
|
26550
|
+
# @return [Types::DashboardVisualResult]
|
26551
|
+
#
|
26552
|
+
# @!attribute [rw] generated_answer
|
26553
|
+
# The representation of a generated answer result.
|
26554
|
+
# @return [Types::GeneratedAnswerResult]
|
26555
|
+
#
|
26556
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/QAResult AWS API Documentation
|
26557
|
+
#
|
26558
|
+
class QAResult < Struct.new(
|
26559
|
+
:result_type,
|
26560
|
+
:dashboard_visual,
|
26561
|
+
:generated_answer)
|
26562
|
+
SENSITIVE = []
|
26563
|
+
include Aws::Structure
|
26564
|
+
end
|
26565
|
+
|
26182
26566
|
# A structure that describes the query execution options.
|
26183
26567
|
#
|
26184
26568
|
# @!attribute [rw] query_execution_mode
|
@@ -34759,6 +35143,21 @@ module Aws::QuickSight
|
|
34759
35143
|
include Aws::Structure
|
34760
35144
|
end
|
34761
35145
|
|
35146
|
+
# A `UniqueKey` configuration that references a dataset column.
|
35147
|
+
#
|
35148
|
+
# @!attribute [rw] column_names
|
35149
|
+
# The name of the column that is referenced in the `UniqueKey`
|
35150
|
+
# configuration.
|
35151
|
+
# @return [Array<String>]
|
35152
|
+
#
|
35153
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UniqueKey AWS API Documentation
|
35154
|
+
#
|
35155
|
+
class UniqueKey < Struct.new(
|
35156
|
+
:column_names)
|
35157
|
+
SENSITIVE = []
|
35158
|
+
include Aws::Structure
|
35159
|
+
end
|
35160
|
+
|
34762
35161
|
# The unique values computation configuration.
|
34763
35162
|
#
|
34764
35163
|
# @!attribute [rw] computation_id
|
@@ -35164,6 +35563,41 @@ module Aws::QuickSight
|
|
35164
35563
|
include Aws::Structure
|
35165
35564
|
end
|
35166
35565
|
|
35566
|
+
# @!attribute [rw] aws_account_id
|
35567
|
+
# The ID of the Amazon Web Services account to be updated with a token
|
35568
|
+
# exchange grant.
|
35569
|
+
# @return [String]
|
35570
|
+
#
|
35571
|
+
# @!attribute [rw] namespace
|
35572
|
+
# The namespace of the Amazon QuickSight application.
|
35573
|
+
# @return [String]
|
35574
|
+
#
|
35575
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateApplicationWithTokenExchangeGrantRequest AWS API Documentation
|
35576
|
+
#
|
35577
|
+
class UpdateApplicationWithTokenExchangeGrantRequest < Struct.new(
|
35578
|
+
:aws_account_id,
|
35579
|
+
:namespace)
|
35580
|
+
SENSITIVE = []
|
35581
|
+
include Aws::Structure
|
35582
|
+
end
|
35583
|
+
|
35584
|
+
# @!attribute [rw] status
|
35585
|
+
# The HTTP status of the request.
|
35586
|
+
# @return [Integer]
|
35587
|
+
#
|
35588
|
+
# @!attribute [rw] request_id
|
35589
|
+
# The Amazon Web Services request ID for this operation.
|
35590
|
+
# @return [String]
|
35591
|
+
#
|
35592
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateApplicationWithTokenExchangeGrantResponse AWS API Documentation
|
35593
|
+
#
|
35594
|
+
class UpdateApplicationWithTokenExchangeGrantResponse < Struct.new(
|
35595
|
+
:status,
|
35596
|
+
:request_id)
|
35597
|
+
SENSITIVE = []
|
35598
|
+
include Aws::Structure
|
35599
|
+
end
|
35600
|
+
|
35167
35601
|
# @!attribute [rw] aws_account_id
|
35168
35602
|
# The ID of the Amazon Web Services account that owns the brand
|
35169
35603
|
# assignment.
|
@@ -35798,6 +36232,11 @@ module Aws::QuickSight
|
|
35798
36232
|
# The parameter declarations of the dataset.
|
35799
36233
|
# @return [Array<Types::DatasetParameter>]
|
35800
36234
|
#
|
36235
|
+
# @!attribute [rw] performance_configuration
|
36236
|
+
# The configuration for the performance optimization of the dataset
|
36237
|
+
# that contains a `UniqueKey` configuration.
|
36238
|
+
# @return [Types::PerformanceConfiguration]
|
36239
|
+
#
|
35801
36240
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateDataSetRequest AWS API Documentation
|
35802
36241
|
#
|
35803
36242
|
class UpdateDataSetRequest < Struct.new(
|
@@ -35813,7 +36252,8 @@ module Aws::QuickSight
|
|
35813
36252
|
:row_level_permission_tag_configuration,
|
35814
36253
|
:column_level_permission_rules,
|
35815
36254
|
:data_set_usage_configuration,
|
35816
|
-
:dataset_parameters
|
36255
|
+
:dataset_parameters,
|
36256
|
+
:performance_configuration)
|
35817
36257
|
SENSITIVE = []
|
35818
36258
|
include Aws::Structure
|
35819
36259
|
end
|
@@ -35997,6 +36437,49 @@ module Aws::QuickSight
|
|
35997
36437
|
include Aws::Structure
|
35998
36438
|
end
|
35999
36439
|
|
36440
|
+
# @!attribute [rw] aws_account_id
|
36441
|
+
# The ID of the Amazon QuickSight account that is connected to the
|
36442
|
+
# Amazon Q Business application that you want to update.
|
36443
|
+
# @return [String]
|
36444
|
+
#
|
36445
|
+
# @!attribute [rw] namespace
|
36446
|
+
# The Amazon QuickSight namespace that contains the linked Amazon Q
|
36447
|
+
# Business application. If this field is left blank, the default
|
36448
|
+
# namespace is used. Currently, the default namespace is the only
|
36449
|
+
# valid value for this parameter.
|
36450
|
+
# @return [String]
|
36451
|
+
#
|
36452
|
+
# @!attribute [rw] application_id
|
36453
|
+
# The ID of the Amazon Q Business application that you want to update.
|
36454
|
+
# @return [String]
|
36455
|
+
#
|
36456
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateDefaultQBusinessApplicationRequest AWS API Documentation
|
36457
|
+
#
|
36458
|
+
class UpdateDefaultQBusinessApplicationRequest < Struct.new(
|
36459
|
+
:aws_account_id,
|
36460
|
+
:namespace,
|
36461
|
+
:application_id)
|
36462
|
+
SENSITIVE = []
|
36463
|
+
include Aws::Structure
|
36464
|
+
end
|
36465
|
+
|
36466
|
+
# @!attribute [rw] request_id
|
36467
|
+
# The Amazon Web Services request ID for this operation.
|
36468
|
+
# @return [String]
|
36469
|
+
#
|
36470
|
+
# @!attribute [rw] status
|
36471
|
+
# The HTTP status of the request.
|
36472
|
+
# @return [Integer]
|
36473
|
+
#
|
36474
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateDefaultQBusinessApplicationResponse AWS API Documentation
|
36475
|
+
#
|
36476
|
+
class UpdateDefaultQBusinessApplicationResponse < Struct.new(
|
36477
|
+
:request_id,
|
36478
|
+
:status)
|
36479
|
+
SENSITIVE = []
|
36480
|
+
include Aws::Structure
|
36481
|
+
end
|
36482
|
+
|
36000
36483
|
# @!attribute [rw] aws_account_id
|
36001
36484
|
# The ID for the Amazon Web Services account that contains the folder
|
36002
36485
|
# to update.
|
@@ -36487,6 +36970,47 @@ module Aws::QuickSight
|
|
36487
36970
|
include Aws::Structure
|
36488
36971
|
end
|
36489
36972
|
|
36973
|
+
# @!attribute [rw] aws_account_id
|
36974
|
+
# The ID of the Amazon Web Services account that contains the Amazon
|
36975
|
+
# QuickSight Q Search configuration that you want to update.
|
36976
|
+
# @return [String]
|
36977
|
+
#
|
36978
|
+
# @!attribute [rw] q_search_status
|
36979
|
+
# The status of the Amazon QuickSight Q Search configuration that the
|
36980
|
+
# user wants to update.
|
36981
|
+
# @return [String]
|
36982
|
+
#
|
36983
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateQuickSightQSearchConfigurationRequest AWS API Documentation
|
36984
|
+
#
|
36985
|
+
class UpdateQuickSightQSearchConfigurationRequest < Struct.new(
|
36986
|
+
:aws_account_id,
|
36987
|
+
:q_search_status)
|
36988
|
+
SENSITIVE = []
|
36989
|
+
include Aws::Structure
|
36990
|
+
end
|
36991
|
+
|
36992
|
+
# @!attribute [rw] q_search_status
|
36993
|
+
# The status of the Amazon QuickSight Q Search configuration.
|
36994
|
+
# @return [String]
|
36995
|
+
#
|
36996
|
+
# @!attribute [rw] request_id
|
36997
|
+
# The Amazon Web Services request ID for this operation.
|
36998
|
+
# @return [String]
|
36999
|
+
#
|
37000
|
+
# @!attribute [rw] status
|
37001
|
+
# The HTTP status of the request.
|
37002
|
+
# @return [Integer]
|
37003
|
+
#
|
37004
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateQuickSightQSearchConfigurationResponse AWS API Documentation
|
37005
|
+
#
|
37006
|
+
class UpdateQuickSightQSearchConfigurationResponse < Struct.new(
|
37007
|
+
:q_search_status,
|
37008
|
+
:request_id,
|
37009
|
+
:status)
|
37010
|
+
SENSITIVE = []
|
37011
|
+
include Aws::Structure
|
37012
|
+
end
|
37013
|
+
|
36490
37014
|
# @!attribute [rw] data_set_id
|
36491
37015
|
# The ID of the dataset.
|
36492
37016
|
# @return [String]
|