class Aws::ForecastService::Types::Filter

Describes a filter for choosing a subset of objects. Each filter consists of a condition and a match statement. The condition is either `IS` or `IS_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.

@note When making an API call, you may pass Filter

data as a hash:

    {
      key: "String", # required
      value: "Arn", # required
      condition: "IS", # required, accepts IS, IS_NOT
    }

@!attribute [rw] key

The name of the parameter to filter on.
@return [String]

@!attribute [rw] value

The value to match.
@return [String]

@!attribute [rw] condition

The condition to apply. To include the objects that match the
statement, specify `IS`. To exclude matching objects, specify
`IS_NOT`.
@return [String]

@see docs.aws.amazon.com/goto/WebAPI/forecast-2018-06-26/Filter AWS API Documentation

Constants

SENSITIVE