#[non_exhaustive]pub struct RegisteredUserDashboardEmbeddingConfiguration {
pub initial_dashboard_id: String,
pub feature_configurations: Option<RegisteredUserDashboardFeatureConfigurations>,
}Expand description
Information about the dashboard you want to embed.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.initial_dashboard_id: StringThe 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.
feature_configurations: Option<RegisteredUserDashboardFeatureConfigurations>The feature configurations of an embbedded Amazon QuickSight dashboard.
Implementations§
source§impl RegisteredUserDashboardEmbeddingConfiguration
impl RegisteredUserDashboardEmbeddingConfiguration
sourcepub fn initial_dashboard_id(&self) -> &str
pub fn initial_dashboard_id(&self) -> &str
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.
sourcepub fn feature_configurations(
&self
) -> Option<&RegisteredUserDashboardFeatureConfigurations>
pub fn feature_configurations( &self ) -> Option<&RegisteredUserDashboardFeatureConfigurations>
The feature configurations of an embbedded Amazon QuickSight dashboard.
source§impl RegisteredUserDashboardEmbeddingConfiguration
impl RegisteredUserDashboardEmbeddingConfiguration
sourcepub fn builder() -> RegisteredUserDashboardEmbeddingConfigurationBuilder
pub fn builder() -> RegisteredUserDashboardEmbeddingConfigurationBuilder
Creates a new builder-style object to manufacture RegisteredUserDashboardEmbeddingConfiguration.
Trait Implementations§
source§impl Clone for RegisteredUserDashboardEmbeddingConfiguration
impl Clone for RegisteredUserDashboardEmbeddingConfiguration
source§fn clone(&self) -> RegisteredUserDashboardEmbeddingConfiguration
fn clone(&self) -> RegisteredUserDashboardEmbeddingConfiguration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for RegisteredUserDashboardEmbeddingConfiguration
impl PartialEq for RegisteredUserDashboardEmbeddingConfiguration
source§fn eq(&self, other: &RegisteredUserDashboardEmbeddingConfiguration) -> bool
fn eq(&self, other: &RegisteredUserDashboardEmbeddingConfiguration) -> bool
self and other values to be equal, and is used
by ==.