Class: Aws::FSx::Types::Filter

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-fsx/types.rb

Overview

A filter used to restrict the results of describe calls. You can use multiple filters to return results that meet all applied filter requirements.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name for this filter.

Returns:

  • (String)


5715
5716
5717
5718
5719
5720
# File 'lib/aws-sdk-fsx/types.rb', line 5715

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

#valuesArray<String>

The values of the filter. These are all the values for any of the applied filters.

Returns:

  • (Array<String>)


5715
5716
5717
5718
5719
5720
# File 'lib/aws-sdk-fsx/types.rb', line 5715

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