Struct aws_sdk_forecast::model::ExplainabilityConfig
source · #[non_exhaustive]pub struct ExplainabilityConfig { /* private fields */ }Expand description
The ExplainabilityConfig data type defines the number of time series and time points included in CreateExplainability.
If you provide a predictor ARN for ResourceArn, you must set both TimePointGranularity and TimeSeriesGranularity to “ALL”. When creating Predictor Explainability, Amazon Forecast considers all time series and time points.
If you provide a forecast ARN for ResourceArn, you can set TimePointGranularity and TimeSeriesGranularity to either “ALL” or “Specific”.
Implementations§
source§impl ExplainabilityConfig
impl ExplainabilityConfig
sourcepub fn time_series_granularity(&self) -> Option<&TimeSeriesGranularity>
pub fn time_series_granularity(&self) -> Option<&TimeSeriesGranularity>
To create an Explainability for all time series in your datasets, use ALL. To create an Explainability for specific time series in your datasets, use SPECIFIC.
Specify time series by uploading a CSV or Parquet file to an Amazon S3 bucket and set the location within the DataDestination data type.
sourcepub fn time_point_granularity(&self) -> Option<&TimePointGranularity>
pub fn time_point_granularity(&self) -> Option<&TimePointGranularity>
To create an Explainability for all time points in your forecast horizon, use ALL. To create an Explainability for specific time points in your forecast horizon, use SPECIFIC.
Specify time points with the StartDateTime and EndDateTime parameters within the CreateExplainability operation.
source§impl ExplainabilityConfig
impl ExplainabilityConfig
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ExplainabilityConfig.
Trait Implementations§
source§impl Clone for ExplainabilityConfig
impl Clone for ExplainabilityConfig
source§fn clone(&self) -> ExplainabilityConfig
fn clone(&self) -> ExplainabilityConfig
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ExplainabilityConfig
impl Debug for ExplainabilityConfig
source§impl PartialEq<ExplainabilityConfig> for ExplainabilityConfig
impl PartialEq<ExplainabilityConfig> for ExplainabilityConfig
source§fn eq(&self, other: &ExplainabilityConfig) -> bool
fn eq(&self, other: &ExplainabilityConfig) -> bool
self and other values to be equal, and is used
by ==.