Class: Aws::FSx::Types::SnapshotFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::FSx::Types::SnapshotFilter
- Defined in:
- gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb
Overview
Note:
When making an API call, you may pass SnapshotFilter data as a hash:
{
name: "file-system-id", # accepts file-system-id, volume-id
values: ["SnapshotFilterValue"],
}
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
-
#name ⇒ String
The name of the filter to use.
-
#values ⇒ Array<String>
The
file-system-id
orvolume-id
that you are filtering for.
Instance Attribute Details
#name ⇒ String
The name of the filter to use. You can filter by the
file-system-id
or by volume-id
.
7143 7144 7145 7146 7147 7148 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 7143 class SnapshotFilter < Struct.new( :name, :values) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<String>
The file-system-id
or volume-id
that you are filtering for.
7143 7144 7145 7146 7147 7148 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 7143 class SnapshotFilter < Struct.new( :name, :values) SENSITIVE = [] include Aws::Structure end |