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,
pub partial_failure_reasons: Option<Vec<AutoMLPartialFailureReason>>,
}
Expand description
Provides a summary about an AutoML job.
Fields§
§auto_ml_job_arn: String
The ARN of the AutoML job.
auto_ml_job_name: String
The name of the AutoML you are requesting.
auto_ml_job_secondary_status: String
The secondary status of the AutoML job.
auto_ml_job_status: String
The status of the AutoML job.
creation_time: f64
When the AutoML job was created.
end_time: Option<f64>
The end time of an AutoML job.
failure_reason: Option<String>
The failure reason of an AutoML job.
last_modified_time: f64
When the AutoML job was last modified.
partial_failure_reasons: Option<Vec<AutoMLPartialFailureReason>>
The list of reasons for partial failures within an AutoML job.
Trait Implementations§
Source§impl Clone for AutoMLJobSummary
impl Clone for AutoMLJobSummary
Source§fn clone(&self) -> AutoMLJobSummary
fn clone(&self) -> AutoMLJobSummary
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 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