Struct aws_sdk_glue::types::AuditContext
source · #[non_exhaustive]pub struct AuditContext {
pub additional_audit_context: Option<String>,
pub requested_columns: Option<Vec<String>>,
pub all_columns_requested: Option<bool>,
}Expand description
A structure containing the Lake Formation audit context.
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.additional_audit_context: Option<String>A string containing the additional audit context information.
requested_columns: Option<Vec<String>>The requested columns for audit.
all_columns_requested: Option<bool>All columns request for audit.
Implementations§
source§impl AuditContext
impl AuditContext
sourcepub fn additional_audit_context(&self) -> Option<&str>
pub fn additional_audit_context(&self) -> Option<&str>
A string containing the additional audit context information.
sourcepub fn requested_columns(&self) -> Option<&[String]>
pub fn requested_columns(&self) -> Option<&[String]>
The requested columns for audit.
sourcepub fn all_columns_requested(&self) -> Option<bool>
pub fn all_columns_requested(&self) -> Option<bool>
All columns request for audit.
source§impl AuditContext
impl AuditContext
sourcepub fn builder() -> AuditContextBuilder
pub fn builder() -> AuditContextBuilder
Creates a new builder-style object to manufacture AuditContext.
Trait Implementations§
source§impl Clone for AuditContext
impl Clone for AuditContext
source§fn clone(&self) -> AuditContext
fn clone(&self) -> AuditContext
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 Debug for AuditContext
impl Debug for AuditContext
source§impl PartialEq<AuditContext> for AuditContext
impl PartialEq<AuditContext> for AuditContext
source§fn eq(&self, other: &AuditContext) -> bool
fn eq(&self, other: &AuditContext) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for AuditContext
Auto Trait Implementations§
impl RefUnwindSafe for AuditContext
impl Send for AuditContext
impl Sync for AuditContext
impl Unpin for AuditContext
impl UnwindSafe for AuditContext
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