Struct aws_sdk_quicksight::types::SnapshotAnonymousUser
source · #[non_exhaustive]pub struct SnapshotAnonymousUser {
pub row_level_permission_tags: Option<Vec<SessionTag>>,
}Expand description
A structure that contains information on the anonymous user configuration.
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.The tags to be used for row-level security (RLS). Make sure that the relevant datasets have RLS tags configured before you start a snapshot export job. You can configure the RLS tags of a dataset with a DataSet$RowLevelPermissionTagConfiguration API call.
These are not the tags that are used for Amazon Web Services resource tagging. For more information on row level security in Amazon QuickSight, see Using Row-Level Security (RLS) with Tagsin the Amazon QuickSight User Guide.
Implementations§
source§impl SnapshotAnonymousUser
impl SnapshotAnonymousUser
The tags to be used for row-level security (RLS). Make sure that the relevant datasets have RLS tags configured before you start a snapshot export job. You can configure the RLS tags of a dataset with a DataSet$RowLevelPermissionTagConfiguration API call.
These are not the tags that are used for Amazon Web Services resource tagging. For more information on row level security in Amazon QuickSight, see Using Row-Level Security (RLS) with Tagsin the Amazon QuickSight User Guide.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .row_level_permission_tags.is_none().
source§impl SnapshotAnonymousUser
impl SnapshotAnonymousUser
sourcepub fn builder() -> SnapshotAnonymousUserBuilder
pub fn builder() -> SnapshotAnonymousUserBuilder
Creates a new builder-style object to manufacture SnapshotAnonymousUser.
Trait Implementations§
source§impl Clone for SnapshotAnonymousUser
impl Clone for SnapshotAnonymousUser
source§fn clone(&self) -> SnapshotAnonymousUser
fn clone(&self) -> SnapshotAnonymousUser
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for SnapshotAnonymousUser
impl Debug for SnapshotAnonymousUser
source§impl PartialEq for SnapshotAnonymousUser
impl PartialEq for SnapshotAnonymousUser
source§fn eq(&self, other: &SnapshotAnonymousUser) -> bool
fn eq(&self, other: &SnapshotAnonymousUser) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for SnapshotAnonymousUser
Auto Trait Implementations§
impl Freeze for SnapshotAnonymousUser
impl RefUnwindSafe for SnapshotAnonymousUser
impl Send for SnapshotAnonymousUser
impl Sync for SnapshotAnonymousUser
impl Unpin for SnapshotAnonymousUser
impl UnwindSafe for SnapshotAnonymousUser
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more