Struct aws_sdk_sagemaker::model::clarify_explainer_config::Builder
source · [−]pub struct Builder { /* private fields */ }Expand description
A builder for ClarifyExplainerConfig.
Implementations
sourceimpl Builder
impl Builder
sourcepub fn enable_explanations(self, input: impl Into<String>) -> Self
pub fn enable_explanations(self, input: impl Into<String>) -> Self
A JMESPath boolean expression used to filter which records to explain. Explanations are activated by default. See EnableExplanations for additional information.
sourcepub fn set_enable_explanations(self, input: Option<String>) -> Self
pub fn set_enable_explanations(self, input: Option<String>) -> Self
A JMESPath boolean expression used to filter which records to explain. Explanations are activated by default. See EnableExplanations for additional information.
sourcepub fn inference_config(self, input: ClarifyInferenceConfig) -> Self
pub fn inference_config(self, input: ClarifyInferenceConfig) -> Self
The inference configuration parameter for the model container.
sourcepub fn set_inference_config(self, input: Option<ClarifyInferenceConfig>) -> Self
pub fn set_inference_config(self, input: Option<ClarifyInferenceConfig>) -> Self
The inference configuration parameter for the model container.
sourcepub fn shap_config(self, input: ClarifyShapConfig) -> Self
pub fn shap_config(self, input: ClarifyShapConfig) -> Self
The configuration for SHAP analysis.
sourcepub fn set_shap_config(self, input: Option<ClarifyShapConfig>) -> Self
pub fn set_shap_config(self, input: Option<ClarifyShapConfig>) -> Self
The configuration for SHAP analysis.
sourcepub fn build(self) -> ClarifyExplainerConfig
pub fn build(self) -> ClarifyExplainerConfig
Consumes the builder and constructs a ClarifyExplainerConfig.
Trait Implementations
impl StructuralPartialEq for Builder
Auto Trait Implementations
impl RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl UnwindSafe for Builder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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