#[non_exhaustive]pub struct RowLevelPermissionTagConfiguration { /* private fields */ }
Expand description
The configuration of tags on a dataset to set row-level security.
Implementations§
source§impl RowLevelPermissionTagConfiguration
impl RowLevelPermissionTagConfiguration
sourcepub fn status(&self) -> Option<&Status>
pub fn status(&self) -> Option<&Status>
The status of row-level security tags. If enabled, the status is ENABLED
. If disabled, the status is DISABLED
.
sourcepub fn tag_rules(&self) -> Option<&[RowLevelPermissionTagRule]>
pub fn tag_rules(&self) -> Option<&[RowLevelPermissionTagRule]>
A set of rules associated with row-level security, such as the tag names and columns that they are assigned to.
source§impl RowLevelPermissionTagConfiguration
impl RowLevelPermissionTagConfiguration
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture RowLevelPermissionTagConfiguration
.
Trait Implementations§
source§impl Clone for RowLevelPermissionTagConfiguration
impl Clone for RowLevelPermissionTagConfiguration
source§fn clone(&self) -> RowLevelPermissionTagConfiguration
fn clone(&self) -> RowLevelPermissionTagConfiguration
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<RowLevelPermissionTagConfiguration> for RowLevelPermissionTagConfiguration
impl PartialEq<RowLevelPermissionTagConfiguration> for RowLevelPermissionTagConfiguration
source§fn eq(&self, other: &RowLevelPermissionTagConfiguration) -> bool
fn eq(&self, other: &RowLevelPermissionTagConfiguration) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.