ConfigService.Paginator.
ListResourceEvaluations
¶paginator = client.get_paginator('list_resource_evaluations')
paginate
(**kwargs)¶Creates an iterator that will paginate through responses from ConfigService.Client.list_resource_evaluations()
.
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
Filters={
'EvaluationMode': 'DETECTIVE'|'PROACTIVE',
'TimeWindow': {
'StartTime': datetime(2015, 1, 1),
'EndTime': datetime(2015, 1, 1)
},
'EvaluationContextIdentifier': 'string'
},
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
Returns a ResourceEvaluationFilters
object.
Filters all resource evaluations results based on an evaluation mode. the valid value for this API is Proactive
.
Returns a TimeWindow
object.
The start time of an execution.
The end time of an execution. The end time must be after the start date.
Filters evaluations for a given infrastructure deployment. For example: CFN Stack.
A dictionary that provides parameters to control pagination.
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 NextToken
will be provided in the output that you can use to resume pagination.
The size of each page.
A token to specify where to start paginating. This is the NextToken
from a previous response.
dict
Response Syntax
{
'ResourceEvaluations': [
{
'ResourceEvaluationId': 'string',
'EvaluationMode': 'DETECTIVE'|'PROACTIVE',
'EvaluationStartTimestamp': datetime(2015, 1, 1)
},
],
}
Response Structure
(dict) --
ResourceEvaluations (list) --
Returns a ResourceEvaluations
object.
(dict) --
Returns details of a resource evaluation.
ResourceEvaluationId (string) --
The ResourceEvaluationId of a evaluation.
EvaluationMode (string) --
The mode of an evaluation. The valid values are Detective or Proactive.
EvaluationStartTimestamp (datetime) --
The starting time of an execution.