aws-sdk-quicksight 1.89.0 → 1.91.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 +18 -9
- data/lib/aws-sdk-quicksight/client_api.rb +32 -0
- data/lib/aws-sdk-quicksight/types.rb +125 -3
- data/lib/aws-sdk-quicksight.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6fcceddd753f66f49faa3e786975f6a0b9f91b116f2727ad4f0aa5f273221165
|
|
4
|
+
data.tar.gz: d86d0628ed56f64f887c47b34681a621c66fa68801dc83555e96fbe9a83388b6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c029fa962bce876f8ff9de17493e937b9305c227c199ca6b631def0bc85ac93eec0b06e4e6fec07d83be16d3c5dc0cfbdb99bbaf40ecf712027756a62f541718
|
|
7
|
+
data.tar.gz: c54677735561dee5e6f42565aa8fa32b8b7af902c537aaf6827d9542b396ef1e20d7371eb7d9acf20751fa77979467c6241851c96d9f7a9d896a60b29f8fdc56
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.91.0 (2023-09-25)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Added ability to tag users upon creation.
|
|
8
|
+
|
|
9
|
+
1.90.0 (2023-09-11)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - This release launches new updates to QuickSight KPI visuals - support for sparklines, new templated layout and new targets for conditional formatting rules.
|
|
13
|
+
|
|
4
14
|
1.89.0 (2023-08-24)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.91.0
|
|
@@ -1645,14 +1645,14 @@ module Aws::QuickSight
|
|
|
1645
1645
|
# aws_account_id: "AwsAccountId", # required
|
|
1646
1646
|
# folder_id: "RestrictiveResourceId", # required
|
|
1647
1647
|
# member_id: "RestrictiveResourceId", # required
|
|
1648
|
-
# member_type: "DASHBOARD", # required, accepts DASHBOARD, ANALYSIS, DATASET
|
|
1648
|
+
# member_type: "DASHBOARD", # required, accepts DASHBOARD, ANALYSIS, DATASET, TOPIC
|
|
1649
1649
|
# })
|
|
1650
1650
|
#
|
|
1651
1651
|
# @example Response structure
|
|
1652
1652
|
#
|
|
1653
1653
|
# resp.status #=> Integer
|
|
1654
1654
|
# resp.folder_member.member_id #=> String
|
|
1655
|
-
# resp.folder_member.member_type #=> String, one of "DASHBOARD", "ANALYSIS", "DATASET"
|
|
1655
|
+
# resp.folder_member.member_type #=> String, one of "DASHBOARD", "ANALYSIS", "DATASET", "TOPIC"
|
|
1656
1656
|
# resp.request_id #=> String
|
|
1657
1657
|
#
|
|
1658
1658
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateFolderMembership AWS API Documentation
|
|
@@ -3150,7 +3150,7 @@ module Aws::QuickSight
|
|
|
3150
3150
|
# aws_account_id: "AwsAccountId", # required
|
|
3151
3151
|
# folder_id: "RestrictiveResourceId", # required
|
|
3152
3152
|
# member_id: "RestrictiveResourceId", # required
|
|
3153
|
-
# member_type: "DASHBOARD", # required, accepts DASHBOARD, ANALYSIS, DATASET
|
|
3153
|
+
# member_type: "DASHBOARD", # required, accepts DASHBOARD, ANALYSIS, DATASET, TOPIC
|
|
3154
3154
|
# })
|
|
3155
3155
|
#
|
|
3156
3156
|
# @example Response structure
|
|
@@ -8831,6 +8831,9 @@ module Aws::QuickSight
|
|
|
8831
8831
|
# @option params [String] :external_login_id
|
|
8832
8832
|
# The identity ID for a user in the external login provider.
|
|
8833
8833
|
#
|
|
8834
|
+
# @option params [Array<Types::Tag>] :tags
|
|
8835
|
+
# The tags to associate with the user.
|
|
8836
|
+
#
|
|
8834
8837
|
# @return [Types::RegisterUserResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
8835
8838
|
#
|
|
8836
8839
|
# * {Types::RegisterUserResponse#user #user} => Types::User
|
|
@@ -8853,6 +8856,12 @@ module Aws::QuickSight
|
|
|
8853
8856
|
# external_login_federation_provider_type: "String",
|
|
8854
8857
|
# custom_federation_provider_url: "String",
|
|
8855
8858
|
# external_login_id: "String",
|
|
8859
|
+
# tags: [
|
|
8860
|
+
# {
|
|
8861
|
+
# key: "TagKey", # required
|
|
8862
|
+
# value: "TagValue", # required
|
|
8863
|
+
# },
|
|
8864
|
+
# ],
|
|
8856
8865
|
# })
|
|
8857
8866
|
#
|
|
8858
8867
|
# @example Response structure
|
|
@@ -9852,15 +9861,15 @@ module Aws::QuickSight
|
|
|
9852
9861
|
#
|
|
9853
9862
|
# You can associate as many as 50 tags with a resource. Amazon
|
|
9854
9863
|
# QuickSight supports tagging on data set, data source, dashboard,
|
|
9855
|
-
# template, and
|
|
9864
|
+
# template, topic, and user.
|
|
9856
9865
|
#
|
|
9857
9866
|
# Tagging for Amazon QuickSight works in a similar way to tagging for
|
|
9858
9867
|
# other Amazon Web Services services, except for the following:
|
|
9859
9868
|
#
|
|
9860
|
-
# *
|
|
9861
|
-
#
|
|
9862
|
-
#
|
|
9863
|
-
#
|
|
9869
|
+
# * Tags are used to track costs for users in Amazon QuickSight. You
|
|
9870
|
+
# can't tag other resources that Amazon QuickSight costs are based
|
|
9871
|
+
# on, such as storage capacoty (SPICE), session usage, alert
|
|
9872
|
+
# consumption, or reporting units.
|
|
9864
9873
|
#
|
|
9865
9874
|
# * Amazon QuickSight doesn't currently support the tag editor for
|
|
9866
9875
|
# Resource Groups.
|
|
@@ -12529,7 +12538,7 @@ module Aws::QuickSight
|
|
|
12529
12538
|
params: params,
|
|
12530
12539
|
config: config)
|
|
12531
12540
|
context[:gem_name] = 'aws-sdk-quicksight'
|
|
12532
|
-
context[:gem_version] = '1.
|
|
12541
|
+
context[:gem_version] = '1.91.0'
|
|
12533
12542
|
Seahorse::Client::Request.new(handlers, context)
|
|
12534
12543
|
end
|
|
12535
12544
|
|
|
@@ -853,6 +853,8 @@ module Aws::QuickSight
|
|
|
853
853
|
JoinInstruction = Shapes::StructureShape.new(name: 'JoinInstruction')
|
|
854
854
|
JoinKeyProperties = Shapes::StructureShape.new(name: 'JoinKeyProperties')
|
|
855
855
|
JoinType = Shapes::StringShape.new(name: 'JoinType')
|
|
856
|
+
KPIActualValueConditionalFormatting = Shapes::StructureShape.new(name: 'KPIActualValueConditionalFormatting')
|
|
857
|
+
KPIComparisonValueConditionalFormatting = Shapes::StructureShape.new(name: 'KPIComparisonValueConditionalFormatting')
|
|
856
858
|
KPIConditionalFormatting = Shapes::StructureShape.new(name: 'KPIConditionalFormatting')
|
|
857
859
|
KPIConditionalFormattingOption = Shapes::StructureShape.new(name: 'KPIConditionalFormattingOption')
|
|
858
860
|
KPIConditionalFormattingOptionList = Shapes::ListShape.new(name: 'KPIConditionalFormattingOptionList')
|
|
@@ -862,7 +864,12 @@ module Aws::QuickSight
|
|
|
862
864
|
KPIPrimaryValueConditionalFormatting = Shapes::StructureShape.new(name: 'KPIPrimaryValueConditionalFormatting')
|
|
863
865
|
KPIProgressBarConditionalFormatting = Shapes::StructureShape.new(name: 'KPIProgressBarConditionalFormatting')
|
|
864
866
|
KPISortConfiguration = Shapes::StructureShape.new(name: 'KPISortConfiguration')
|
|
867
|
+
KPISparklineOptions = Shapes::StructureShape.new(name: 'KPISparklineOptions')
|
|
868
|
+
KPISparklineType = Shapes::StringShape.new(name: 'KPISparklineType')
|
|
865
869
|
KPIVisual = Shapes::StructureShape.new(name: 'KPIVisual')
|
|
870
|
+
KPIVisualLayoutOptions = Shapes::StructureShape.new(name: 'KPIVisualLayoutOptions')
|
|
871
|
+
KPIVisualStandardLayout = Shapes::StructureShape.new(name: 'KPIVisualStandardLayout')
|
|
872
|
+
KPIVisualStandardLayoutType = Shapes::StringShape.new(name: 'KPIVisualStandardLayoutType')
|
|
866
873
|
LabelOptions = Shapes::StructureShape.new(name: 'LabelOptions')
|
|
867
874
|
Latitude = Shapes::FloatShape.new(name: 'Latitude')
|
|
868
875
|
Layout = Shapes::StructureShape.new(name: 'Layout')
|
|
@@ -4966,11 +4973,21 @@ module Aws::QuickSight
|
|
|
4966
4973
|
JoinKeyProperties.add_member(:unique_key, Shapes::ShapeRef.new(shape: Boolean, location_name: "UniqueKey", metadata: {"box"=>true}))
|
|
4967
4974
|
JoinKeyProperties.struct_class = Types::JoinKeyProperties
|
|
4968
4975
|
|
|
4976
|
+
KPIActualValueConditionalFormatting.add_member(:text_color, Shapes::ShapeRef.new(shape: ConditionalFormattingColor, location_name: "TextColor"))
|
|
4977
|
+
KPIActualValueConditionalFormatting.add_member(:icon, Shapes::ShapeRef.new(shape: ConditionalFormattingIcon, location_name: "Icon"))
|
|
4978
|
+
KPIActualValueConditionalFormatting.struct_class = Types::KPIActualValueConditionalFormatting
|
|
4979
|
+
|
|
4980
|
+
KPIComparisonValueConditionalFormatting.add_member(:text_color, Shapes::ShapeRef.new(shape: ConditionalFormattingColor, location_name: "TextColor"))
|
|
4981
|
+
KPIComparisonValueConditionalFormatting.add_member(:icon, Shapes::ShapeRef.new(shape: ConditionalFormattingIcon, location_name: "Icon"))
|
|
4982
|
+
KPIComparisonValueConditionalFormatting.struct_class = Types::KPIComparisonValueConditionalFormatting
|
|
4983
|
+
|
|
4969
4984
|
KPIConditionalFormatting.add_member(:conditional_formatting_options, Shapes::ShapeRef.new(shape: KPIConditionalFormattingOptionList, location_name: "ConditionalFormattingOptions"))
|
|
4970
4985
|
KPIConditionalFormatting.struct_class = Types::KPIConditionalFormatting
|
|
4971
4986
|
|
|
4972
4987
|
KPIConditionalFormattingOption.add_member(:primary_value, Shapes::ShapeRef.new(shape: KPIPrimaryValueConditionalFormatting, location_name: "PrimaryValue"))
|
|
4973
4988
|
KPIConditionalFormattingOption.add_member(:progress_bar, Shapes::ShapeRef.new(shape: KPIProgressBarConditionalFormatting, location_name: "ProgressBar"))
|
|
4989
|
+
KPIConditionalFormattingOption.add_member(:actual_value, Shapes::ShapeRef.new(shape: KPIActualValueConditionalFormatting, location_name: "ActualValue"))
|
|
4990
|
+
KPIConditionalFormattingOption.add_member(:comparison_value, Shapes::ShapeRef.new(shape: KPIComparisonValueConditionalFormatting, location_name: "ComparisonValue"))
|
|
4974
4991
|
KPIConditionalFormattingOption.struct_class = Types::KPIConditionalFormattingOption
|
|
4975
4992
|
|
|
4976
4993
|
KPIConditionalFormattingOptionList.member = Shapes::ShapeRef.new(shape: KPIConditionalFormattingOption)
|
|
@@ -4992,6 +5009,8 @@ module Aws::QuickSight
|
|
|
4992
5009
|
KPIOptions.add_member(:primary_value_display_type, Shapes::ShapeRef.new(shape: PrimaryValueDisplayType, location_name: "PrimaryValueDisplayType"))
|
|
4993
5010
|
KPIOptions.add_member(:primary_value_font_configuration, Shapes::ShapeRef.new(shape: FontConfiguration, location_name: "PrimaryValueFontConfiguration"))
|
|
4994
5011
|
KPIOptions.add_member(:secondary_value_font_configuration, Shapes::ShapeRef.new(shape: FontConfiguration, location_name: "SecondaryValueFontConfiguration"))
|
|
5012
|
+
KPIOptions.add_member(:sparkline, Shapes::ShapeRef.new(shape: KPISparklineOptions, location_name: "Sparkline"))
|
|
5013
|
+
KPIOptions.add_member(:visual_layout_options, Shapes::ShapeRef.new(shape: KPIVisualLayoutOptions, location_name: "VisualLayoutOptions"))
|
|
4995
5014
|
KPIOptions.struct_class = Types::KPIOptions
|
|
4996
5015
|
|
|
4997
5016
|
KPIPrimaryValueConditionalFormatting.add_member(:text_color, Shapes::ShapeRef.new(shape: ConditionalFormattingColor, location_name: "TextColor"))
|
|
@@ -5004,6 +5023,12 @@ module Aws::QuickSight
|
|
|
5004
5023
|
KPISortConfiguration.add_member(:trend_group_sort, Shapes::ShapeRef.new(shape: FieldSortOptionsList, location_name: "TrendGroupSort"))
|
|
5005
5024
|
KPISortConfiguration.struct_class = Types::KPISortConfiguration
|
|
5006
5025
|
|
|
5026
|
+
KPISparklineOptions.add_member(:visibility, Shapes::ShapeRef.new(shape: Visibility, location_name: "Visibility"))
|
|
5027
|
+
KPISparklineOptions.add_member(:type, Shapes::ShapeRef.new(shape: KPISparklineType, required: true, location_name: "Type"))
|
|
5028
|
+
KPISparklineOptions.add_member(:color, Shapes::ShapeRef.new(shape: HexColor, location_name: "Color"))
|
|
5029
|
+
KPISparklineOptions.add_member(:tooltip_visibility, Shapes::ShapeRef.new(shape: Visibility, location_name: "TooltipVisibility"))
|
|
5030
|
+
KPISparklineOptions.struct_class = Types::KPISparklineOptions
|
|
5031
|
+
|
|
5007
5032
|
KPIVisual.add_member(:visual_id, Shapes::ShapeRef.new(shape: ShortRestrictiveResourceId, required: true, location_name: "VisualId"))
|
|
5008
5033
|
KPIVisual.add_member(:title, Shapes::ShapeRef.new(shape: VisualTitleLabelOptions, location_name: "Title"))
|
|
5009
5034
|
KPIVisual.add_member(:subtitle, Shapes::ShapeRef.new(shape: VisualSubtitleLabelOptions, location_name: "Subtitle"))
|
|
@@ -5013,6 +5038,12 @@ module Aws::QuickSight
|
|
|
5013
5038
|
KPIVisual.add_member(:column_hierarchies, Shapes::ShapeRef.new(shape: ColumnHierarchyList, location_name: "ColumnHierarchies"))
|
|
5014
5039
|
KPIVisual.struct_class = Types::KPIVisual
|
|
5015
5040
|
|
|
5041
|
+
KPIVisualLayoutOptions.add_member(:standard_layout, Shapes::ShapeRef.new(shape: KPIVisualStandardLayout, location_name: "StandardLayout"))
|
|
5042
|
+
KPIVisualLayoutOptions.struct_class = Types::KPIVisualLayoutOptions
|
|
5043
|
+
|
|
5044
|
+
KPIVisualStandardLayout.add_member(:type, Shapes::ShapeRef.new(shape: KPIVisualStandardLayoutType, required: true, location_name: "Type"))
|
|
5045
|
+
KPIVisualStandardLayout.struct_class = Types::KPIVisualStandardLayout
|
|
5046
|
+
|
|
5016
5047
|
LabelOptions.add_member(:visibility, Shapes::ShapeRef.new(shape: Visibility, location_name: "Visibility"))
|
|
5017
5048
|
LabelOptions.add_member(:font_configuration, Shapes::ShapeRef.new(shape: FontConfiguration, location_name: "FontConfiguration"))
|
|
5018
5049
|
LabelOptions.add_member(:custom_label, Shapes::ShapeRef.new(shape: String, location_name: "CustomLabel"))
|
|
@@ -6160,6 +6191,7 @@ module Aws::QuickSight
|
|
|
6160
6191
|
RegisterUserRequest.add_member(:external_login_federation_provider_type, Shapes::ShapeRef.new(shape: String, location_name: "ExternalLoginFederationProviderType"))
|
|
6161
6192
|
RegisterUserRequest.add_member(:custom_federation_provider_url, Shapes::ShapeRef.new(shape: String, location_name: "CustomFederationProviderUrl"))
|
|
6162
6193
|
RegisterUserRequest.add_member(:external_login_id, Shapes::ShapeRef.new(shape: String, location_name: "ExternalLoginId"))
|
|
6194
|
+
RegisterUserRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
|
6163
6195
|
RegisterUserRequest.struct_class = Types::RegisterUserRequest
|
|
6164
6196
|
|
|
6165
6197
|
RegisterUserResponse.add_member(:user, Shapes::ShapeRef.new(shape: User, location_name: "User"))
|
|
@@ -16074,6 +16074,44 @@ module Aws::QuickSight
|
|
|
16074
16074
|
include Aws::Structure
|
|
16075
16075
|
end
|
|
16076
16076
|
|
|
16077
|
+
# The conditional formatting for the actual value of a KPI visual.
|
|
16078
|
+
#
|
|
16079
|
+
# @!attribute [rw] text_color
|
|
16080
|
+
# The conditional formatting of the actual value's text color.
|
|
16081
|
+
# @return [Types::ConditionalFormattingColor]
|
|
16082
|
+
#
|
|
16083
|
+
# @!attribute [rw] icon
|
|
16084
|
+
# The conditional formatting of the actual value's icon.
|
|
16085
|
+
# @return [Types::ConditionalFormattingIcon]
|
|
16086
|
+
#
|
|
16087
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/KPIActualValueConditionalFormatting AWS API Documentation
|
|
16088
|
+
#
|
|
16089
|
+
class KPIActualValueConditionalFormatting < Struct.new(
|
|
16090
|
+
:text_color,
|
|
16091
|
+
:icon)
|
|
16092
|
+
SENSITIVE = []
|
|
16093
|
+
include Aws::Structure
|
|
16094
|
+
end
|
|
16095
|
+
|
|
16096
|
+
# The conditional formatting for the comparison value of a KPI visual.
|
|
16097
|
+
#
|
|
16098
|
+
# @!attribute [rw] text_color
|
|
16099
|
+
# The conditional formatting of the comparison value's text color.
|
|
16100
|
+
# @return [Types::ConditionalFormattingColor]
|
|
16101
|
+
#
|
|
16102
|
+
# @!attribute [rw] icon
|
|
16103
|
+
# The conditional formatting of the comparison value's icon.
|
|
16104
|
+
# @return [Types::ConditionalFormattingIcon]
|
|
16105
|
+
#
|
|
16106
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/KPIComparisonValueConditionalFormatting AWS API Documentation
|
|
16107
|
+
#
|
|
16108
|
+
class KPIComparisonValueConditionalFormatting < Struct.new(
|
|
16109
|
+
:text_color,
|
|
16110
|
+
:icon)
|
|
16111
|
+
SENSITIVE = []
|
|
16112
|
+
include Aws::Structure
|
|
16113
|
+
end
|
|
16114
|
+
|
|
16077
16115
|
# The conditional formatting of a KPI visual.
|
|
16078
16116
|
#
|
|
16079
16117
|
# @!attribute [rw] conditional_formatting_options
|
|
@@ -16098,11 +16136,21 @@ module Aws::QuickSight
|
|
|
16098
16136
|
# The conditional formatting for the progress bar of a KPI visual.
|
|
16099
16137
|
# @return [Types::KPIProgressBarConditionalFormatting]
|
|
16100
16138
|
#
|
|
16139
|
+
# @!attribute [rw] actual_value
|
|
16140
|
+
# The conditional formatting for the actual value of a KPI visual.
|
|
16141
|
+
# @return [Types::KPIActualValueConditionalFormatting]
|
|
16142
|
+
#
|
|
16143
|
+
# @!attribute [rw] comparison_value
|
|
16144
|
+
# The conditional formatting for the comparison value of a KPI visual.
|
|
16145
|
+
# @return [Types::KPIComparisonValueConditionalFormatting]
|
|
16146
|
+
#
|
|
16101
16147
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/KPIConditionalFormattingOption AWS API Documentation
|
|
16102
16148
|
#
|
|
16103
16149
|
class KPIConditionalFormattingOption < Struct.new(
|
|
16104
16150
|
:primary_value,
|
|
16105
|
-
:progress_bar
|
|
16151
|
+
:progress_bar,
|
|
16152
|
+
:actual_value,
|
|
16153
|
+
:comparison_value)
|
|
16106
16154
|
SENSITIVE = []
|
|
16107
16155
|
include Aws::Structure
|
|
16108
16156
|
end
|
|
@@ -16188,6 +16236,15 @@ module Aws::QuickSight
|
|
|
16188
16236
|
# The options that determine the secondary value font configuration.
|
|
16189
16237
|
# @return [Types::FontConfiguration]
|
|
16190
16238
|
#
|
|
16239
|
+
# @!attribute [rw] sparkline
|
|
16240
|
+
# The options that determine the visibility, color, type, and tooltip
|
|
16241
|
+
# visibility of the sparkline of a KPI visual.
|
|
16242
|
+
# @return [Types::KPISparklineOptions]
|
|
16243
|
+
#
|
|
16244
|
+
# @!attribute [rw] visual_layout_options
|
|
16245
|
+
# The options that determine the layout a KPI visual.
|
|
16246
|
+
# @return [Types::KPIVisualLayoutOptions]
|
|
16247
|
+
#
|
|
16191
16248
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/KPIOptions AWS API Documentation
|
|
16192
16249
|
#
|
|
16193
16250
|
class KPIOptions < Struct.new(
|
|
@@ -16197,7 +16254,9 @@ module Aws::QuickSight
|
|
|
16197
16254
|
:comparison,
|
|
16198
16255
|
:primary_value_display_type,
|
|
16199
16256
|
:primary_value_font_configuration,
|
|
16200
|
-
:secondary_value_font_configuration
|
|
16257
|
+
:secondary_value_font_configuration,
|
|
16258
|
+
:sparkline,
|
|
16259
|
+
:visual_layout_options)
|
|
16201
16260
|
SENSITIVE = []
|
|
16202
16261
|
include Aws::Structure
|
|
16203
16262
|
end
|
|
@@ -16249,6 +16308,36 @@ module Aws::QuickSight
|
|
|
16249
16308
|
include Aws::Structure
|
|
16250
16309
|
end
|
|
16251
16310
|
|
|
16311
|
+
# The options that determine the visibility, color, type, and tooltip
|
|
16312
|
+
# visibility of the sparkline of a KPI visual.
|
|
16313
|
+
#
|
|
16314
|
+
# @!attribute [rw] visibility
|
|
16315
|
+
# The visibility of the sparkline.
|
|
16316
|
+
# @return [String]
|
|
16317
|
+
#
|
|
16318
|
+
# @!attribute [rw] type
|
|
16319
|
+
# The type of the sparkline.
|
|
16320
|
+
# @return [String]
|
|
16321
|
+
#
|
|
16322
|
+
# @!attribute [rw] color
|
|
16323
|
+
# The color of the sparkline.
|
|
16324
|
+
# @return [String]
|
|
16325
|
+
#
|
|
16326
|
+
# @!attribute [rw] tooltip_visibility
|
|
16327
|
+
# The tooltip visibility of the sparkline.
|
|
16328
|
+
# @return [String]
|
|
16329
|
+
#
|
|
16330
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/KPISparklineOptions AWS API Documentation
|
|
16331
|
+
#
|
|
16332
|
+
class KPISparklineOptions < Struct.new(
|
|
16333
|
+
:visibility,
|
|
16334
|
+
:type,
|
|
16335
|
+
:color,
|
|
16336
|
+
:tooltip_visibility)
|
|
16337
|
+
SENSITIVE = []
|
|
16338
|
+
include Aws::Structure
|
|
16339
|
+
end
|
|
16340
|
+
|
|
16252
16341
|
# A key performance indicator (KPI).
|
|
16253
16342
|
#
|
|
16254
16343
|
# For more information, see [Using KPIs][1] in the *Amazon QuickSight
|
|
@@ -16303,6 +16392,34 @@ module Aws::QuickSight
|
|
|
16303
16392
|
include Aws::Structure
|
|
16304
16393
|
end
|
|
16305
16394
|
|
|
16395
|
+
# The options that determine the layout a KPI visual.
|
|
16396
|
+
#
|
|
16397
|
+
# @!attribute [rw] standard_layout
|
|
16398
|
+
# The standard layout of the KPI visual.
|
|
16399
|
+
# @return [Types::KPIVisualStandardLayout]
|
|
16400
|
+
#
|
|
16401
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/KPIVisualLayoutOptions AWS API Documentation
|
|
16402
|
+
#
|
|
16403
|
+
class KPIVisualLayoutOptions < Struct.new(
|
|
16404
|
+
:standard_layout)
|
|
16405
|
+
SENSITIVE = []
|
|
16406
|
+
include Aws::Structure
|
|
16407
|
+
end
|
|
16408
|
+
|
|
16409
|
+
# The standard layout of the KPI visual.
|
|
16410
|
+
#
|
|
16411
|
+
# @!attribute [rw] type
|
|
16412
|
+
# The standard layout type.
|
|
16413
|
+
# @return [String]
|
|
16414
|
+
#
|
|
16415
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/KPIVisualStandardLayout AWS API Documentation
|
|
16416
|
+
#
|
|
16417
|
+
class KPIVisualStandardLayout < Struct.new(
|
|
16418
|
+
:type)
|
|
16419
|
+
SENSITIVE = []
|
|
16420
|
+
include Aws::Structure
|
|
16421
|
+
end
|
|
16422
|
+
|
|
16306
16423
|
# The share label options for the labels.
|
|
16307
16424
|
#
|
|
16308
16425
|
# @!attribute [rw] visibility
|
|
@@ -21956,6 +22073,10 @@ module Aws::QuickSight
|
|
|
21956
22073
|
# The identity ID for a user in the external login provider.
|
|
21957
22074
|
# @return [String]
|
|
21958
22075
|
#
|
|
22076
|
+
# @!attribute [rw] tags
|
|
22077
|
+
# The tags to associate with the user.
|
|
22078
|
+
# @return [Array<Types::Tag>]
|
|
22079
|
+
#
|
|
21959
22080
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/RegisterUserRequest AWS API Documentation
|
|
21960
22081
|
#
|
|
21961
22082
|
class RegisterUserRequest < Struct.new(
|
|
@@ -21970,7 +22091,8 @@ module Aws::QuickSight
|
|
|
21970
22091
|
:custom_permissions_name,
|
|
21971
22092
|
:external_login_federation_provider_type,
|
|
21972
22093
|
:custom_federation_provider_url,
|
|
21973
|
-
:external_login_id
|
|
22094
|
+
:external_login_id,
|
|
22095
|
+
:tags)
|
|
21974
22096
|
SENSITIVE = []
|
|
21975
22097
|
include Aws::Structure
|
|
21976
22098
|
end
|
data/lib/aws-sdk-quicksight.rb
CHANGED
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.91.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: 2023-
|
|
11
|
+
date: 2023-09-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|