Struct aws_sdk_forecast::model::ExplainabilityConfig
source ·
[−]#[non_exhaustive]pub struct ExplainabilityConfig {
pub time_series_granularity: Option<TimeSeriesGranularity>,
pub time_point_granularity: Option<TimePointGranularity>,
}
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”.
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.time_series_granularity: 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 file to an Amazon S3 bucket and set the location within the DataDestination
data type.
time_point_granularity: 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.
Implementations
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 file to an Amazon S3 bucket and set the location within the DataDestination
data type.
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.
Creates a new builder-style object to manufacture ExplainabilityConfig
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ExplainabilityConfig
impl Send for ExplainabilityConfig
impl Sync for ExplainabilityConfig
impl Unpin for ExplainabilityConfig
impl UnwindSafe for ExplainabilityConfig
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more