#[non_exhaustive]pub struct AutoMlCandidateGenerationConfig { /* private fields */ }
Expand description
Stores the config information for how a candidate is generated (optional).
Implementations
sourceimpl AutoMlCandidateGenerationConfig
impl AutoMlCandidateGenerationConfig
sourcepub fn feature_specification_s3_uri(&self) -> Option<&str>
pub fn feature_specification_s3_uri(&self) -> Option<&str>
A URL to the Amazon S3 data source containing selected features from the input data source to run an Autopilot job (optional). This file should be in json format as shown below:
{ "FeatureAttributeNames":["col1", "col2", ...] }
.
The key name FeatureAttributeNames
is fixed. The values listed in ["col1", "col2", ...]
is case sensitive and should be a list of strings containing unique values that are a subset of the column names in the input data. The list of columns provided must not include the target column.
sourceimpl AutoMlCandidateGenerationConfig
impl AutoMlCandidateGenerationConfig
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AutoMlCandidateGenerationConfig
.
Trait Implementations
sourceimpl Clone for AutoMlCandidateGenerationConfig
impl Clone for AutoMlCandidateGenerationConfig
sourcefn clone(&self) -> AutoMlCandidateGenerationConfig
fn clone(&self) -> AutoMlCandidateGenerationConfig
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl PartialEq<AutoMlCandidateGenerationConfig> for AutoMlCandidateGenerationConfig
impl PartialEq<AutoMlCandidateGenerationConfig> for AutoMlCandidateGenerationConfig
sourcefn eq(&self, other: &AutoMlCandidateGenerationConfig) -> bool
fn eq(&self, other: &AutoMlCandidateGenerationConfig) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl StructuralPartialEq for AutoMlCandidateGenerationConfig
Auto Trait Implementations
impl RefUnwindSafe for AutoMlCandidateGenerationConfig
impl Send for AutoMlCandidateGenerationConfig
impl Sync for AutoMlCandidateGenerationConfig
impl Unpin for AutoMlCandidateGenerationConfig
impl UnwindSafe for AutoMlCandidateGenerationConfig
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more