Struct aws_sdk_rbin::types::builders::LockConfigurationBuilder
source · #[non_exhaustive]pub struct LockConfigurationBuilder { /* private fields */ }
Expand description
A builder for LockConfiguration
.
Implementations§
source§impl LockConfigurationBuilder
impl LockConfigurationBuilder
sourcepub fn unlock_delay(self, input: UnlockDelay) -> Self
pub fn unlock_delay(self, input: UnlockDelay) -> Self
Information about the retention rule unlock delay.
This field is required.sourcepub fn set_unlock_delay(self, input: Option<UnlockDelay>) -> Self
pub fn set_unlock_delay(self, input: Option<UnlockDelay>) -> Self
Information about the retention rule unlock delay.
sourcepub fn get_unlock_delay(&self) -> &Option<UnlockDelay>
pub fn get_unlock_delay(&self) -> &Option<UnlockDelay>
Information about the retention rule unlock delay.
sourcepub fn build(self) -> LockConfiguration
pub fn build(self) -> LockConfiguration
Consumes the builder and constructs a LockConfiguration
.
Trait Implementations§
source§impl Clone for LockConfigurationBuilder
impl Clone for LockConfigurationBuilder
source§fn clone(&self) -> LockConfigurationBuilder
fn clone(&self) -> LockConfigurationBuilder
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 LockConfigurationBuilder
impl Debug for LockConfigurationBuilder
source§impl Default for LockConfigurationBuilder
impl Default for LockConfigurationBuilder
source§fn default() -> LockConfigurationBuilder
fn default() -> LockConfigurationBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for LockConfigurationBuilder
impl PartialEq for LockConfigurationBuilder
impl StructuralPartialEq for LockConfigurationBuilder
Auto Trait Implementations§
impl Freeze for LockConfigurationBuilder
impl RefUnwindSafe for LockConfigurationBuilder
impl Send for LockConfigurationBuilder
impl Sync for LockConfigurationBuilder
impl Unpin for LockConfigurationBuilder
impl UnwindSafe for LockConfigurationBuilder
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.