pub struct MapRun {
pub map_run_arn: String,
pub execution_arn: String,
pub max_concurrency: i32,
pub tolerated_failure_percentage: f64,
pub tolerated_failure_count: i64,
pub status: String,
pub start_date: DateTime<Utc>,
pub stop_date: Option<DateTime<Utc>>,
}Fields§
§map_run_arn: String§execution_arn: String§max_concurrency: i32§tolerated_failure_percentage: f64§tolerated_failure_count: i64§status: String§start_date: DateTime<Utc>§stop_date: Option<DateTime<Utc>>Trait Implementations§
Source§impl<'de> Deserialize<'de> for MapRun
impl<'de> Deserialize<'de> for MapRun
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 MapRun
impl RefUnwindSafe for MapRun
impl Send for MapRun
impl Sync for MapRun
impl Unpin for MapRun
impl UnsafeUnpin for MapRun
impl UnwindSafe for MapRun
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