Class: Aws::ForecastService::Types::Filter
- Inherits:
-
Struct
- Object
- Struct
- Aws::ForecastService::Types::Filter
- Defined in:
- gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb
Overview
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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#condition ⇒ String
The condition to apply.
-
#key ⇒ String
The name of the parameter to filter on.
-
#value ⇒ String
The value to match.
Instance Attribute Details
#condition ⇒ String
The condition to apply. To include the objects that match the
statement, specify IS
. To exclude matching objects, specify
IS_NOT
.
4335 4336 4337 4338 4339 4340 4341 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 4335 class Filter < Struct.new( :key, :value, :condition) SENSITIVE = [] include Aws::Structure end |