#[non_exhaustive]pub struct AnonymousUserEmbeddingExperienceConfiguration {
pub dashboard: Option<AnonymousUserDashboardEmbeddingConfiguration>,
pub dashboard_visual: Option<AnonymousUserDashboardVisualEmbeddingConfiguration>,
pub q_search_bar: Option<AnonymousUserQSearchBarEmbeddingConfiguration>,
}Expand description
The type of experience you want to embed. For anonymous users, you can embed Amazon QuickSight dashboards.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.dashboard: Option<AnonymousUserDashboardEmbeddingConfiguration>The type of embedding experience. In this case, Amazon QuickSight dashboards.
dashboard_visual: Option<AnonymousUserDashboardVisualEmbeddingConfiguration>The type of embedding experience. In this case, Amazon QuickSight visuals.
q_search_bar: Option<AnonymousUserQSearchBarEmbeddingConfiguration>The Q search bar that you want to use for anonymous user embedding.
Implementations§
source§impl AnonymousUserEmbeddingExperienceConfiguration
impl AnonymousUserEmbeddingExperienceConfiguration
sourcepub fn dashboard(&self) -> Option<&AnonymousUserDashboardEmbeddingConfiguration>
pub fn dashboard(&self) -> Option<&AnonymousUserDashboardEmbeddingConfiguration>
The type of embedding experience. In this case, Amazon QuickSight dashboards.
sourcepub fn dashboard_visual(
&self
) -> Option<&AnonymousUserDashboardVisualEmbeddingConfiguration>
pub fn dashboard_visual( &self ) -> Option<&AnonymousUserDashboardVisualEmbeddingConfiguration>
The type of embedding experience. In this case, Amazon QuickSight visuals.
sourcepub fn q_search_bar(
&self
) -> Option<&AnonymousUserQSearchBarEmbeddingConfiguration>
pub fn q_search_bar( &self ) -> Option<&AnonymousUserQSearchBarEmbeddingConfiguration>
The Q search bar that you want to use for anonymous user embedding.
source§impl AnonymousUserEmbeddingExperienceConfiguration
impl AnonymousUserEmbeddingExperienceConfiguration
sourcepub fn builder() -> AnonymousUserEmbeddingExperienceConfigurationBuilder
pub fn builder() -> AnonymousUserEmbeddingExperienceConfigurationBuilder
Creates a new builder-style object to manufacture AnonymousUserEmbeddingExperienceConfiguration.
Trait Implementations§
source§impl Clone for AnonymousUserEmbeddingExperienceConfiguration
impl Clone for AnonymousUserEmbeddingExperienceConfiguration
source§fn clone(&self) -> AnonymousUserEmbeddingExperienceConfiguration
fn clone(&self) -> AnonymousUserEmbeddingExperienceConfiguration
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl PartialEq for AnonymousUserEmbeddingExperienceConfiguration
impl PartialEq for AnonymousUserEmbeddingExperienceConfiguration
source§fn eq(&self, other: &AnonymousUserEmbeddingExperienceConfiguration) -> bool
fn eq(&self, other: &AnonymousUserEmbeddingExperienceConfiguration) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for AnonymousUserEmbeddingExperienceConfiguration
Auto Trait Implementations§
impl Freeze for AnonymousUserEmbeddingExperienceConfiguration
impl RefUnwindSafe for AnonymousUserEmbeddingExperienceConfiguration
impl Send for AnonymousUserEmbeddingExperienceConfiguration
impl Sync for AnonymousUserEmbeddingExperienceConfiguration
impl Unpin for AnonymousUserEmbeddingExperienceConfiguration
impl UnwindSafe for AnonymousUserEmbeddingExperienceConfiguration
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.