pub struct RestoreTestingPlanRecord {
pub name: String,
pub arn: String,
pub creation_time: DateTime<Utc>,
pub update_time: Option<DateTime<Utc>>,
pub last_execution_time: Option<DateTime<Utc>>,
pub creator_request_id: Option<String>,
pub plan: Value,
pub selections: BTreeMap<String, RestoreTestingSelectionRecord>,
}Expand description
A restore-testing plan with its selections.
Fields§
§name: String§arn: String§creation_time: DateTime<Utc>§update_time: Option<DateTime<Utc>>§last_execution_time: Option<DateTime<Utc>>§creator_request_id: Option<String>§plan: ValueThe RestoreTestingPlanForCreate object as sent.
selections: BTreeMap<String, RestoreTestingSelectionRecord>Trait Implementations§
Source§impl Clone for RestoreTestingPlanRecord
impl Clone for RestoreTestingPlanRecord
Source§fn clone(&self) -> RestoreTestingPlanRecord
fn clone(&self) -> RestoreTestingPlanRecord
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 RestoreTestingPlanRecord
impl Debug for RestoreTestingPlanRecord
Source§impl<'de> Deserialize<'de> for RestoreTestingPlanRecord
impl<'de> Deserialize<'de> for RestoreTestingPlanRecord
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for RestoreTestingPlanRecord
impl RefUnwindSafe for RestoreTestingPlanRecord
impl Send for RestoreTestingPlanRecord
impl Sync for RestoreTestingPlanRecord
impl Unpin for RestoreTestingPlanRecord
impl UnsafeUnpin for RestoreTestingPlanRecord
impl UnwindSafe for RestoreTestingPlanRecord
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