#[non_exhaustive]pub struct CandidateArtifactLocations {
pub explainability: Option<String>,
pub model_insights: Option<String>,
pub backtest_results: Option<String>,
}
Expand description
The location of artifacts for an AutoML candidate job.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.explainability: Option<String>
The Amazon S3 prefix to the explainability artifacts generated for the AutoML candidate.
model_insights: Option<String>
The Amazon S3 prefix to the model insight artifacts generated for the AutoML candidate.
backtest_results: 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.
Implementations§
source§impl CandidateArtifactLocations
impl CandidateArtifactLocations
sourcepub fn explainability(&self) -> Option<&str>
pub fn explainability(&self) -> Option<&str>
The Amazon S3 prefix to the explainability artifacts generated for the AutoML candidate.
sourcepub fn model_insights(&self) -> Option<&str>
pub fn model_insights(&self) -> Option<&str>
The Amazon S3 prefix to the model insight artifacts generated for the AutoML candidate.
sourcepub fn backtest_results(&self) -> Option<&str>
pub fn backtest_results(&self) -> Option<&str>
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.
source§impl CandidateArtifactLocations
impl CandidateArtifactLocations
sourcepub fn builder() -> CandidateArtifactLocationsBuilder
pub fn builder() -> CandidateArtifactLocationsBuilder
Creates a new builder-style object to manufacture CandidateArtifactLocations
.
Trait Implementations§
source§impl Clone for CandidateArtifactLocations
impl Clone for CandidateArtifactLocations
source§fn clone(&self) -> CandidateArtifactLocations
fn clone(&self) -> CandidateArtifactLocations
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CandidateArtifactLocations
impl Debug for CandidateArtifactLocations
impl StructuralPartialEq for CandidateArtifactLocations
Auto Trait Implementations§
impl Freeze for CandidateArtifactLocations
impl RefUnwindSafe for CandidateArtifactLocations
impl Send for CandidateArtifactLocations
impl Sync for CandidateArtifactLocations
impl Unpin for CandidateArtifactLocations
impl UnwindSafe for CandidateArtifactLocations
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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