Class: Aws::ElastiCache::Types::Filter

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

Overview

Used to streamline results of a search based on the property being filtered.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The property being filtered. For example, UserId.

Returns:

  • (String)


5173
5174
5175
5176
5177
5178
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 5173

class Filter < Struct.new(
  :name,
  :values)
  SENSITIVE = []
  include Aws::Structure
end

#valuesArray<String>

The property values to filter on. For example, "user-123".

Returns:

  • (Array<String>)


5173
5174
5175
5176
5177
5178
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 5173

class Filter < Struct.new(
  :name,
  :values)
  SENSITIVE = []
  include Aws::Structure
end