pub struct TrainingJobSummary {
pub creation_time: f64,
pub last_modified_time: Option<f64>,
pub training_end_time: Option<f64>,
pub training_job_arn: String,
pub training_job_name: String,
pub training_job_status: String,
}
Expand description
Provides summary information about a training job.
Fields§
§creation_time: f64
A timestamp that shows when the training job was created.
last_modified_time: Option<f64>
Timestamp when the training job was last modified.
training_end_time: Option<f64>
A timestamp that shows when the training job ended. This field is set only if the training job has one of the terminal statuses (Completed
, Failed
, or Stopped
).
training_job_arn: String
The Amazon Resource Name (ARN) of the training job.
training_job_name: String
The name of the training job that you want a summary for.
training_job_status: String
The status of the training job.
Trait Implementations§
Source§impl Clone for TrainingJobSummary
impl Clone for TrainingJobSummary
Source§fn clone(&self) -> TrainingJobSummary
fn clone(&self) -> TrainingJobSummary
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 TrainingJobSummary
impl Debug for TrainingJobSummary
Source§impl Default for TrainingJobSummary
impl Default for TrainingJobSummary
Source§fn default() -> TrainingJobSummary
fn default() -> TrainingJobSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TrainingJobSummary
impl<'de> Deserialize<'de> for TrainingJobSummary
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 TrainingJobSummary
impl PartialEq for TrainingJobSummary
impl StructuralPartialEq for TrainingJobSummary
Auto Trait Implementations§
impl Freeze for TrainingJobSummary
impl RefUnwindSafe for TrainingJobSummary
impl Send for TrainingJobSummary
impl Sync for TrainingJobSummary
impl Unpin for TrainingJobSummary
impl UnwindSafe for TrainingJobSummary
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