aws-sdk-quicksight 1.37.0 → 1.42.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/lib/aws-sdk-quicksight.rb +1 -1
- data/lib/aws-sdk-quicksight/client.rb +65 -19
- data/lib/aws-sdk-quicksight/client_api.rb +37 -0
- data/lib/aws-sdk-quicksight/types.rb +162 -31
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 65153385701fe1ffc85ede2ebb9b2597b9db4a8744969876cd76270c4d269fbd
|
4
|
+
data.tar.gz: d58b2596ea407f22c382b4d6f271f8e29c6ce9c22c578419434bd064bdc51cf5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a1b2c637c2422814248c54eef24530e9e7ef0455a4e14cbee4925fbfd8e02305c10f7ed0ba6de8f23cf12896acce21980ed1072cd5246a5ec6ea8148cb0834d8
|
7
|
+
data.tar.gz: b2b45d35ebca6cd8587e96ad7a18b87521612b3b9bf89174ce08745f579b2a8f2f770330bfe1285e60484dafef459697b9a8f76fca65763838c7116317393fb5
|
data/lib/aws-sdk-quicksight.rb
CHANGED
@@ -784,6 +784,10 @@ module Aws::QuickSight
|
|
784
784
|
# Groupings of columns that work together in certain QuickSight
|
785
785
|
# features. Currently, only geospatial hierarchy is supported.
|
786
786
|
#
|
787
|
+
# @option params [Hash<String,Types::FieldFolder>] :field_folders
|
788
|
+
# The folder that contains fields and nested subfolders for your
|
789
|
+
# dataset.
|
790
|
+
#
|
787
791
|
# @option params [Array<Types::ResourcePermission>] :permissions
|
788
792
|
# A list of resource permissions on the dataset.
|
789
793
|
#
|
@@ -817,6 +821,7 @@ module Aws::QuickSight
|
|
817
821
|
# "PhysicalTableId" => {
|
818
822
|
# relational_table: {
|
819
823
|
# data_source_arn: "Arn", # required
|
824
|
+
# catalog: "RelationalTableCatalog",
|
820
825
|
# schema: "RelationalTableSchema",
|
821
826
|
# name: "RelationalTableName", # required
|
822
827
|
# input_columns: [ # required
|
@@ -901,6 +906,12 @@ module Aws::QuickSight
|
|
901
906
|
# join_instruction: {
|
902
907
|
# left_operand: "LogicalTableId", # required
|
903
908
|
# right_operand: "LogicalTableId", # required
|
909
|
+
# left_join_key_properties: {
|
910
|
+
# unique_key: false,
|
911
|
+
# },
|
912
|
+
# right_join_key_properties: {
|
913
|
+
# unique_key: false,
|
914
|
+
# },
|
904
915
|
# type: "INNER", # required, accepts INNER, OUTER, LEFT, RIGHT
|
905
916
|
# on_clause: "OnClause", # required
|
906
917
|
# },
|
@@ -918,6 +929,12 @@ module Aws::QuickSight
|
|
918
929
|
# },
|
919
930
|
# },
|
920
931
|
# ],
|
932
|
+
# field_folders: {
|
933
|
+
# "FieldFolderPath" => {
|
934
|
+
# description: "FieldFolderDescription",
|
935
|
+
# columns: ["String"],
|
936
|
+
# },
|
937
|
+
# },
|
921
938
|
# permissions: [
|
922
939
|
# {
|
923
940
|
# principal: "Principal", # required
|
@@ -1439,7 +1456,7 @@ module Aws::QuickSight
|
|
1439
1456
|
#
|
1440
1457
|
#
|
1441
1458
|
#
|
1442
|
-
# [1]:
|
1459
|
+
# [1]: http://aws.amazon.com/premiumsupport/knowledge-center/iam-ec2-resource-tags/
|
1443
1460
|
#
|
1444
1461
|
# @option params [required, String] :data_set_id
|
1445
1462
|
# The ID of the dataset used in the ingestion.
|
@@ -2937,6 +2954,7 @@ module Aws::QuickSight
|
|
2937
2954
|
# resp.data_set.last_updated_time #=> Time
|
2938
2955
|
# resp.data_set.physical_table_map #=> Hash
|
2939
2956
|
# resp.data_set.physical_table_map["PhysicalTableId"].relational_table.data_source_arn #=> String
|
2957
|
+
# resp.data_set.physical_table_map["PhysicalTableId"].relational_table.catalog #=> String
|
2940
2958
|
# resp.data_set.physical_table_map["PhysicalTableId"].relational_table.schema #=> String
|
2941
2959
|
# resp.data_set.physical_table_map["PhysicalTableId"].relational_table.name #=> String
|
2942
2960
|
# resp.data_set.physical_table_map["PhysicalTableId"].relational_table.input_columns #=> Array
|
@@ -2978,6 +2996,8 @@ module Aws::QuickSight
|
|
2978
2996
|
# resp.data_set.logical_table_map["LogicalTableId"].data_transforms[0].tag_column_operation.tags[0].column_description.text #=> String
|
2979
2997
|
# resp.data_set.logical_table_map["LogicalTableId"].source.join_instruction.left_operand #=> String
|
2980
2998
|
# resp.data_set.logical_table_map["LogicalTableId"].source.join_instruction.right_operand #=> String
|
2999
|
+
# resp.data_set.logical_table_map["LogicalTableId"].source.join_instruction.left_join_key_properties.unique_key #=> Boolean
|
3000
|
+
# resp.data_set.logical_table_map["LogicalTableId"].source.join_instruction.right_join_key_properties.unique_key #=> Boolean
|
2981
3001
|
# resp.data_set.logical_table_map["LogicalTableId"].source.join_instruction.type #=> String, one of "INNER", "OUTER", "LEFT", "RIGHT"
|
2982
3002
|
# resp.data_set.logical_table_map["LogicalTableId"].source.join_instruction.on_clause #=> String
|
2983
3003
|
# resp.data_set.logical_table_map["LogicalTableId"].source.physical_table_id #=> String
|
@@ -2992,6 +3012,10 @@ module Aws::QuickSight
|
|
2992
3012
|
# resp.data_set.column_groups[0].geo_spatial_column_group.country_code #=> String, one of "US"
|
2993
3013
|
# resp.data_set.column_groups[0].geo_spatial_column_group.columns #=> Array
|
2994
3014
|
# resp.data_set.column_groups[0].geo_spatial_column_group.columns[0] #=> String
|
3015
|
+
# resp.data_set.field_folders #=> Hash
|
3016
|
+
# resp.data_set.field_folders["FieldFolderPath"].description #=> String
|
3017
|
+
# resp.data_set.field_folders["FieldFolderPath"].columns #=> Array
|
3018
|
+
# resp.data_set.field_folders["FieldFolderPath"].columns[0] #=> String
|
2995
3019
|
# resp.data_set.row_level_permission_data_set.namespace #=> String
|
2996
3020
|
# resp.data_set.row_level_permission_data_set.arn #=> String
|
2997
3021
|
# resp.data_set.row_level_permission_data_set.permission_policy #=> String, one of "GRANT_ACCESS", "DENY_ACCESS"
|
@@ -3845,19 +3869,20 @@ module Aws::QuickSight
|
|
3845
3869
|
#
|
3846
3870
|
# * The resulting user session is valid for 10 hours.
|
3847
3871
|
#
|
3848
|
-
# For more information, see [
|
3849
|
-
#
|
3872
|
+
# For more information, see [Embedded Analytics][1] in the *Amazon
|
3873
|
+
# QuickSight User Guide*.
|
3850
3874
|
#
|
3851
3875
|
#
|
3852
3876
|
#
|
3853
|
-
# [1]: https://docs.aws.amazon.com/quicksight/latest/user/
|
3877
|
+
# [1]: https://docs.aws.amazon.com/quicksight/latest/user/embedded-analytics.html
|
3854
3878
|
#
|
3855
3879
|
# @option params [required, String] :aws_account_id
|
3856
3880
|
# The ID for the AWS account that contains the dashboard that you're
|
3857
3881
|
# embedding.
|
3858
3882
|
#
|
3859
3883
|
# @option params [required, String] :dashboard_id
|
3860
|
-
# The ID for the dashboard, also added to the
|
3884
|
+
# The ID for the dashboard, also added to the AWS Identity and Access
|
3885
|
+
# Management (IAM) policy.
|
3861
3886
|
#
|
3862
3887
|
# @option params [required, String] :identity_type
|
3863
3888
|
# The authentication method that the user uses to sign in.
|
@@ -3879,10 +3904,10 @@ module Aws::QuickSight
|
|
3879
3904
|
# dashboard. Persistence applies to the sheet and the parameter
|
3880
3905
|
# settings. These are control settings that the dashboard subscriber
|
3881
3906
|
# (QuickSight reader) chooses while viewing the dashboard. If this is
|
3882
|
-
# set to `TRUE`, the settings are the same when the
|
3883
|
-
#
|
3884
|
-
#
|
3885
|
-
#
|
3907
|
+
# set to `TRUE`, the settings are the same when the subscriber reopens
|
3908
|
+
# the same dashboard URL. The state is stored in QuickSight, not in a
|
3909
|
+
# browser cookie. If this is set to FALSE, the state of the user session
|
3910
|
+
# is not persisted. The default is `FALSE`.
|
3886
3911
|
#
|
3887
3912
|
# @option params [String] :user_arn
|
3888
3913
|
# The Amazon QuickSight user's Amazon Resource Name (ARN), for use with
|
@@ -3907,10 +3932,10 @@ module Aws::QuickSight
|
|
3907
3932
|
# "`default`".
|
3908
3933
|
#
|
3909
3934
|
# @option params [Array<String>] :additional_dashboard_ids
|
3910
|
-
# A list of one or more dashboard
|
3911
|
-
# that includes anonymous
|
3912
|
-
# ANONYMOUS for this to work, because other
|
3913
|
-
# authenticate as QuickSight users. For example, if you set
|
3935
|
+
# A list of one or more dashboard IDs that you want to add to a session
|
3936
|
+
# that includes anonymous users. The `IdentityType` parameter must be
|
3937
|
+
# set to `ANONYMOUS` for this to work, because other identity types
|
3938
|
+
# authenticate as QuickSight or IAM users. For example, if you set
|
3914
3939
|
# "`--dashboard-id dash_id1 --dashboard-id dash_id2 dash_id3
|
3915
3940
|
# identity-type ANONYMOUS`", the session can access all three
|
3916
3941
|
# dashboards.
|
@@ -4008,11 +4033,11 @@ module Aws::QuickSight
|
|
4008
4033
|
#
|
4009
4034
|
# 2. Invited nonfederated users
|
4010
4035
|
#
|
4011
|
-
# 3. IAM users and IAM role-based
|
4012
|
-
# Federated Single Sign-On using
|
4013
|
-
# federation
|
4036
|
+
# 3. AWS Identity and Access Management (IAM) users and IAM role-based
|
4037
|
+
# sessions authenticated through Federated Single Sign-On using
|
4038
|
+
# SAML, OpenID Connect, or IAM federation
|
4014
4039
|
#
|
4015
|
-
# Omit this parameter for users in the third group
|
4040
|
+
# Omit this parameter for users in the third group, IAM users and IAM
|
4016
4041
|
# role-based sessions.
|
4017
4042
|
#
|
4018
4043
|
# @return [Types::GetSessionEmbedUrlResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -5016,6 +5041,8 @@ module Aws::QuickSight
|
|
5016
5041
|
# * {Types::ListThemeVersionsResponse#status #status} => Integer
|
5017
5042
|
# * {Types::ListThemeVersionsResponse#request_id #request_id} => String
|
5018
5043
|
#
|
5044
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
5045
|
+
#
|
5019
5046
|
# @example Request syntax with placeholder values
|
5020
5047
|
#
|
5021
5048
|
# resp = client.list_theme_versions({
|
@@ -5078,6 +5105,8 @@ module Aws::QuickSight
|
|
5078
5105
|
# * {Types::ListThemesResponse#status #status} => Integer
|
5079
5106
|
# * {Types::ListThemesResponse#request_id #request_id} => String
|
5080
5107
|
#
|
5108
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
5109
|
+
#
|
5081
5110
|
# @example Request syntax with placeholder values
|
5082
5111
|
#
|
5083
5112
|
# resp = client.list_themes({
|
@@ -5269,7 +5298,7 @@ module Aws::QuickSight
|
|
5269
5298
|
#
|
5270
5299
|
#
|
5271
5300
|
#
|
5272
|
-
# [1]: https://
|
5301
|
+
# [1]: https://docs.aws.amazon.com/cli/latest/reference/sts/assume-role.html
|
5273
5302
|
#
|
5274
5303
|
# @option params [required, String] :aws_account_id
|
5275
5304
|
# The ID for the AWS account that the user is in. Currently, you use the
|
@@ -6164,6 +6193,10 @@ module Aws::QuickSight
|
|
6164
6193
|
# Groupings of columns that work together in certain QuickSight
|
6165
6194
|
# features. Currently, only geospatial hierarchy is supported.
|
6166
6195
|
#
|
6196
|
+
# @option params [Hash<String,Types::FieldFolder>] :field_folders
|
6197
|
+
# The folder that contains fields and nested subfolders for your
|
6198
|
+
# dataset.
|
6199
|
+
#
|
6167
6200
|
# @option params [Types::RowLevelPermissionDataSet] :row_level_permission_data_set
|
6168
6201
|
# The row-level security configuration for the data you want to create.
|
6169
6202
|
#
|
@@ -6189,6 +6222,7 @@ module Aws::QuickSight
|
|
6189
6222
|
# "PhysicalTableId" => {
|
6190
6223
|
# relational_table: {
|
6191
6224
|
# data_source_arn: "Arn", # required
|
6225
|
+
# catalog: "RelationalTableCatalog",
|
6192
6226
|
# schema: "RelationalTableSchema",
|
6193
6227
|
# name: "RelationalTableName", # required
|
6194
6228
|
# input_columns: [ # required
|
@@ -6273,6 +6307,12 @@ module Aws::QuickSight
|
|
6273
6307
|
# join_instruction: {
|
6274
6308
|
# left_operand: "LogicalTableId", # required
|
6275
6309
|
# right_operand: "LogicalTableId", # required
|
6310
|
+
# left_join_key_properties: {
|
6311
|
+
# unique_key: false,
|
6312
|
+
# },
|
6313
|
+
# right_join_key_properties: {
|
6314
|
+
# unique_key: false,
|
6315
|
+
# },
|
6276
6316
|
# type: "INNER", # required, accepts INNER, OUTER, LEFT, RIGHT
|
6277
6317
|
# on_clause: "OnClause", # required
|
6278
6318
|
# },
|
@@ -6290,6 +6330,12 @@ module Aws::QuickSight
|
|
6290
6330
|
# },
|
6291
6331
|
# },
|
6292
6332
|
# ],
|
6333
|
+
# field_folders: {
|
6334
|
+
# "FieldFolderPath" => {
|
6335
|
+
# description: "FieldFolderDescription",
|
6336
|
+
# columns: ["String"],
|
6337
|
+
# },
|
6338
|
+
# },
|
6293
6339
|
# row_level_permission_data_set: {
|
6294
6340
|
# namespace: "Namespace",
|
6295
6341
|
# arn: "Arn", # required
|
@@ -7394,7 +7440,7 @@ module Aws::QuickSight
|
|
7394
7440
|
params: params,
|
7395
7441
|
config: config)
|
7396
7442
|
context[:gem_name] = 'aws-sdk-quicksight'
|
7397
|
-
context[:gem_version] = '1.
|
7443
|
+
context[:gem_version] = '1.42.0'
|
7398
7444
|
Seahorse::Client::Request.new(handlers, context)
|
7399
7445
|
end
|
7400
7446
|
|
@@ -236,9 +236,14 @@ module Aws::QuickSight
|
|
236
236
|
ExceptionResourceType = Shapes::StringShape.new(name: 'ExceptionResourceType')
|
237
237
|
ExportToCSVOption = Shapes::StructureShape.new(name: 'ExportToCSVOption')
|
238
238
|
Expression = Shapes::StringShape.new(name: 'Expression')
|
239
|
+
FieldFolder = Shapes::StructureShape.new(name: 'FieldFolder')
|
240
|
+
FieldFolderDescription = Shapes::StringShape.new(name: 'FieldFolderDescription')
|
241
|
+
FieldFolderMap = Shapes::MapShape.new(name: 'FieldFolderMap')
|
242
|
+
FieldFolderPath = Shapes::StringShape.new(name: 'FieldFolderPath')
|
239
243
|
FileFormat = Shapes::StringShape.new(name: 'FileFormat')
|
240
244
|
FilterOperation = Shapes::StructureShape.new(name: 'FilterOperation')
|
241
245
|
FilterOperator = Shapes::StringShape.new(name: 'FilterOperator')
|
246
|
+
FolderColumnList = Shapes::ListShape.new(name: 'FolderColumnList')
|
242
247
|
GeoSpatialColumnGroup = Shapes::StructureShape.new(name: 'GeoSpatialColumnGroup')
|
243
248
|
GeoSpatialCountryCode = Shapes::StringShape.new(name: 'GeoSpatialCountryCode')
|
244
249
|
GeoSpatialDataRole = Shapes::StringShape.new(name: 'GeoSpatialDataRole')
|
@@ -285,6 +290,7 @@ module Aws::QuickSight
|
|
285
290
|
InvalidParameterValueException = Shapes::StructureShape.new(name: 'InvalidParameterValueException')
|
286
291
|
JiraParameters = Shapes::StructureShape.new(name: 'JiraParameters')
|
287
292
|
JoinInstruction = Shapes::StructureShape.new(name: 'JoinInstruction')
|
293
|
+
JoinKeyProperties = Shapes::StructureShape.new(name: 'JoinKeyProperties')
|
288
294
|
JoinType = Shapes::StringShape.new(name: 'JoinType')
|
289
295
|
LimitExceededException = Shapes::StructureShape.new(name: 'LimitExceededException')
|
290
296
|
ListAnalysesRequest = Shapes::StructureShape.new(name: 'ListAnalysesRequest')
|
@@ -374,6 +380,7 @@ module Aws::QuickSight
|
|
374
380
|
RegisterUserRequest = Shapes::StructureShape.new(name: 'RegisterUserRequest')
|
375
381
|
RegisterUserResponse = Shapes::StructureShape.new(name: 'RegisterUserResponse')
|
376
382
|
RelationalTable = Shapes::StructureShape.new(name: 'RelationalTable')
|
383
|
+
RelationalTableCatalog = Shapes::StringShape.new(name: 'RelationalTableCatalog')
|
377
384
|
RelationalTableName = Shapes::StringShape.new(name: 'RelationalTableName')
|
378
385
|
RelationalTableSchema = Shapes::StringShape.new(name: 'RelationalTableSchema')
|
379
386
|
RenameColumnOperation = Shapes::StructureShape.new(name: 'RenameColumnOperation')
|
@@ -755,6 +762,7 @@ module Aws::QuickSight
|
|
755
762
|
CreateDataSetRequest.add_member(:logical_table_map, Shapes::ShapeRef.new(shape: LogicalTableMap, location_name: "LogicalTableMap"))
|
756
763
|
CreateDataSetRequest.add_member(:import_mode, Shapes::ShapeRef.new(shape: DataSetImportMode, required: true, location_name: "ImportMode"))
|
757
764
|
CreateDataSetRequest.add_member(:column_groups, Shapes::ShapeRef.new(shape: ColumnGroupList, location_name: "ColumnGroups"))
|
765
|
+
CreateDataSetRequest.add_member(:field_folders, Shapes::ShapeRef.new(shape: FieldFolderMap, location_name: "FieldFolders"))
|
758
766
|
CreateDataSetRequest.add_member(:permissions, Shapes::ShapeRef.new(shape: ResourcePermissionList, location_name: "Permissions"))
|
759
767
|
CreateDataSetRequest.add_member(:row_level_permission_data_set, Shapes::ShapeRef.new(shape: RowLevelPermissionDataSet, location_name: "RowLevelPermissionDataSet"))
|
760
768
|
CreateDataSetRequest.add_member(:column_level_permission_rules, Shapes::ShapeRef.new(shape: ColumnLevelPermissionRuleList, location_name: "ColumnLevelPermissionRules"))
|
@@ -1005,6 +1013,7 @@ module Aws::QuickSight
|
|
1005
1013
|
DataSet.add_member(:import_mode, Shapes::ShapeRef.new(shape: DataSetImportMode, location_name: "ImportMode"))
|
1006
1014
|
DataSet.add_member(:consumed_spice_capacity_in_bytes, Shapes::ShapeRef.new(shape: Long, location_name: "ConsumedSpiceCapacityInBytes"))
|
1007
1015
|
DataSet.add_member(:column_groups, Shapes::ShapeRef.new(shape: ColumnGroupList, location_name: "ColumnGroups"))
|
1016
|
+
DataSet.add_member(:field_folders, Shapes::ShapeRef.new(shape: FieldFolderMap, location_name: "FieldFolders"))
|
1008
1017
|
DataSet.add_member(:row_level_permission_data_set, Shapes::ShapeRef.new(shape: RowLevelPermissionDataSet, location_name: "RowLevelPermissionDataSet"))
|
1009
1018
|
DataSet.add_member(:column_level_permission_rules, Shapes::ShapeRef.new(shape: ColumnLevelPermissionRuleList, location_name: "ColumnLevelPermissionRules"))
|
1010
1019
|
DataSet.struct_class = Types::DataSet
|
@@ -1481,9 +1490,18 @@ module Aws::QuickSight
|
|
1481
1490
|
ExportToCSVOption.add_member(:availability_status, Shapes::ShapeRef.new(shape: DashboardBehavior, location_name: "AvailabilityStatus"))
|
1482
1491
|
ExportToCSVOption.struct_class = Types::ExportToCSVOption
|
1483
1492
|
|
1493
|
+
FieldFolder.add_member(:description, Shapes::ShapeRef.new(shape: FieldFolderDescription, location_name: "description"))
|
1494
|
+
FieldFolder.add_member(:columns, Shapes::ShapeRef.new(shape: FolderColumnList, location_name: "columns"))
|
1495
|
+
FieldFolder.struct_class = Types::FieldFolder
|
1496
|
+
|
1497
|
+
FieldFolderMap.key = Shapes::ShapeRef.new(shape: FieldFolderPath)
|
1498
|
+
FieldFolderMap.value = Shapes::ShapeRef.new(shape: FieldFolder)
|
1499
|
+
|
1484
1500
|
FilterOperation.add_member(:condition_expression, Shapes::ShapeRef.new(shape: Expression, required: true, location_name: "ConditionExpression"))
|
1485
1501
|
FilterOperation.struct_class = Types::FilterOperation
|
1486
1502
|
|
1503
|
+
FolderColumnList.member = Shapes::ShapeRef.new(shape: String)
|
1504
|
+
|
1487
1505
|
GeoSpatialColumnGroup.add_member(:name, Shapes::ShapeRef.new(shape: ColumnGroupName, required: true, location_name: "Name"))
|
1488
1506
|
GeoSpatialColumnGroup.add_member(:country_code, Shapes::ShapeRef.new(shape: GeoSpatialCountryCode, required: true, location_name: "CountryCode"))
|
1489
1507
|
GeoSpatialColumnGroup.add_member(:columns, Shapes::ShapeRef.new(shape: ColumnList, required: true, location_name: "Columns"))
|
@@ -1601,10 +1619,15 @@ module Aws::QuickSight
|
|
1601
1619
|
|
1602
1620
|
JoinInstruction.add_member(:left_operand, Shapes::ShapeRef.new(shape: LogicalTableId, required: true, location_name: "LeftOperand"))
|
1603
1621
|
JoinInstruction.add_member(:right_operand, Shapes::ShapeRef.new(shape: LogicalTableId, required: true, location_name: "RightOperand"))
|
1622
|
+
JoinInstruction.add_member(:left_join_key_properties, Shapes::ShapeRef.new(shape: JoinKeyProperties, location_name: "LeftJoinKeyProperties"))
|
1623
|
+
JoinInstruction.add_member(:right_join_key_properties, Shapes::ShapeRef.new(shape: JoinKeyProperties, location_name: "RightJoinKeyProperties"))
|
1604
1624
|
JoinInstruction.add_member(:type, Shapes::ShapeRef.new(shape: JoinType, required: true, location_name: "Type"))
|
1605
1625
|
JoinInstruction.add_member(:on_clause, Shapes::ShapeRef.new(shape: OnClause, required: true, location_name: "OnClause"))
|
1606
1626
|
JoinInstruction.struct_class = Types::JoinInstruction
|
1607
1627
|
|
1628
|
+
JoinKeyProperties.add_member(:unique_key, Shapes::ShapeRef.new(shape: Boolean, location_name: "UniqueKey", metadata: {"box"=>true}))
|
1629
|
+
JoinKeyProperties.struct_class = Types::JoinKeyProperties
|
1630
|
+
|
1608
1631
|
LimitExceededException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
1609
1632
|
LimitExceededException.add_member(:resource_type, Shapes::ShapeRef.new(shape: ExceptionResourceType, location_name: "ResourceType"))
|
1610
1633
|
LimitExceededException.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
|
@@ -1972,6 +1995,7 @@ module Aws::QuickSight
|
|
1972
1995
|
RegisterUserResponse.struct_class = Types::RegisterUserResponse
|
1973
1996
|
|
1974
1997
|
RelationalTable.add_member(:data_source_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "DataSourceArn"))
|
1998
|
+
RelationalTable.add_member(:catalog, Shapes::ShapeRef.new(shape: RelationalTableCatalog, location_name: "Catalog"))
|
1975
1999
|
RelationalTable.add_member(:schema, Shapes::ShapeRef.new(shape: RelationalTableSchema, location_name: "Schema"))
|
1976
2000
|
RelationalTable.add_member(:name, Shapes::ShapeRef.new(shape: RelationalTableName, required: true, location_name: "Name"))
|
1977
2001
|
RelationalTable.add_member(:input_columns, Shapes::ShapeRef.new(shape: InputColumnList, required: true, location_name: "InputColumns"))
|
@@ -2413,6 +2437,7 @@ module Aws::QuickSight
|
|
2413
2437
|
UpdateDataSetRequest.add_member(:logical_table_map, Shapes::ShapeRef.new(shape: LogicalTableMap, location_name: "LogicalTableMap"))
|
2414
2438
|
UpdateDataSetRequest.add_member(:import_mode, Shapes::ShapeRef.new(shape: DataSetImportMode, required: true, location_name: "ImportMode"))
|
2415
2439
|
UpdateDataSetRequest.add_member(:column_groups, Shapes::ShapeRef.new(shape: ColumnGroupList, location_name: "ColumnGroups"))
|
2440
|
+
UpdateDataSetRequest.add_member(:field_folders, Shapes::ShapeRef.new(shape: FieldFolderMap, location_name: "FieldFolders"))
|
2416
2441
|
UpdateDataSetRequest.add_member(:row_level_permission_data_set, Shapes::ShapeRef.new(shape: RowLevelPermissionDataSet, location_name: "RowLevelPermissionDataSet"))
|
2417
2442
|
UpdateDataSetRequest.add_member(:column_level_permission_rules, Shapes::ShapeRef.new(shape: ColumnLevelPermissionRuleList, location_name: "ColumnLevelPermissionRules"))
|
2418
2443
|
UpdateDataSetRequest.struct_class = Types::UpdateDataSetRequest
|
@@ -3693,6 +3718,12 @@ module Aws::QuickSight
|
|
3693
3718
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
3694
3719
|
o.errors << Shapes::ShapeRef.new(shape: UnsupportedUserEditionException)
|
3695
3720
|
o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
|
3721
|
+
o[:pager] = Aws::Pager.new(
|
3722
|
+
limit_key: "max_results",
|
3723
|
+
tokens: {
|
3724
|
+
"next_token" => "next_token"
|
3725
|
+
}
|
3726
|
+
)
|
3696
3727
|
end)
|
3697
3728
|
|
3698
3729
|
api.add_operation(:list_themes, Seahorse::Model::Operation.new.tap do |o|
|
@@ -3708,6 +3739,12 @@ module Aws::QuickSight
|
|
3708
3739
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
3709
3740
|
o.errors << Shapes::ShapeRef.new(shape: UnsupportedUserEditionException)
|
3710
3741
|
o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
|
3742
|
+
o[:pager] = Aws::Pager.new(
|
3743
|
+
limit_key: "max_results",
|
3744
|
+
tokens: {
|
3745
|
+
"next_token" => "next_token"
|
3746
|
+
}
|
3747
|
+
)
|
3711
3748
|
end)
|
3712
3749
|
|
3713
3750
|
api.add_operation(:list_user_groups, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1320,6 +1320,7 @@ module Aws::QuickSight
|
|
1320
1320
|
# "PhysicalTableId" => {
|
1321
1321
|
# relational_table: {
|
1322
1322
|
# data_source_arn: "Arn", # required
|
1323
|
+
# catalog: "RelationalTableCatalog",
|
1323
1324
|
# schema: "RelationalTableSchema",
|
1324
1325
|
# name: "RelationalTableName", # required
|
1325
1326
|
# input_columns: [ # required
|
@@ -1404,6 +1405,12 @@ module Aws::QuickSight
|
|
1404
1405
|
# join_instruction: {
|
1405
1406
|
# left_operand: "LogicalTableId", # required
|
1406
1407
|
# right_operand: "LogicalTableId", # required
|
1408
|
+
# left_join_key_properties: {
|
1409
|
+
# unique_key: false,
|
1410
|
+
# },
|
1411
|
+
# right_join_key_properties: {
|
1412
|
+
# unique_key: false,
|
1413
|
+
# },
|
1407
1414
|
# type: "INNER", # required, accepts INNER, OUTER, LEFT, RIGHT
|
1408
1415
|
# on_clause: "OnClause", # required
|
1409
1416
|
# },
|
@@ -1421,6 +1428,12 @@ module Aws::QuickSight
|
|
1421
1428
|
# },
|
1422
1429
|
# },
|
1423
1430
|
# ],
|
1431
|
+
# field_folders: {
|
1432
|
+
# "FieldFolderPath" => {
|
1433
|
+
# description: "FieldFolderDescription",
|
1434
|
+
# columns: ["String"],
|
1435
|
+
# },
|
1436
|
+
# },
|
1424
1437
|
# permissions: [
|
1425
1438
|
# {
|
1426
1439
|
# principal: "Principal", # required
|
@@ -1478,6 +1491,11 @@ module Aws::QuickSight
|
|
1478
1491
|
# features. Currently, only geospatial hierarchy is supported.
|
1479
1492
|
# @return [Array<Types::ColumnGroup>]
|
1480
1493
|
#
|
1494
|
+
# @!attribute [rw] field_folders
|
1495
|
+
# The folder that contains fields and nested subfolders for your
|
1496
|
+
# dataset.
|
1497
|
+
# @return [Hash<String,Types::FieldFolder>]
|
1498
|
+
#
|
1481
1499
|
# @!attribute [rw] permissions
|
1482
1500
|
# A list of resource permissions on the dataset.
|
1483
1501
|
# @return [Array<Types::ResourcePermission>]
|
@@ -1506,6 +1524,7 @@ module Aws::QuickSight
|
|
1506
1524
|
:logical_table_map,
|
1507
1525
|
:import_mode,
|
1508
1526
|
:column_groups,
|
1527
|
+
:field_folders,
|
1509
1528
|
:permissions,
|
1510
1529
|
:row_level_permission_data_set,
|
1511
1530
|
:column_level_permission_rules,
|
@@ -3290,7 +3309,8 @@ module Aws::QuickSight
|
|
3290
3309
|
# @return [Array<Types::OutputColumn>]
|
3291
3310
|
#
|
3292
3311
|
# @!attribute [rw] import_mode
|
3293
|
-
#
|
3312
|
+
# A value that indicates whether you want to import the data into
|
3313
|
+
# SPICE.
|
3294
3314
|
# @return [String]
|
3295
3315
|
#
|
3296
3316
|
# @!attribute [rw] consumed_spice_capacity_in_bytes
|
@@ -3303,6 +3323,11 @@ module Aws::QuickSight
|
|
3303
3323
|
# features. Currently, only geospatial hierarchy is supported.
|
3304
3324
|
# @return [Array<Types::ColumnGroup>]
|
3305
3325
|
#
|
3326
|
+
# @!attribute [rw] field_folders
|
3327
|
+
# The folder that contains fields and nested subfolders for your
|
3328
|
+
# dataset.
|
3329
|
+
# @return [Hash<String,Types::FieldFolder>]
|
3330
|
+
#
|
3306
3331
|
# @!attribute [rw] row_level_permission_data_set
|
3307
3332
|
# The row-level security configuration for the dataset.
|
3308
3333
|
# @return [Types::RowLevelPermissionDataSet]
|
@@ -3325,6 +3350,7 @@ module Aws::QuickSight
|
|
3325
3350
|
:import_mode,
|
3326
3351
|
:consumed_spice_capacity_in_bytes,
|
3327
3352
|
:column_groups,
|
3353
|
+
:field_folders,
|
3328
3354
|
:row_level_permission_data_set,
|
3329
3355
|
:column_level_permission_rules)
|
3330
3356
|
SENSITIVE = []
|
@@ -3419,7 +3445,8 @@ module Aws::QuickSight
|
|
3419
3445
|
# @return [Time]
|
3420
3446
|
#
|
3421
3447
|
# @!attribute [rw] import_mode
|
3422
|
-
#
|
3448
|
+
# A value that indicates whether you want to import the data into
|
3449
|
+
# SPICE.
|
3423
3450
|
# @return [String]
|
3424
3451
|
#
|
3425
3452
|
# @!attribute [rw] row_level_permission_data_set
|
@@ -3427,7 +3454,8 @@ module Aws::QuickSight
|
|
3427
3454
|
# @return [Types::RowLevelPermissionDataSet]
|
3428
3455
|
#
|
3429
3456
|
# @!attribute [rw] column_level_permission_rules_applied
|
3430
|
-
#
|
3457
|
+
# A value that indicates if the dataset has column level permission
|
3458
|
+
# configured.
|
3431
3459
|
# @return [Boolean]
|
3432
3460
|
#
|
3433
3461
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DataSetSummary AWS API Documentation
|
@@ -6044,6 +6072,34 @@ module Aws::QuickSight
|
|
6044
6072
|
include Aws::Structure
|
6045
6073
|
end
|
6046
6074
|
|
6075
|
+
# A FieldFolder element is a folder that contains fields and nested
|
6076
|
+
# subfolders.
|
6077
|
+
#
|
6078
|
+
# @note When making an API call, you may pass FieldFolder
|
6079
|
+
# data as a hash:
|
6080
|
+
#
|
6081
|
+
# {
|
6082
|
+
# description: "FieldFolderDescription",
|
6083
|
+
# columns: ["String"],
|
6084
|
+
# }
|
6085
|
+
#
|
6086
|
+
# @!attribute [rw] description
|
6087
|
+
# The description for a field folder.
|
6088
|
+
# @return [String]
|
6089
|
+
#
|
6090
|
+
# @!attribute [rw] columns
|
6091
|
+
# A folder has a list of columns. A column can only be in one folder.
|
6092
|
+
# @return [Array<String>]
|
6093
|
+
#
|
6094
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/FieldFolder AWS API Documentation
|
6095
|
+
#
|
6096
|
+
class FieldFolder < Struct.new(
|
6097
|
+
:description,
|
6098
|
+
:columns)
|
6099
|
+
SENSITIVE = []
|
6100
|
+
include Aws::Structure
|
6101
|
+
end
|
6102
|
+
|
6047
6103
|
# A transform operation that filters rows based on a condition.
|
6048
6104
|
#
|
6049
6105
|
# @note When making an API call, you may pass FilterOperation
|
@@ -6099,8 +6155,6 @@ module Aws::QuickSight
|
|
6099
6155
|
include Aws::Structure
|
6100
6156
|
end
|
6101
6157
|
|
6102
|
-
# Parameter input for the `GetDashboardEmbedUrl` operation.
|
6103
|
-
#
|
6104
6158
|
# @note When making an API call, you may pass GetDashboardEmbedUrlRequest
|
6105
6159
|
# data as a hash:
|
6106
6160
|
#
|
@@ -6123,7 +6177,8 @@ module Aws::QuickSight
|
|
6123
6177
|
# @return [String]
|
6124
6178
|
#
|
6125
6179
|
# @!attribute [rw] dashboard_id
|
6126
|
-
# The ID for the dashboard, also added to the
|
6180
|
+
# The ID for the dashboard, also added to the AWS Identity and Access
|
6181
|
+
# Management (IAM) policy.
|
6127
6182
|
# @return [String]
|
6128
6183
|
#
|
6129
6184
|
# @!attribute [rw] identity_type
|
@@ -6150,10 +6205,10 @@ module Aws::QuickSight
|
|
6150
6205
|
# dashboard. Persistence applies to the sheet and the parameter
|
6151
6206
|
# settings. These are control settings that the dashboard subscriber
|
6152
6207
|
# (QuickSight reader) chooses while viewing the dashboard. If this is
|
6153
|
-
# set to `TRUE`, the settings are the same when the
|
6154
|
-
#
|
6155
|
-
#
|
6156
|
-
#
|
6208
|
+
# set to `TRUE`, the settings are the same when the subscriber reopens
|
6209
|
+
# the same dashboard URL. The state is stored in QuickSight, not in a
|
6210
|
+
# browser cookie. If this is set to FALSE, the state of the user
|
6211
|
+
# session is not persisted. The default is `FALSE`.
|
6157
6212
|
# @return [Boolean]
|
6158
6213
|
#
|
6159
6214
|
# @!attribute [rw] user_arn
|
@@ -6181,11 +6236,11 @@ module Aws::QuickSight
|
|
6181
6236
|
# @return [String]
|
6182
6237
|
#
|
6183
6238
|
# @!attribute [rw] additional_dashboard_ids
|
6184
|
-
# A list of one or more dashboard
|
6185
|
-
# session that includes anonymous
|
6186
|
-
# be set to ANONYMOUS for this to work, because other
|
6187
|
-
# types authenticate as QuickSight users. For example, if you
|
6188
|
-
# "`--dashboard-id dash_id1 --dashboard-id dash_id2 dash_id3
|
6239
|
+
# A list of one or more dashboard IDs that you want to add to a
|
6240
|
+
# session that includes anonymous users. The `IdentityType` parameter
|
6241
|
+
# must be set to `ANONYMOUS` for this to work, because other identity
|
6242
|
+
# types authenticate as QuickSight or IAM users. For example, if you
|
6243
|
+
# set "`--dashboard-id dash_id1 --dashboard-id dash_id2 dash_id3
|
6189
6244
|
# identity-type ANONYMOUS`", the session can access all three
|
6190
6245
|
# dashboards.
|
6191
6246
|
# @return [Array<String>]
|
@@ -6284,11 +6339,11 @@ module Aws::QuickSight
|
|
6284
6339
|
#
|
6285
6340
|
# 2. Invited nonfederated users
|
6286
6341
|
#
|
6287
|
-
# 3.
|
6288
|
-
#
|
6289
|
-
# federation
|
6342
|
+
# 3. AWS Identity and Access Management (IAM) users and IAM
|
6343
|
+
# role-based sessions authenticated through Federated Single
|
6344
|
+
# Sign-On using SAML, OpenID Connect, or IAM federation
|
6290
6345
|
#
|
6291
|
-
# Omit this parameter for users in the third group
|
6346
|
+
# Omit this parameter for users in the third group, IAM users and IAM
|
6292
6347
|
# role-based sessions.
|
6293
6348
|
# @return [String]
|
6294
6349
|
#
|
@@ -6672,7 +6727,7 @@ module Aws::QuickSight
|
|
6672
6727
|
include Aws::Structure
|
6673
6728
|
end
|
6674
6729
|
|
6675
|
-
#
|
6730
|
+
# The instructions associated with a join.
|
6676
6731
|
#
|
6677
6732
|
# @note When making an API call, you may pass JoinInstruction
|
6678
6733
|
# data as a hash:
|
@@ -6680,24 +6735,38 @@ module Aws::QuickSight
|
|
6680
6735
|
# {
|
6681
6736
|
# left_operand: "LogicalTableId", # required
|
6682
6737
|
# right_operand: "LogicalTableId", # required
|
6738
|
+
# left_join_key_properties: {
|
6739
|
+
# unique_key: false,
|
6740
|
+
# },
|
6741
|
+
# right_join_key_properties: {
|
6742
|
+
# unique_key: false,
|
6743
|
+
# },
|
6683
6744
|
# type: "INNER", # required, accepts INNER, OUTER, LEFT, RIGHT
|
6684
6745
|
# on_clause: "OnClause", # required
|
6685
6746
|
# }
|
6686
6747
|
#
|
6687
6748
|
# @!attribute [rw] left_operand
|
6688
|
-
#
|
6749
|
+
# The operand on the left side of a join.
|
6689
6750
|
# @return [String]
|
6690
6751
|
#
|
6691
6752
|
# @!attribute [rw] right_operand
|
6692
|
-
#
|
6753
|
+
# The operand on the right side of a join.
|
6693
6754
|
# @return [String]
|
6694
6755
|
#
|
6756
|
+
# @!attribute [rw] left_join_key_properties
|
6757
|
+
# Join key properties of the left operand.
|
6758
|
+
# @return [Types::JoinKeyProperties]
|
6759
|
+
#
|
6760
|
+
# @!attribute [rw] right_join_key_properties
|
6761
|
+
# Join key properties of the right operand.
|
6762
|
+
# @return [Types::JoinKeyProperties]
|
6763
|
+
#
|
6695
6764
|
# @!attribute [rw] type
|
6696
|
-
#
|
6765
|
+
# The type of join that it is.
|
6697
6766
|
# @return [String]
|
6698
6767
|
#
|
6699
6768
|
# @!attribute [rw] on_clause
|
6700
|
-
#
|
6769
|
+
# The join instructions provided in the `ON` clause of a join.
|
6701
6770
|
# @return [String]
|
6702
6771
|
#
|
6703
6772
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/JoinInstruction AWS API Documentation
|
@@ -6705,12 +6774,37 @@ module Aws::QuickSight
|
|
6705
6774
|
class JoinInstruction < Struct.new(
|
6706
6775
|
:left_operand,
|
6707
6776
|
:right_operand,
|
6777
|
+
:left_join_key_properties,
|
6778
|
+
:right_join_key_properties,
|
6708
6779
|
:type,
|
6709
6780
|
:on_clause)
|
6710
6781
|
SENSITIVE = []
|
6711
6782
|
include Aws::Structure
|
6712
6783
|
end
|
6713
6784
|
|
6785
|
+
# Properties associated with the columns participating in a join.
|
6786
|
+
#
|
6787
|
+
# @note When making an API call, you may pass JoinKeyProperties
|
6788
|
+
# data as a hash:
|
6789
|
+
#
|
6790
|
+
# {
|
6791
|
+
# unique_key: false,
|
6792
|
+
# }
|
6793
|
+
#
|
6794
|
+
# @!attribute [rw] unique_key
|
6795
|
+
# A value that indicates that a row in a table is uniquely identified
|
6796
|
+
# by the columns in a join key. This is used by QuickSight to optimize
|
6797
|
+
# query performance.
|
6798
|
+
# @return [Boolean]
|
6799
|
+
#
|
6800
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/JoinKeyProperties AWS API Documentation
|
6801
|
+
#
|
6802
|
+
class JoinKeyProperties < Struct.new(
|
6803
|
+
:unique_key)
|
6804
|
+
SENSITIVE = []
|
6805
|
+
include Aws::Structure
|
6806
|
+
end
|
6807
|
+
|
6714
6808
|
# A limit is exceeded.
|
6715
6809
|
#
|
6716
6810
|
# @!attribute [rw] message
|
@@ -8094,6 +8188,12 @@ module Aws::QuickSight
|
|
8094
8188
|
# join_instruction: {
|
8095
8189
|
# left_operand: "LogicalTableId", # required
|
8096
8190
|
# right_operand: "LogicalTableId", # required
|
8191
|
+
# left_join_key_properties: {
|
8192
|
+
# unique_key: false,
|
8193
|
+
# },
|
8194
|
+
# right_join_key_properties: {
|
8195
|
+
# unique_key: false,
|
8196
|
+
# },
|
8097
8197
|
# type: "INNER", # required, accepts INNER, OUTER, LEFT, RIGHT
|
8098
8198
|
# on_clause: "OnClause", # required
|
8099
8199
|
# },
|
@@ -8134,6 +8234,12 @@ module Aws::QuickSight
|
|
8134
8234
|
# join_instruction: {
|
8135
8235
|
# left_operand: "LogicalTableId", # required
|
8136
8236
|
# right_operand: "LogicalTableId", # required
|
8237
|
+
# left_join_key_properties: {
|
8238
|
+
# unique_key: false,
|
8239
|
+
# },
|
8240
|
+
# right_join_key_properties: {
|
8241
|
+
# unique_key: false,
|
8242
|
+
# },
|
8137
8243
|
# type: "INNER", # required, accepts INNER, OUTER, LEFT, RIGHT
|
8138
8244
|
# on_clause: "OnClause", # required
|
8139
8245
|
# },
|
@@ -8457,6 +8563,7 @@ module Aws::QuickSight
|
|
8457
8563
|
# {
|
8458
8564
|
# relational_table: {
|
8459
8565
|
# data_source_arn: "Arn", # required
|
8566
|
+
# catalog: "RelationalTableCatalog",
|
8460
8567
|
# schema: "RelationalTableSchema",
|
8461
8568
|
# name: "RelationalTableName", # required
|
8462
8569
|
# input_columns: [ # required
|
@@ -8798,7 +8905,7 @@ module Aws::QuickSight
|
|
8798
8905
|
#
|
8799
8906
|
#
|
8800
8907
|
#
|
8801
|
-
# [1]: https://
|
8908
|
+
# [1]: https://docs.aws.amazon.com/cli/latest/reference/sts/assume-role.html
|
8802
8909
|
# @return [String]
|
8803
8910
|
#
|
8804
8911
|
# @!attribute [rw] aws_account_id
|
@@ -8901,6 +9008,7 @@ module Aws::QuickSight
|
|
8901
9008
|
#
|
8902
9009
|
# {
|
8903
9010
|
# data_source_arn: "Arn", # required
|
9011
|
+
# catalog: "RelationalTableCatalog",
|
8904
9012
|
# schema: "RelationalTableSchema",
|
8905
9013
|
# name: "RelationalTableName", # required
|
8906
9014
|
# input_columns: [ # required
|
@@ -8915,6 +9023,10 @@ module Aws::QuickSight
|
|
8915
9023
|
# The Amazon Resource Name (ARN) for the data source.
|
8916
9024
|
# @return [String]
|
8917
9025
|
#
|
9026
|
+
# @!attribute [rw] catalog
|
9027
|
+
# The catalog associated with a table.
|
9028
|
+
# @return [String]
|
9029
|
+
#
|
8918
9030
|
# @!attribute [rw] schema
|
8919
9031
|
# The schema name. This name applies to certain relational database
|
8920
9032
|
# engines.
|
@@ -8932,6 +9044,7 @@ module Aws::QuickSight
|
|
8932
9044
|
#
|
8933
9045
|
class RelationalTable < Struct.new(
|
8934
9046
|
:data_source_arn,
|
9047
|
+
:catalog,
|
8935
9048
|
:schema,
|
8936
9049
|
:name,
|
8937
9050
|
:input_columns)
|
@@ -10731,13 +10844,12 @@ module Aws::QuickSight
|
|
10731
10844
|
|
10732
10845
|
# This error indicates that you are calling an embedding operation in
|
10733
10846
|
# Amazon QuickSight without the required pricing plan on your AWS
|
10734
|
-
# account. Before you can use anonymous
|
10735
|
-
# administrator needs to add capacity pricing to QuickSight.
|
10736
|
-
# this on the **Manage QuickSight** page.
|
10847
|
+
# account. Before you can use embedding for anonymous users, a
|
10848
|
+
# QuickSight administrator needs to add capacity pricing to QuickSight.
|
10849
|
+
# You can do this on the **Manage QuickSight** page.
|
10737
10850
|
#
|
10738
|
-
# After capacity pricing is added, you can
|
10739
|
-
#
|
10740
|
-
# `--identity-type ANONYMOUS` option.
|
10851
|
+
# After capacity pricing is added, you can use the GetDashboardEmbedUrl
|
10852
|
+
# API operation with the `--identity-type ANONYMOUS` option.
|
10741
10853
|
#
|
10742
10854
|
# @!attribute [rw] message
|
10743
10855
|
# @return [String]
|
@@ -11562,6 +11674,7 @@ module Aws::QuickSight
|
|
11562
11674
|
# "PhysicalTableId" => {
|
11563
11675
|
# relational_table: {
|
11564
11676
|
# data_source_arn: "Arn", # required
|
11677
|
+
# catalog: "RelationalTableCatalog",
|
11565
11678
|
# schema: "RelationalTableSchema",
|
11566
11679
|
# name: "RelationalTableName", # required
|
11567
11680
|
# input_columns: [ # required
|
@@ -11646,6 +11759,12 @@ module Aws::QuickSight
|
|
11646
11759
|
# join_instruction: {
|
11647
11760
|
# left_operand: "LogicalTableId", # required
|
11648
11761
|
# right_operand: "LogicalTableId", # required
|
11762
|
+
# left_join_key_properties: {
|
11763
|
+
# unique_key: false,
|
11764
|
+
# },
|
11765
|
+
# right_join_key_properties: {
|
11766
|
+
# unique_key: false,
|
11767
|
+
# },
|
11649
11768
|
# type: "INNER", # required, accepts INNER, OUTER, LEFT, RIGHT
|
11650
11769
|
# on_clause: "OnClause", # required
|
11651
11770
|
# },
|
@@ -11663,6 +11782,12 @@ module Aws::QuickSight
|
|
11663
11782
|
# },
|
11664
11783
|
# },
|
11665
11784
|
# ],
|
11785
|
+
# field_folders: {
|
11786
|
+
# "FieldFolderPath" => {
|
11787
|
+
# description: "FieldFolderDescription",
|
11788
|
+
# columns: ["String"],
|
11789
|
+
# },
|
11790
|
+
# },
|
11666
11791
|
# row_level_permission_data_set: {
|
11667
11792
|
# namespace: "Namespace",
|
11668
11793
|
# arn: "Arn", # required
|
@@ -11708,6 +11833,11 @@ module Aws::QuickSight
|
|
11708
11833
|
# features. Currently, only geospatial hierarchy is supported.
|
11709
11834
|
# @return [Array<Types::ColumnGroup>]
|
11710
11835
|
#
|
11836
|
+
# @!attribute [rw] field_folders
|
11837
|
+
# The folder that contains fields and nested subfolders for your
|
11838
|
+
# dataset.
|
11839
|
+
# @return [Hash<String,Types::FieldFolder>]
|
11840
|
+
#
|
11711
11841
|
# @!attribute [rw] row_level_permission_data_set
|
11712
11842
|
# The row-level security configuration for the data you want to
|
11713
11843
|
# create.
|
@@ -11727,6 +11857,7 @@ module Aws::QuickSight
|
|
11727
11857
|
:logical_table_map,
|
11728
11858
|
:import_mode,
|
11729
11859
|
:column_groups,
|
11860
|
+
:field_folders,
|
11730
11861
|
:row_level_permission_data_set,
|
11731
11862
|
:column_level_permission_rules)
|
11732
11863
|
SENSITIVE = []
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-quicksight
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.42.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-02-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.112.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.112.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|