Class: Aws::ForecastService::Types::ListMonitorEvaluationsRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#filtersArray<Types::Filter>

An array of filters. For each filter, provide a condition and a match statement. The condition is either IS or IS_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 are IS and IS_NOT.

  • Key - The name of the parameter to filter on. The only valid value is EvaluationState.

  • Value - The value to match. Valid values are only SUCCESS or FAILURE.

For example, to list only successful monitor evaluations, you would specify:

"Filters": [ \{ "Condition": "IS", "Key": "EvaluationState", "Value": "SUCCESS" \} ]

Returns:



5125
5126
5127
5128
5129
5130
5131
5132
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 5125

class ListMonitorEvaluationsRequest < Struct.new(
  :next_token,
  :max_results,
  :monitor_arn,
  :filters)
  SENSITIVE = []
  include Aws::Structure
end

#max_resultsInteger

The maximum number of monitoring results to return.

Returns:

  • (Integer)


5125
5126
5127
5128
5129
5130
5131
5132
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 5125

class ListMonitorEvaluationsRequest < Struct.new(
  :next_token,
  :max_results,
  :monitor_arn,
  :filters)
  SENSITIVE = []
  include Aws::Structure
end

#monitor_arnString

The Amazon Resource Name (ARN) of the monitor resource to get results from.

Returns:

  • (String)


5125
5126
5127
5128
5129
5130
5131
5132
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 5125

class ListMonitorEvaluationsRequest < Struct.new(
  :next_token,
  :max_results,
  :monitor_arn,
  :filters)
  SENSITIVE = []
  include Aws::Structure
end

#next_tokenString

If the result of the previous request was truncated, the response includes a NextToken. To retrieve the next set of results, use the token in the next request. Tokens expire after 24 hours.

Returns:

  • (String)


5125
5126
5127
5128
5129
5130
5131
5132
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 5125

class ListMonitorEvaluationsRequest < Struct.new(
  :next_token,
  :max_results,
  :monitor_arn,
  :filters)
  SENSITIVE = []
  include Aws::Structure
end