pub struct ProcessingJobSummary {
pub creation_time: f64,
pub exit_message: Option<String>,
pub failure_reason: Option<String>,
pub last_modified_time: Option<f64>,
pub processing_end_time: Option<f64>,
pub processing_job_arn: String,
pub processing_job_name: String,
pub processing_job_status: String,
}
Expand description
Summary of information about a processing job.
Fields§
§creation_time: f64
The time at which the processing job was created.
exit_message: Option<String>
An optional string, up to one KB in size, that contains metadata from the processing container when the processing job exits.
failure_reason: Option<String>
A string, up to one KB in size, that contains the reason a processing job failed, if it failed.
last_modified_time: Option<f64>
A timestamp that indicates the last time the processing job was modified.
processing_end_time: Option<f64>
The time at which the processing job completed.
processing_job_arn: String
The Amazon Resource Name (ARN) of the processing job..
processing_job_name: String
The name of the processing job.
processing_job_status: String
The status of the processing job.
Trait Implementations§
Source§impl Clone for ProcessingJobSummary
impl Clone for ProcessingJobSummary
Source§fn clone(&self) -> ProcessingJobSummary
fn clone(&self) -> ProcessingJobSummary
Returns a duplicate 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 ProcessingJobSummary
impl Debug for ProcessingJobSummary
Source§impl Default for ProcessingJobSummary
impl Default for ProcessingJobSummary
Source§fn default() -> ProcessingJobSummary
fn default() -> ProcessingJobSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProcessingJobSummary
impl<'de> Deserialize<'de> for ProcessingJobSummary
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
Source§impl PartialEq for ProcessingJobSummary
impl PartialEq for ProcessingJobSummary
impl StructuralPartialEq for ProcessingJobSummary
Auto Trait Implementations§
impl Freeze for ProcessingJobSummary
impl RefUnwindSafe for ProcessingJobSummary
impl Send for ProcessingJobSummary
impl Sync for ProcessingJobSummary
impl Unpin for ProcessingJobSummary
impl UnwindSafe for ProcessingJobSummary
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