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

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

Overview

Note:

When making an API call, you may pass Filter data as a hash:

{
  name: "file-system-id", # accepts file-system-id, backup-type
  values: ["FilterValue"],
}

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

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name for this filter.

Returns:

  • (String)


987
988
989
990
991
# File 'lib/aws-sdk-fsx/types.rb', line 987

class Filter < Struct.new(
  :name,
  :values)
  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>)


987
988
989
990
991
# File 'lib/aws-sdk-fsx/types.rb', line 987

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