#[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
source§impl PartialEq for CandidateArtifactLocations
impl PartialEq for CandidateArtifactLocations
source§fn eq(&self, other: &CandidateArtifactLocations) -> bool
fn eq(&self, other: &CandidateArtifactLocations) -> bool
self
and other
values to be equal, and is used
by ==
.