pub struct LegalHoldData {
pub legal_hold_id: String,
pub legal_hold_arn: String,
pub title: String,
pub description: String,
pub status: String,
pub creation_date: DateTime<Utc>,
pub cancellation_date: Option<DateTime<Utc>>,
pub recovery_point_selection: Value,
pub tags: HashMap<String, String>,
}Expand description
A legal hold.
Fields§
§legal_hold_id: String§legal_hold_arn: String§title: String§description: String§status: String§creation_date: DateTime<Utc>§cancellation_date: Option<DateTime<Utc>>§recovery_point_selection: ValueTrait Implementations§
Source§impl Clone for LegalHoldData
impl Clone for LegalHoldData
Source§fn clone(&self) -> LegalHoldData
fn clone(&self) -> LegalHoldData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LegalHoldData
impl Debug for LegalHoldData
Source§impl From<&LegalHoldData> for LegalHoldView
impl From<&LegalHoldData> for LegalHoldView
Source§fn from(h: &LegalHoldData) -> Self
fn from(h: &LegalHoldData) -> Self
Converts to this type from the input type.
Source§impl From<LegalHoldView> for LegalHoldData
impl From<LegalHoldView> for LegalHoldData
Source§fn from(v: LegalHoldView) -> Self
fn from(v: LegalHoldView) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LegalHoldData
impl RefUnwindSafe for LegalHoldData
impl Send for LegalHoldData
impl Sync for LegalHoldData
impl Unpin for LegalHoldData
impl UnsafeUnpin for LegalHoldData
impl UnwindSafe for LegalHoldData
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§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.