Class: Aws::FSx::Types::SnapshotFilter

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

Overview

A filter used to restrict the results of ‘DescribeSnapshots` 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 of the filter to use. You can filter by the ‘file-system-id` or by `volume-id`.

Returns:

  • (String)


7710
7711
7712
7713
7714
7715
# File 'lib/aws-sdk-fsx/types.rb', line 7710

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

#valuesArray<String>

The ‘file-system-id` or `volume-id` that you are filtering for.

Returns:

  • (Array<String>)


7710
7711
7712
7713
7714
7715
# File 'lib/aws-sdk-fsx/types.rb', line 7710

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