Struct aws_sdk_sagemaker::types::ResolvedAttributes
source · #[non_exhaustive]pub struct ResolvedAttributes { /* private fields */ }
Expand description
The resolved attributes.
Implementations§
source§impl ResolvedAttributes
impl ResolvedAttributes
sourcepub fn auto_ml_job_objective(&self) -> Option<&AutoMlJobObjective>
pub fn auto_ml_job_objective(&self) -> Option<&AutoMlJobObjective>
Specifies a metric to minimize or maximize as the objective of a job. V2 API jobs (for example jobs created by calling CreateAutoMLJobV2
), support Accuracy
only.
sourcepub fn problem_type(&self) -> Option<&ProblemType>
pub fn problem_type(&self) -> Option<&ProblemType>
The problem type.
sourcepub fn completion_criteria(&self) -> Option<&AutoMlJobCompletionCriteria>
pub fn completion_criteria(&self) -> Option<&AutoMlJobCompletionCriteria>
How long a job is allowed to run, or how many candidates a job is allowed to generate.
source§impl ResolvedAttributes
impl ResolvedAttributes
sourcepub fn builder() -> ResolvedAttributesBuilder
pub fn builder() -> ResolvedAttributesBuilder
Creates a new builder-style object to manufacture ResolvedAttributes
.
Trait Implementations§
source§impl Clone for ResolvedAttributes
impl Clone for ResolvedAttributes
source§fn clone(&self) -> ResolvedAttributes
fn clone(&self) -> ResolvedAttributes
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 ResolvedAttributes
impl Debug for ResolvedAttributes
source§impl PartialEq<ResolvedAttributes> for ResolvedAttributes
impl PartialEq<ResolvedAttributes> for ResolvedAttributes
source§fn eq(&self, other: &ResolvedAttributes) -> bool
fn eq(&self, other: &ResolvedAttributes) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ResolvedAttributes
Auto Trait Implementations§
impl RefUnwindSafe for ResolvedAttributes
impl Send for ResolvedAttributes
impl Sync for ResolvedAttributes
impl Unpin for ResolvedAttributes
impl UnwindSafe for ResolvedAttributes
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