Class: Aws::FSx::Types::DataRepositoryTaskFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::FSx::Types::DataRepositoryTaskFilter
- Defined in:
- gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb
Overview
(Optional) An array of filter objects you can use to filter the
response of data repository tasks you will see in the response. You
can filter the tasks returned in the response by one or more file
system IDs, task lifecycles, and by task type. A filter object
consists of a filter Name, and one or more Values for the filter.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
Name of the task property to use in filtering the tasks returned in the response.
-
#values ⇒ Array<String>
Use Values to include the specific file system IDs and task lifecycle states for the filters you are using.
Instance Attribute Details
#name ⇒ String
Name of the task property to use in filtering the tasks returned in the response.
Use
file-system-idto retrieve data repository tasks for specific file systems.Use
task-lifecycleto retrieve data repository tasks with one or more specific lifecycle states, as follows: CANCELED, EXECUTING, FAILED, PENDING, and SUCCEEDED.
4363 4364 4365 4366 4367 4368 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 4363 class DataRepositoryTaskFilter < Struct.new( :name, :values) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<String>
Use Values to include the specific file system IDs and task lifecycle states for the filters you are using.
4363 4364 4365 4366 4367 4368 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 4363 class DataRepositoryTaskFilter < Struct.new( :name, :values) SENSITIVE = [] include Aws::Structure end |