#[non_exhaustive]pub struct InventoryEncryptionBuilder { /* private fields */ }
Expand description
A builder for InventoryEncryption
.
Implementations§
source§impl InventoryEncryptionBuilder
impl InventoryEncryptionBuilder
sourcepub fn sses3(self, input: Sses3) -> Self
pub fn sses3(self, input: Sses3) -> Self
Specifies the use of SSE-S3 to encrypt delivered inventory reports.
sourcepub fn set_sses3(self, input: Option<Sses3>) -> Self
pub fn set_sses3(self, input: Option<Sses3>) -> Self
Specifies the use of SSE-S3 to encrypt delivered inventory reports.
sourcepub fn get_sses3(&self) -> &Option<Sses3>
pub fn get_sses3(&self) -> &Option<Sses3>
Specifies the use of SSE-S3 to encrypt delivered inventory reports.
sourcepub fn ssekms(self, input: Ssekms) -> Self
pub fn ssekms(self, input: Ssekms) -> Self
Specifies the use of SSE-KMS to encrypt delivered inventory reports.
sourcepub fn set_ssekms(self, input: Option<Ssekms>) -> Self
pub fn set_ssekms(self, input: Option<Ssekms>) -> Self
Specifies the use of SSE-KMS to encrypt delivered inventory reports.
sourcepub fn get_ssekms(&self) -> &Option<Ssekms>
pub fn get_ssekms(&self) -> &Option<Ssekms>
Specifies the use of SSE-KMS to encrypt delivered inventory reports.
sourcepub fn build(self) -> InventoryEncryption
pub fn build(self) -> InventoryEncryption
Consumes the builder and constructs a InventoryEncryption
.
Trait Implementations§
source§impl Clone for InventoryEncryptionBuilder
impl Clone for InventoryEncryptionBuilder
source§fn clone(&self) -> InventoryEncryptionBuilder
fn clone(&self) -> InventoryEncryptionBuilder
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 InventoryEncryptionBuilder
impl Debug for InventoryEncryptionBuilder
source§impl Default for InventoryEncryptionBuilder
impl Default for InventoryEncryptionBuilder
source§fn default() -> InventoryEncryptionBuilder
fn default() -> InventoryEncryptionBuilder
Returns the “default value” for a type. Read more
impl StructuralPartialEq for InventoryEncryptionBuilder
Auto Trait Implementations§
impl Freeze for InventoryEncryptionBuilder
impl RefUnwindSafe for InventoryEncryptionBuilder
impl Send for InventoryEncryptionBuilder
impl Sync for InventoryEncryptionBuilder
impl Unpin for InventoryEncryptionBuilder
impl UnwindSafe for InventoryEncryptionBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.