ForecastService / Paginator / ListExplainabilities
ListExplainabilities¶
- class ForecastService.Paginator.ListExplainabilities¶
paginator = client.get_paginator('list_explainabilities')
- paginate(**kwargs)¶
Creates an iterator that will paginate through responses from
ForecastService.Client.list_explainabilities().See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( Filters=[ { 'Key': 'string', 'Value': 'string', 'Condition': 'IS'|'IS_NOT' }, ], PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } )
- Parameters:
Filters (list) –
An array of filters. For each filter, provide a condition and a match statement. The condition is either
ISorIS_NOT, which specifies whether to include or exclude the resources that match the statement from the list. The match statement consists of a key and a value.Filter properties
Condition- The condition to apply. Valid values areISandIS_NOT.Key- The name of the parameter to filter on. Valid values areResourceArnandStatus.Value- The value to match.
(dict) –
Describes a filter for choosing a subset of objects. Each filter consists of a condition and a match statement. The condition is either
ISorIS_NOT, which specifies whether to include or exclude the objects that match the statement, respectively. The match statement consists of a key and a value.Key (string) – [REQUIRED]
The name of the parameter to filter on.
Value (string) – [REQUIRED]
The value to match.
Condition (string) – [REQUIRED]
The condition to apply. To include the objects that match the statement, specify
IS. To exclude matching objects, specifyIS_NOT.
PaginationConfig (dict) –
A dictionary that provides parameters to control pagination.
MaxItems (integer) –
The total number of items to return. If the total number of items available is more than the value specified in max-items then a
NextTokenwill be provided in the output that you can use to resume pagination.PageSize (integer) –
The size of each page.
StartingToken (string) –
A token to specify where to start paginating. This is the
NextTokenfrom a previous response.
- Return type:
dict
- Returns:
Response Syntax
{ 'Explainabilities': [ { 'ExplainabilityArn': 'string', 'ExplainabilityName': 'string', 'ResourceArn': 'string', 'ExplainabilityConfig': { 'TimeSeriesGranularity': 'ALL'|'SPECIFIC', 'TimePointGranularity': 'ALL'|'SPECIFIC' }, 'Status': 'string', 'Message': 'string', 'CreationTime': datetime(2015, 1, 1), 'LastModificationTime': datetime(2015, 1, 1) }, ], }
Response Structure
(dict) –
Explainabilities (list) –
An array of objects that summarize the properties of each Explainability resource.
(dict) –
Provides a summary of the Explainability properties used in the ListExplainabilities operation. To get a complete set of properties, call the DescribeExplainability operation, and provide the listed
ExplainabilityArn.ExplainabilityArn (string) –
The Amazon Resource Name (ARN) of the Explainability.
ExplainabilityName (string) –
The name of the Explainability.
ResourceArn (string) –
The Amazon Resource Name (ARN) of the Predictor or Forecast used to create the Explainability.
ExplainabilityConfig (dict) –
The configuration settings that define the granularity of time series and time points for the Explainability.
TimeSeriesGranularity (string) –
To create an Explainability for all time series in your datasets, use
ALL. To create an Explainability for specific time series in your datasets, useSPECIFIC.Specify time series by uploading a CSV or Parquet file to an Amazon S3 bucket and set the location within the DataDestination data type.
TimePointGranularity (string) –
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, useSPECIFIC.Specify time points with the
StartDateTimeandEndDateTimeparameters within the CreateExplainability operation.
Status (string) –
The status of the Explainability. States include:
ACTIVECREATE_PENDING,CREATE_IN_PROGRESS,CREATE_FAILEDCREATE_STOPPING,CREATE_STOPPEDDELETE_PENDING,DELETE_IN_PROGRESS,DELETE_FAILED
Message (string) –
Information about any errors that may have occurred during the Explainability creation process.
CreationTime (datetime) –
When the Explainability was created.
LastModificationTime (datetime) –
The last time the resource was modified. The timestamp depends on the status of the job:
CREATE_PENDING- TheCreationTime.CREATE_IN_PROGRESS- The current timestamp.CREATE_STOPPING- The current timestamp.CREATE_STOPPED- When the job stopped.ACTIVEorCREATE_FAILED- When the job finished or failed.