Class: Aws::QuickSight::Types::RegisteredUserDashboardEmbeddingConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::RegisteredUserDashboardEmbeddingConfiguration
- Defined in:
- gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb
Overview
Note:
When making an API call, you may pass RegisteredUserDashboardEmbeddingConfiguration data as a hash:
{
initial_dashboard_id: "RestrictiveResourceId", # required
}
Information about the dashboard you want to embed.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#initial_dashboard_id ⇒ String
The dashboard ID for the dashboard that you want the user to see first.
Instance Attribute Details
#initial_dashboard_id ⇒ String
The dashboard ID for the dashboard that you want the user to see first. This ID is included in the output URL. When the URL in response is accessed, Amazon QuickSight renders this dashboard if the user has permissions to view it.
If the user does not have permission to view this dashboard, they see a permissions error message.
10399 10400 10401 10402 10403 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 10399 class RegisteredUserDashboardEmbeddingConfiguration < Struct.new( :initial_dashboard_id) SENSITIVE = [] include Aws::Structure end |