pub struct AutoMLJobSummary {
pub auto_ml_job_arn: String,
pub auto_ml_job_name: String,
pub auto_ml_job_secondary_status: String,
pub auto_ml_job_status: String,
pub creation_time: f64,
pub end_time: Option<f64>,
pub failure_reason: Option<String>,
pub last_modified_time: f64,
}
Expand description
Provides a summary about a job.
Fields§
§auto_ml_job_arn: String
The ARN of the job.
auto_ml_job_name: String
The name of the object you are requesting.
auto_ml_job_secondary_status: String
The job's secondary status.
auto_ml_job_status: String
The job's status.
creation_time: f64
When the job was created.
end_time: Option<f64>
The end time.
failure_reason: Option<String>
The failure reason.
last_modified_time: f64
When the job was last modified.
Trait Implementations§
Source§impl Clone for AutoMLJobSummary
impl Clone for AutoMLJobSummary
Source§fn clone(&self) -> AutoMLJobSummary
fn clone(&self) -> AutoMLJobSummary
Returns a copy 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 AutoMLJobSummary
impl Debug for AutoMLJobSummary
Source§impl Default for AutoMLJobSummary
impl Default for AutoMLJobSummary
Source§fn default() -> AutoMLJobSummary
fn default() -> AutoMLJobSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AutoMLJobSummary
impl<'de> Deserialize<'de> for AutoMLJobSummary
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 AutoMLJobSummary
impl PartialEq for AutoMLJobSummary
impl StructuralPartialEq for AutoMLJobSummary
Auto Trait Implementations§
impl Freeze for AutoMLJobSummary
impl RefUnwindSafe for AutoMLJobSummary
impl Send for AutoMLJobSummary
impl Sync for AutoMLJobSummary
impl Unpin for AutoMLJobSummary
impl UnwindSafe for AutoMLJobSummary
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