Struct aws_sdk_glue::types::builders::AuditContextBuilder
source · #[non_exhaustive]pub struct AuditContextBuilder { /* private fields */ }Expand description
A builder for AuditContext.
Implementations§
source§impl AuditContextBuilder
impl AuditContextBuilder
sourcepub fn additional_audit_context(self, input: impl Into<String>) -> Self
pub fn additional_audit_context(self, input: impl Into<String>) -> Self
A string containing the additional audit context information.
sourcepub fn set_additional_audit_context(self, input: Option<String>) -> Self
pub fn set_additional_audit_context(self, input: Option<String>) -> Self
A string containing the additional audit context information.
sourcepub fn get_additional_audit_context(&self) -> &Option<String>
pub fn get_additional_audit_context(&self) -> &Option<String>
A string containing the additional audit context information.
sourcepub fn requested_columns(self, input: impl Into<String>) -> Self
pub fn requested_columns(self, input: impl Into<String>) -> Self
Appends an item to requested_columns.
To override the contents of this collection use set_requested_columns.
The requested columns for audit.
sourcepub fn set_requested_columns(self, input: Option<Vec<String>>) -> Self
pub fn set_requested_columns(self, input: Option<Vec<String>>) -> Self
The requested columns for audit.
sourcepub fn get_requested_columns(&self) -> &Option<Vec<String>>
pub fn get_requested_columns(&self) -> &Option<Vec<String>>
The requested columns for audit.
sourcepub fn all_columns_requested(self, input: bool) -> Self
pub fn all_columns_requested(self, input: bool) -> Self
All columns request for audit.
sourcepub fn set_all_columns_requested(self, input: Option<bool>) -> Self
pub fn set_all_columns_requested(self, input: Option<bool>) -> Self
All columns request for audit.
sourcepub fn get_all_columns_requested(&self) -> &Option<bool>
pub fn get_all_columns_requested(&self) -> &Option<bool>
All columns request for audit.
sourcepub fn build(self) -> AuditContext
pub fn build(self) -> AuditContext
Consumes the builder and constructs a AuditContext.
Trait Implementations§
source§impl Clone for AuditContextBuilder
impl Clone for AuditContextBuilder
source§fn clone(&self) -> AuditContextBuilder
fn clone(&self) -> AuditContextBuilder
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 AuditContextBuilder
impl Debug for AuditContextBuilder
source§impl Default for AuditContextBuilder
impl Default for AuditContextBuilder
source§fn default() -> AuditContextBuilder
fn default() -> AuditContextBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<AuditContextBuilder> for AuditContextBuilder
impl PartialEq<AuditContextBuilder> for AuditContextBuilder
source§fn eq(&self, other: &AuditContextBuilder) -> bool
fn eq(&self, other: &AuditContextBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for AuditContextBuilder
Auto Trait Implementations§
impl RefUnwindSafe for AuditContextBuilder
impl Send for AuditContextBuilder
impl Sync for AuditContextBuilder
impl Unpin for AuditContextBuilder
impl UnwindSafe for AuditContextBuilder
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