aws-sdk-quicksight 1.67.0 → 1.68.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-quicksight/client.rb +20 -5
- data/lib/aws-sdk-quicksight/client_api.rb +16 -0
- data/lib/aws-sdk-quicksight/types.rb +167 -4
- 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: c18f75c0c37e09764f89b24e843d8e2beb7904cd40e477b74ab5ef520231b728
|
|
4
|
+
data.tar.gz: d3494ab6767a744b54da61f05c89981d79bcfc32cb91151877df93a3d9382945
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4e75a93fc45cde055ef80779bf895c0487d7809fa70d7eedb81ff33cd2fb71ab25ee4221920d0c92c53fbaca73c341618a82f5eef1b02f8456992be058a9910d
|
|
7
|
+
data.tar.gz: 65962f03fc0c2db13f6a58828a98fa04ade432202d6986cbf12a86ef27afcc7f9b87a21ce4ff47b6909e071cdf536fd779158625c4a77da069ed658e61519722
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.68.0 (2022-08-24)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Added a new optional property DashboardVisual under ExperienceConfiguration parameter of GenerateEmbedUrlForAnonymousUser and GenerateEmbedUrlForRegisteredUser API operations. This supports embedding of specific visuals in QuickSight dashboards.
|
|
8
|
+
|
|
4
9
|
1.67.0 (2022-08-08)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.68.0
|
|
@@ -4652,9 +4652,9 @@ module Aws::QuickSight
|
|
|
4652
4652
|
end
|
|
4653
4653
|
|
|
4654
4654
|
# Generates an embed URL that you can use to embed an Amazon QuickSight
|
|
4655
|
-
# dashboard in your website, without having to register any
|
|
4656
|
-
# users. Before you use this action, make sure that you have
|
|
4657
|
-
# the dashboards and permissions.
|
|
4655
|
+
# dashboard or visual in your website, without having to register any
|
|
4656
|
+
# reader users. Before you use this action, make sure that you have
|
|
4657
|
+
# configured the dashboards and permissions.
|
|
4658
4658
|
#
|
|
4659
4659
|
# The following rules apply to the generated URL:
|
|
4660
4660
|
#
|
|
@@ -4756,6 +4756,13 @@ module Aws::QuickSight
|
|
|
4756
4756
|
# dashboard: {
|
|
4757
4757
|
# initial_dashboard_id: "RestrictiveResourceId", # required
|
|
4758
4758
|
# },
|
|
4759
|
+
# dashboard_visual: {
|
|
4760
|
+
# initial_dashboard_visual_id: { # required
|
|
4761
|
+
# dashboard_id: "RestrictiveResourceId", # required
|
|
4762
|
+
# sheet_id: "RestrictiveResourceId", # required
|
|
4763
|
+
# visual_id: "RestrictiveResourceId", # required
|
|
4764
|
+
# },
|
|
4765
|
+
# },
|
|
4759
4766
|
# },
|
|
4760
4767
|
# allowed_domains: ["String"],
|
|
4761
4768
|
# })
|
|
@@ -4822,7 +4829,8 @@ module Aws::QuickSight
|
|
|
4822
4829
|
#
|
|
4823
4830
|
# @option params [required, Types::RegisteredUserEmbeddingExperienceConfiguration] :experience_configuration
|
|
4824
4831
|
# The experience you are embedding. For registered users, you can embed
|
|
4825
|
-
# Amazon QuickSight dashboards
|
|
4832
|
+
# Amazon QuickSight dashboards, Amazon QuickSight visuals, the Amazon
|
|
4833
|
+
# QuickSight Q search bar, or the entire Amazon QuickSight console.
|
|
4826
4834
|
#
|
|
4827
4835
|
# @option params [Array<String>] :allowed_domains
|
|
4828
4836
|
# The domains that you want to add to the allow list for access to the
|
|
@@ -4858,6 +4866,13 @@ module Aws::QuickSight
|
|
|
4858
4866
|
# q_search_bar: {
|
|
4859
4867
|
# initial_topic_id: "RestrictiveResourceId",
|
|
4860
4868
|
# },
|
|
4869
|
+
# dashboard_visual: {
|
|
4870
|
+
# initial_dashboard_visual_id: { # required
|
|
4871
|
+
# dashboard_id: "RestrictiveResourceId", # required
|
|
4872
|
+
# sheet_id: "RestrictiveResourceId", # required
|
|
4873
|
+
# visual_id: "RestrictiveResourceId", # required
|
|
4874
|
+
# },
|
|
4875
|
+
# },
|
|
4861
4876
|
# },
|
|
4862
4877
|
# allowed_domains: ["String"],
|
|
4863
4878
|
# })
|
|
@@ -9089,7 +9104,7 @@ module Aws::QuickSight
|
|
|
9089
9104
|
params: params,
|
|
9090
9105
|
config: config)
|
|
9091
9106
|
context[:gem_name] = 'aws-sdk-quicksight'
|
|
9092
|
-
context[:gem_version] = '1.
|
|
9107
|
+
context[:gem_version] = '1.68.0'
|
|
9093
9108
|
Seahorse::Client::Request.new(handlers, context)
|
|
9094
9109
|
end
|
|
9095
9110
|
|
|
@@ -38,6 +38,7 @@ module Aws::QuickSight
|
|
|
38
38
|
AnalysisSummary = Shapes::StructureShape.new(name: 'AnalysisSummary')
|
|
39
39
|
AnalysisSummaryList = Shapes::ListShape.new(name: 'AnalysisSummaryList')
|
|
40
40
|
AnonymousUserDashboardEmbeddingConfiguration = Shapes::StructureShape.new(name: 'AnonymousUserDashboardEmbeddingConfiguration')
|
|
41
|
+
AnonymousUserDashboardVisualEmbeddingConfiguration = Shapes::StructureShape.new(name: 'AnonymousUserDashboardVisualEmbeddingConfiguration')
|
|
41
42
|
AnonymousUserEmbeddingExperienceConfiguration = Shapes::StructureShape.new(name: 'AnonymousUserEmbeddingExperienceConfiguration')
|
|
42
43
|
Arn = Shapes::StringShape.new(name: 'Arn')
|
|
43
44
|
ArnList = Shapes::ListShape.new(name: 'ArnList')
|
|
@@ -141,6 +142,7 @@ module Aws::QuickSight
|
|
|
141
142
|
DashboardVersion = Shapes::StructureShape.new(name: 'DashboardVersion')
|
|
142
143
|
DashboardVersionSummary = Shapes::StructureShape.new(name: 'DashboardVersionSummary')
|
|
143
144
|
DashboardVersionSummaryList = Shapes::ListShape.new(name: 'DashboardVersionSummaryList')
|
|
145
|
+
DashboardVisualId = Shapes::StructureShape.new(name: 'DashboardVisualId')
|
|
144
146
|
DataColorPalette = Shapes::StructureShape.new(name: 'DataColorPalette')
|
|
145
147
|
DataSet = Shapes::StructureShape.new(name: 'DataSet')
|
|
146
148
|
DataSetArnsList = Shapes::ListShape.new(name: 'DataSetArnsList')
|
|
@@ -445,6 +447,7 @@ module Aws::QuickSight
|
|
|
445
447
|
RegisterUserRequest = Shapes::StructureShape.new(name: 'RegisterUserRequest')
|
|
446
448
|
RegisterUserResponse = Shapes::StructureShape.new(name: 'RegisterUserResponse')
|
|
447
449
|
RegisteredUserDashboardEmbeddingConfiguration = Shapes::StructureShape.new(name: 'RegisteredUserDashboardEmbeddingConfiguration')
|
|
450
|
+
RegisteredUserDashboardVisualEmbeddingConfiguration = Shapes::StructureShape.new(name: 'RegisteredUserDashboardVisualEmbeddingConfiguration')
|
|
448
451
|
RegisteredUserEmbeddingExperienceConfiguration = Shapes::StructureShape.new(name: 'RegisteredUserEmbeddingExperienceConfiguration')
|
|
449
452
|
RegisteredUserQSearchBarEmbeddingConfiguration = Shapes::StructureShape.new(name: 'RegisteredUserQSearchBarEmbeddingConfiguration')
|
|
450
453
|
RegisteredUserQuickSightConsoleEmbeddingConfiguration = Shapes::StructureShape.new(name: 'RegisteredUserQuickSightConsoleEmbeddingConfiguration')
|
|
@@ -713,7 +716,11 @@ module Aws::QuickSight
|
|
|
713
716
|
AnonymousUserDashboardEmbeddingConfiguration.add_member(:initial_dashboard_id, Shapes::ShapeRef.new(shape: RestrictiveResourceId, required: true, location_name: "InitialDashboardId"))
|
|
714
717
|
AnonymousUserDashboardEmbeddingConfiguration.struct_class = Types::AnonymousUserDashboardEmbeddingConfiguration
|
|
715
718
|
|
|
719
|
+
AnonymousUserDashboardVisualEmbeddingConfiguration.add_member(:initial_dashboard_visual_id, Shapes::ShapeRef.new(shape: DashboardVisualId, required: true, location_name: "InitialDashboardVisualId"))
|
|
720
|
+
AnonymousUserDashboardVisualEmbeddingConfiguration.struct_class = Types::AnonymousUserDashboardVisualEmbeddingConfiguration
|
|
721
|
+
|
|
716
722
|
AnonymousUserEmbeddingExperienceConfiguration.add_member(:dashboard, Shapes::ShapeRef.new(shape: AnonymousUserDashboardEmbeddingConfiguration, location_name: "Dashboard"))
|
|
723
|
+
AnonymousUserEmbeddingExperienceConfiguration.add_member(:dashboard_visual, Shapes::ShapeRef.new(shape: AnonymousUserDashboardVisualEmbeddingConfiguration, location_name: "DashboardVisual"))
|
|
717
724
|
AnonymousUserEmbeddingExperienceConfiguration.struct_class = Types::AnonymousUserEmbeddingExperienceConfiguration
|
|
718
725
|
|
|
719
726
|
ArnList.member = Shapes::ShapeRef.new(shape: Arn)
|
|
@@ -1161,6 +1168,11 @@ module Aws::QuickSight
|
|
|
1161
1168
|
|
|
1162
1169
|
DashboardVersionSummaryList.member = Shapes::ShapeRef.new(shape: DashboardVersionSummary)
|
|
1163
1170
|
|
|
1171
|
+
DashboardVisualId.add_member(:dashboard_id, Shapes::ShapeRef.new(shape: RestrictiveResourceId, required: true, location_name: "DashboardId"))
|
|
1172
|
+
DashboardVisualId.add_member(:sheet_id, Shapes::ShapeRef.new(shape: RestrictiveResourceId, required: true, location_name: "SheetId"))
|
|
1173
|
+
DashboardVisualId.add_member(:visual_id, Shapes::ShapeRef.new(shape: RestrictiveResourceId, required: true, location_name: "VisualId"))
|
|
1174
|
+
DashboardVisualId.struct_class = Types::DashboardVisualId
|
|
1175
|
+
|
|
1164
1176
|
DataColorPalette.add_member(:colors, Shapes::ShapeRef.new(shape: ColorList, location_name: "Colors"))
|
|
1165
1177
|
DataColorPalette.add_member(:min_max_gradient, Shapes::ShapeRef.new(shape: ColorList, location_name: "MinMaxGradient"))
|
|
1166
1178
|
DataColorPalette.add_member(:empty_fill_color, Shapes::ShapeRef.new(shape: HexColor, location_name: "EmptyFillColor"))
|
|
@@ -2361,9 +2373,13 @@ module Aws::QuickSight
|
|
|
2361
2373
|
RegisteredUserDashboardEmbeddingConfiguration.add_member(:initial_dashboard_id, Shapes::ShapeRef.new(shape: RestrictiveResourceId, required: true, location_name: "InitialDashboardId"))
|
|
2362
2374
|
RegisteredUserDashboardEmbeddingConfiguration.struct_class = Types::RegisteredUserDashboardEmbeddingConfiguration
|
|
2363
2375
|
|
|
2376
|
+
RegisteredUserDashboardVisualEmbeddingConfiguration.add_member(:initial_dashboard_visual_id, Shapes::ShapeRef.new(shape: DashboardVisualId, required: true, location_name: "InitialDashboardVisualId"))
|
|
2377
|
+
RegisteredUserDashboardVisualEmbeddingConfiguration.struct_class = Types::RegisteredUserDashboardVisualEmbeddingConfiguration
|
|
2378
|
+
|
|
2364
2379
|
RegisteredUserEmbeddingExperienceConfiguration.add_member(:dashboard, Shapes::ShapeRef.new(shape: RegisteredUserDashboardEmbeddingConfiguration, location_name: "Dashboard"))
|
|
2365
2380
|
RegisteredUserEmbeddingExperienceConfiguration.add_member(:quick_sight_console, Shapes::ShapeRef.new(shape: RegisteredUserQuickSightConsoleEmbeddingConfiguration, location_name: "QuickSightConsole"))
|
|
2366
2381
|
RegisteredUserEmbeddingExperienceConfiguration.add_member(:q_search_bar, Shapes::ShapeRef.new(shape: RegisteredUserQSearchBarEmbeddingConfiguration, location_name: "QSearchBar"))
|
|
2382
|
+
RegisteredUserEmbeddingExperienceConfiguration.add_member(:dashboard_visual, Shapes::ShapeRef.new(shape: RegisteredUserDashboardVisualEmbeddingConfiguration, location_name: "DashboardVisual"))
|
|
2367
2383
|
RegisteredUserEmbeddingExperienceConfiguration.struct_class = Types::RegisteredUserEmbeddingExperienceConfiguration
|
|
2368
2384
|
|
|
2369
2385
|
RegisteredUserQSearchBarEmbeddingConfiguration.add_member(:initial_topic_id, Shapes::ShapeRef.new(shape: RestrictiveResourceId, location_name: "InitialTopicId"))
|
|
@@ -484,6 +484,39 @@ module Aws::QuickSight
|
|
|
484
484
|
include Aws::Structure
|
|
485
485
|
end
|
|
486
486
|
|
|
487
|
+
# The experience that you are embedding. You can use this object to
|
|
488
|
+
# generate a url that embeds a visual into your application.
|
|
489
|
+
#
|
|
490
|
+
# @note When making an API call, you may pass AnonymousUserDashboardVisualEmbeddingConfiguration
|
|
491
|
+
# data as a hash:
|
|
492
|
+
#
|
|
493
|
+
# {
|
|
494
|
+
# initial_dashboard_visual_id: { # required
|
|
495
|
+
# dashboard_id: "RestrictiveResourceId", # required
|
|
496
|
+
# sheet_id: "RestrictiveResourceId", # required
|
|
497
|
+
# visual_id: "RestrictiveResourceId", # required
|
|
498
|
+
# },
|
|
499
|
+
# }
|
|
500
|
+
#
|
|
501
|
+
# @!attribute [rw] initial_dashboard_visual_id
|
|
502
|
+
# The visual ID for the visual that you want the user to see. This ID
|
|
503
|
+
# is included in the output URL. When the URL in response is accessed,
|
|
504
|
+
# Amazon QuickSight renders this visual.
|
|
505
|
+
#
|
|
506
|
+
# The Amazon Resource Name (ARN) of the dashboard that the visual
|
|
507
|
+
# belongs to must be included in the `AuthorizedResourceArns`
|
|
508
|
+
# parameter. Otherwise, the request will fail with
|
|
509
|
+
# `InvalidParameterValueException`.
|
|
510
|
+
# @return [Types::DashboardVisualId]
|
|
511
|
+
#
|
|
512
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AnonymousUserDashboardVisualEmbeddingConfiguration AWS API Documentation
|
|
513
|
+
#
|
|
514
|
+
class AnonymousUserDashboardVisualEmbeddingConfiguration < Struct.new(
|
|
515
|
+
:initial_dashboard_visual_id)
|
|
516
|
+
SENSITIVE = []
|
|
517
|
+
include Aws::Structure
|
|
518
|
+
end
|
|
519
|
+
|
|
487
520
|
# The type of experience you want to embed. For anonymous users, you can
|
|
488
521
|
# embed Amazon QuickSight dashboards.
|
|
489
522
|
#
|
|
@@ -494,6 +527,13 @@ module Aws::QuickSight
|
|
|
494
527
|
# dashboard: {
|
|
495
528
|
# initial_dashboard_id: "RestrictiveResourceId", # required
|
|
496
529
|
# },
|
|
530
|
+
# dashboard_visual: {
|
|
531
|
+
# initial_dashboard_visual_id: { # required
|
|
532
|
+
# dashboard_id: "RestrictiveResourceId", # required
|
|
533
|
+
# sheet_id: "RestrictiveResourceId", # required
|
|
534
|
+
# visual_id: "RestrictiveResourceId", # required
|
|
535
|
+
# },
|
|
536
|
+
# },
|
|
497
537
|
# }
|
|
498
538
|
#
|
|
499
539
|
# @!attribute [rw] dashboard
|
|
@@ -501,10 +541,16 @@ module Aws::QuickSight
|
|
|
501
541
|
# dashboards.
|
|
502
542
|
# @return [Types::AnonymousUserDashboardEmbeddingConfiguration]
|
|
503
543
|
#
|
|
544
|
+
# @!attribute [rw] dashboard_visual
|
|
545
|
+
# The type of embedding experience. In this case, Amazon QuickSight
|
|
546
|
+
# visuals.
|
|
547
|
+
# @return [Types::AnonymousUserDashboardVisualEmbeddingConfiguration]
|
|
548
|
+
#
|
|
504
549
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AnonymousUserEmbeddingExperienceConfiguration AWS API Documentation
|
|
505
550
|
#
|
|
506
551
|
class AnonymousUserEmbeddingExperienceConfiguration < Struct.new(
|
|
507
|
-
:dashboard
|
|
552
|
+
:dashboard,
|
|
553
|
+
:dashboard_visual)
|
|
508
554
|
SENSITIVE = []
|
|
509
555
|
include Aws::Structure
|
|
510
556
|
end
|
|
@@ -3793,6 +3839,61 @@ module Aws::QuickSight
|
|
|
3793
3839
|
include Aws::Structure
|
|
3794
3840
|
end
|
|
3795
3841
|
|
|
3842
|
+
# A structure that contains the following elements:
|
|
3843
|
+
#
|
|
3844
|
+
# * The `DashboardId` of the dashboard that has the visual that you want
|
|
3845
|
+
# to embed.
|
|
3846
|
+
#
|
|
3847
|
+
# * The `SheetId` of the sheet that has the visual that you want to
|
|
3848
|
+
# embed.
|
|
3849
|
+
#
|
|
3850
|
+
# * The `VisualId` of the visual that you want to embed.
|
|
3851
|
+
#
|
|
3852
|
+
# The `DashboardId`, `SheetId`, and `VisualId` can be found in the `IDs
|
|
3853
|
+
# for developers` section of the `Embed visual` pane of the visual's
|
|
3854
|
+
# on-visual menu of the Amazon QuickSight console. You can also get the
|
|
3855
|
+
# `DashboardId` with a `ListDashboards` API operation.
|
|
3856
|
+
#
|
|
3857
|
+
# @note When making an API call, you may pass DashboardVisualId
|
|
3858
|
+
# data as a hash:
|
|
3859
|
+
#
|
|
3860
|
+
# {
|
|
3861
|
+
# dashboard_id: "RestrictiveResourceId", # required
|
|
3862
|
+
# sheet_id: "RestrictiveResourceId", # required
|
|
3863
|
+
# visual_id: "RestrictiveResourceId", # required
|
|
3864
|
+
# }
|
|
3865
|
+
#
|
|
3866
|
+
# @!attribute [rw] dashboard_id
|
|
3867
|
+
# The ID of the dashboard that has the visual that you want to embed.
|
|
3868
|
+
# The `DashboardId` can be found in the `IDs for developers` section
|
|
3869
|
+
# of the `Embed visual` pane of the visual's on-visual menu of the
|
|
3870
|
+
# Amazon QuickSight console. You can also get the `DashboardId` with a
|
|
3871
|
+
# `ListDashboards` API operation.
|
|
3872
|
+
# @return [String]
|
|
3873
|
+
#
|
|
3874
|
+
# @!attribute [rw] sheet_id
|
|
3875
|
+
# The ID of the sheet that the has visual that you want to embed. The
|
|
3876
|
+
# `SheetId` can be found in the `IDs for developers` section of the
|
|
3877
|
+
# `Embed visual` pane of the visual's on-visual menu of the Amazon
|
|
3878
|
+
# QuickSight console.
|
|
3879
|
+
# @return [String]
|
|
3880
|
+
#
|
|
3881
|
+
# @!attribute [rw] visual_id
|
|
3882
|
+
# The ID of the visual that you want to embed. The `VisualID` can be
|
|
3883
|
+
# found in the `IDs for developers` section of the `Embed visual` pane
|
|
3884
|
+
# of the visual's on-visual menu of the Amazon QuickSight console.
|
|
3885
|
+
# @return [String]
|
|
3886
|
+
#
|
|
3887
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DashboardVisualId AWS API Documentation
|
|
3888
|
+
#
|
|
3889
|
+
class DashboardVisualId < Struct.new(
|
|
3890
|
+
:dashboard_id,
|
|
3891
|
+
:sheet_id,
|
|
3892
|
+
:visual_id)
|
|
3893
|
+
SENSITIVE = []
|
|
3894
|
+
include Aws::Structure
|
|
3895
|
+
end
|
|
3896
|
+
|
|
3796
3897
|
# The theme colors that are used for data colors in charts. The colors
|
|
3797
3898
|
# description is a hexadecimal color code that consists of six
|
|
3798
3899
|
# alphanumerical characters, prefixed with `#`, for example #37BFF5.
|
|
@@ -7394,6 +7495,13 @@ module Aws::QuickSight
|
|
|
7394
7495
|
# dashboard: {
|
|
7395
7496
|
# initial_dashboard_id: "RestrictiveResourceId", # required
|
|
7396
7497
|
# },
|
|
7498
|
+
# dashboard_visual: {
|
|
7499
|
+
# initial_dashboard_visual_id: { # required
|
|
7500
|
+
# dashboard_id: "RestrictiveResourceId", # required
|
|
7501
|
+
# sheet_id: "RestrictiveResourceId", # required
|
|
7502
|
+
# visual_id: "RestrictiveResourceId", # required
|
|
7503
|
+
# },
|
|
7504
|
+
# },
|
|
7397
7505
|
# },
|
|
7398
7506
|
# allowed_domains: ["String"],
|
|
7399
7507
|
# }
|
|
@@ -7508,6 +7616,13 @@ module Aws::QuickSight
|
|
|
7508
7616
|
# q_search_bar: {
|
|
7509
7617
|
# initial_topic_id: "RestrictiveResourceId",
|
|
7510
7618
|
# },
|
|
7619
|
+
# dashboard_visual: {
|
|
7620
|
+
# initial_dashboard_visual_id: { # required
|
|
7621
|
+
# dashboard_id: "RestrictiveResourceId", # required
|
|
7622
|
+
# sheet_id: "RestrictiveResourceId", # required
|
|
7623
|
+
# visual_id: "RestrictiveResourceId", # required
|
|
7624
|
+
# },
|
|
7625
|
+
# },
|
|
7511
7626
|
# },
|
|
7512
7627
|
# allowed_domains: ["String"],
|
|
7513
7628
|
# }
|
|
@@ -7528,7 +7643,8 @@ module Aws::QuickSight
|
|
|
7528
7643
|
#
|
|
7529
7644
|
# @!attribute [rw] experience_configuration
|
|
7530
7645
|
# The experience you are embedding. For registered users, you can
|
|
7531
|
-
# embed Amazon QuickSight dashboards
|
|
7646
|
+
# embed Amazon QuickSight dashboards, Amazon QuickSight visuals, the
|
|
7647
|
+
# Amazon QuickSight Q search bar, or the entire Amazon QuickSight
|
|
7532
7648
|
# console.
|
|
7533
7649
|
# @return [Types::RegisteredUserEmbeddingExperienceConfiguration]
|
|
7534
7650
|
#
|
|
@@ -7558,7 +7674,8 @@ module Aws::QuickSight
|
|
|
7558
7674
|
end
|
|
7559
7675
|
|
|
7560
7676
|
# @!attribute [rw] embed_url
|
|
7561
|
-
# The embed URL for the Amazon QuickSight dashboard
|
|
7677
|
+
# The embed URL for the Amazon QuickSight dashboard, visual, Q search
|
|
7678
|
+
# bar, or console.
|
|
7562
7679
|
# @return [String]
|
|
7563
7680
|
#
|
|
7564
7681
|
# @!attribute [rw] status
|
|
@@ -10751,6 +10868,39 @@ module Aws::QuickSight
|
|
|
10751
10868
|
include Aws::Structure
|
|
10752
10869
|
end
|
|
10753
10870
|
|
|
10871
|
+
# The experience that you are embedding. You can use this object to
|
|
10872
|
+
# generate a url that embeds a visual into your application.
|
|
10873
|
+
#
|
|
10874
|
+
# @note When making an API call, you may pass RegisteredUserDashboardVisualEmbeddingConfiguration
|
|
10875
|
+
# data as a hash:
|
|
10876
|
+
#
|
|
10877
|
+
# {
|
|
10878
|
+
# initial_dashboard_visual_id: { # required
|
|
10879
|
+
# dashboard_id: "RestrictiveResourceId", # required
|
|
10880
|
+
# sheet_id: "RestrictiveResourceId", # required
|
|
10881
|
+
# visual_id: "RestrictiveResourceId", # required
|
|
10882
|
+
# },
|
|
10883
|
+
# }
|
|
10884
|
+
#
|
|
10885
|
+
# @!attribute [rw] initial_dashboard_visual_id
|
|
10886
|
+
# The visual ID for the visual that you want the user to embed. This
|
|
10887
|
+
# ID is included in the output URL. When the URL in response is
|
|
10888
|
+
# accessed, Amazon QuickSight renders this visual.
|
|
10889
|
+
#
|
|
10890
|
+
# The Amazon Resource Name (ARN) of the dashboard that the visual
|
|
10891
|
+
# belongs to must be included in the `AuthorizedResourceArns`
|
|
10892
|
+
# parameter. Otherwise, the request will fail with
|
|
10893
|
+
# `InvalidParameterValueException`.
|
|
10894
|
+
# @return [Types::DashboardVisualId]
|
|
10895
|
+
#
|
|
10896
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/RegisteredUserDashboardVisualEmbeddingConfiguration AWS API Documentation
|
|
10897
|
+
#
|
|
10898
|
+
class RegisteredUserDashboardVisualEmbeddingConfiguration < Struct.new(
|
|
10899
|
+
:initial_dashboard_visual_id)
|
|
10900
|
+
SENSITIVE = []
|
|
10901
|
+
include Aws::Structure
|
|
10902
|
+
end
|
|
10903
|
+
|
|
10754
10904
|
# The type of experience you want to embed. For registered users, you
|
|
10755
10905
|
# can embed Amazon QuickSight dashboards or the Amazon QuickSight
|
|
10756
10906
|
# console.
|
|
@@ -10774,6 +10924,13 @@ module Aws::QuickSight
|
|
|
10774
10924
|
# q_search_bar: {
|
|
10775
10925
|
# initial_topic_id: "RestrictiveResourceId",
|
|
10776
10926
|
# },
|
|
10927
|
+
# dashboard_visual: {
|
|
10928
|
+
# initial_dashboard_visual_id: { # required
|
|
10929
|
+
# dashboard_id: "RestrictiveResourceId", # required
|
|
10930
|
+
# sheet_id: "RestrictiveResourceId", # required
|
|
10931
|
+
# visual_id: "RestrictiveResourceId", # required
|
|
10932
|
+
# },
|
|
10933
|
+
# },
|
|
10777
10934
|
# }
|
|
10778
10935
|
#
|
|
10779
10936
|
# @!attribute [rw] dashboard
|
|
@@ -10826,12 +10983,18 @@ module Aws::QuickSight
|
|
|
10826
10983
|
# [1]: https://docs.aws.amazon.com/quicksight/latest/user/embedding-overview.html
|
|
10827
10984
|
# @return [Types::RegisteredUserQSearchBarEmbeddingConfiguration]
|
|
10828
10985
|
#
|
|
10986
|
+
# @!attribute [rw] dashboard_visual
|
|
10987
|
+
# The type of embedding experience. In this case, Amazon QuickSight
|
|
10988
|
+
# visuals.
|
|
10989
|
+
# @return [Types::RegisteredUserDashboardVisualEmbeddingConfiguration]
|
|
10990
|
+
#
|
|
10829
10991
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/RegisteredUserEmbeddingExperienceConfiguration AWS API Documentation
|
|
10830
10992
|
#
|
|
10831
10993
|
class RegisteredUserEmbeddingExperienceConfiguration < Struct.new(
|
|
10832
10994
|
:dashboard,
|
|
10833
10995
|
:quick_sight_console,
|
|
10834
|
-
:q_search_bar
|
|
10996
|
+
:q_search_bar,
|
|
10997
|
+
:dashboard_visual)
|
|
10835
10998
|
SENSITIVE = []
|
|
10836
10999
|
include Aws::Structure
|
|
10837
11000
|
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.68.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: 2022-08-
|
|
11
|
+
date: 2022-08-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|