pub struct AutoMLCandidateStep {
pub candidate_step_arn: String,
pub candidate_step_name: String,
pub candidate_step_type: String,
}Expand description
Information about the steps for a Candidate, and what step it is working on.
Fields§
§candidate_step_arn: StringThe ARN for the Candidate's step.
candidate_step_name: StringThe name for the Candidate's step.
candidate_step_type: StringWhether the Candidate is at the transform, training, or processing step.
Trait Implementations§
Source§impl Clone for AutoMLCandidateStep
impl Clone for AutoMLCandidateStep
Source§fn clone(&self) -> AutoMLCandidateStep
fn clone(&self) -> AutoMLCandidateStep
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 AutoMLCandidateStep
impl Debug for AutoMLCandidateStep
Source§impl Default for AutoMLCandidateStep
impl Default for AutoMLCandidateStep
Source§fn default() -> AutoMLCandidateStep
fn default() -> AutoMLCandidateStep
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AutoMLCandidateStep
impl<'de> Deserialize<'de> for AutoMLCandidateStep
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 AutoMLCandidateStep
impl PartialEq for AutoMLCandidateStep
impl StructuralPartialEq for AutoMLCandidateStep
Auto Trait Implementations§
impl Freeze for AutoMLCandidateStep
impl RefUnwindSafe for AutoMLCandidateStep
impl Send for AutoMLCandidateStep
impl Sync for AutoMLCandidateStep
impl Unpin for AutoMLCandidateStep
impl UnwindSafe for AutoMLCandidateStep
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