#[non_exhaustive]pub struct DeleteSecretOutputBuilder { /* private fields */ }
Expand description
A builder for DeleteSecretOutput
.
Implementations§
Source§impl DeleteSecretOutputBuilder
impl DeleteSecretOutputBuilder
Sourcepub fn deletion_date(self, input: DateTime) -> Self
pub fn deletion_date(self, input: DateTime) -> Self
The date and time after which this secret Secrets Manager can permanently delete this secret, and it can no longer be restored. This value is the date and time of the delete request plus the number of days in RecoveryWindowInDays
.
Sourcepub fn set_deletion_date(self, input: Option<DateTime>) -> Self
pub fn set_deletion_date(self, input: Option<DateTime>) -> Self
The date and time after which this secret Secrets Manager can permanently delete this secret, and it can no longer be restored. This value is the date and time of the delete request plus the number of days in RecoveryWindowInDays
.
Sourcepub fn get_deletion_date(&self) -> &Option<DateTime>
pub fn get_deletion_date(&self) -> &Option<DateTime>
The date and time after which this secret Secrets Manager can permanently delete this secret, and it can no longer be restored. This value is the date and time of the delete request plus the number of days in RecoveryWindowInDays
.
Sourcepub fn build(self) -> DeleteSecretOutput
pub fn build(self) -> DeleteSecretOutput
Consumes the builder and constructs a DeleteSecretOutput
.
Trait Implementations§
Source§impl Clone for DeleteSecretOutputBuilder
impl Clone for DeleteSecretOutputBuilder
Source§fn clone(&self) -> DeleteSecretOutputBuilder
fn clone(&self) -> DeleteSecretOutputBuilder
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for DeleteSecretOutputBuilder
impl Debug for DeleteSecretOutputBuilder
Source§impl Default for DeleteSecretOutputBuilder
impl Default for DeleteSecretOutputBuilder
Source§fn default() -> DeleteSecretOutputBuilder
fn default() -> DeleteSecretOutputBuilder
impl StructuralPartialEq for DeleteSecretOutputBuilder
Auto Trait Implementations§
impl Freeze for DeleteSecretOutputBuilder
impl RefUnwindSafe for DeleteSecretOutputBuilder
impl Send for DeleteSecretOutputBuilder
impl Sync for DeleteSecretOutputBuilder
impl Unpin for DeleteSecretOutputBuilder
impl UnwindSafe for DeleteSecretOutputBuilder
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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>
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>
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 more