#[non_exhaustive]pub struct CandidateArtifactLocationsBuilder { /* private fields */ }
Expand description
A builder for CandidateArtifactLocations
.
Implementations§
source§impl CandidateArtifactLocationsBuilder
impl CandidateArtifactLocationsBuilder
sourcepub fn explainability(self, input: impl Into<String>) -> Self
pub fn explainability(self, input: impl Into<String>) -> Self
The Amazon S3 prefix to the explainability artifacts generated for the AutoML candidate.
This field is required.sourcepub fn set_explainability(self, input: Option<String>) -> Self
pub fn set_explainability(self, input: Option<String>) -> Self
The Amazon S3 prefix to the explainability artifacts generated for the AutoML candidate.
sourcepub fn get_explainability(&self) -> &Option<String>
pub fn get_explainability(&self) -> &Option<String>
The Amazon S3 prefix to the explainability artifacts generated for the AutoML candidate.
sourcepub fn model_insights(self, input: impl Into<String>) -> Self
pub fn model_insights(self, input: impl Into<String>) -> Self
The Amazon S3 prefix to the model insight artifacts generated for the AutoML candidate.
sourcepub fn set_model_insights(self, input: Option<String>) -> Self
pub fn set_model_insights(self, input: Option<String>) -> Self
The Amazon S3 prefix to the model insight artifacts generated for the AutoML candidate.
sourcepub fn get_model_insights(&self) -> &Option<String>
pub fn get_model_insights(&self) -> &Option<String>
The Amazon S3 prefix to the model insight artifacts generated for the AutoML candidate.
sourcepub fn backtest_results(self, input: impl Into<String>) -> Self
pub fn backtest_results(self, input: impl Into<String>) -> Self
The Amazon S3 prefix to the accuracy metrics and the inference results observed over the testing window. Available only for the time-series forecasting problem type.
sourcepub fn set_backtest_results(self, input: Option<String>) -> Self
pub fn set_backtest_results(self, input: Option<String>) -> Self
The Amazon S3 prefix to the accuracy metrics and the inference results observed over the testing window. Available only for the time-series forecasting problem type.
sourcepub fn get_backtest_results(&self) -> &Option<String>
pub fn get_backtest_results(&self) -> &Option<String>
The Amazon S3 prefix to the accuracy metrics and the inference results observed over the testing window. Available only for the time-series forecasting problem type.
sourcepub fn build(self) -> CandidateArtifactLocations
pub fn build(self) -> CandidateArtifactLocations
Consumes the builder and constructs a CandidateArtifactLocations
.
Trait Implementations§
source§impl Clone for CandidateArtifactLocationsBuilder
impl Clone for CandidateArtifactLocationsBuilder
source§fn clone(&self) -> CandidateArtifactLocationsBuilder
fn clone(&self) -> CandidateArtifactLocationsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for CandidateArtifactLocationsBuilder
impl Default for CandidateArtifactLocationsBuilder
source§fn default() -> CandidateArtifactLocationsBuilder
fn default() -> CandidateArtifactLocationsBuilder
source§impl PartialEq for CandidateArtifactLocationsBuilder
impl PartialEq for CandidateArtifactLocationsBuilder
source§fn eq(&self, other: &CandidateArtifactLocationsBuilder) -> bool
fn eq(&self, other: &CandidateArtifactLocationsBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CandidateArtifactLocationsBuilder
Auto Trait Implementations§
impl Freeze for CandidateArtifactLocationsBuilder
impl RefUnwindSafe for CandidateArtifactLocationsBuilder
impl Send for CandidateArtifactLocationsBuilder
impl Sync for CandidateArtifactLocationsBuilder
impl Unpin for CandidateArtifactLocationsBuilder
impl UnwindSafe for CandidateArtifactLocationsBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more