Class: Aws::DataSync::Types::LocationFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataSync::Types::LocationFilter
- Defined in:
- gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb
Overview
Narrow down the list of resources returned by ListLocations
. For
example, to see all your Amazon S3 locations, create a filter using
"Name": "LocationType"
, "Operator": "Equals"
, and "Values":
"S3"
.
For more information, see filtering resources.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the filter being used.
-
#operator ⇒ String
The operator that is used to compare filter values (for example,
Equals
orContains
). -
#values ⇒ Array<String>
The values that you want to filter for.
Instance Attribute Details
#name ⇒ String
The name of the filter being used. Each API call supports a list of
filters that are available for it (for example, LocationType
for
ListLocations
).
3928 3929 3930 3931 3932 3933 3934 |
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 3928 class LocationFilter < Struct.new( :name, :values, :operator) SENSITIVE = [] include Aws::Structure end |
#operator ⇒ String
The operator that is used to compare filter values (for example,
Equals
or Contains
).
3928 3929 3930 3931 3932 3933 3934 |
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 3928 class LocationFilter < Struct.new( :name, :values, :operator) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<String>
The values that you want to filter for. For example, you might want to display only Amazon S3 locations.
3928 3929 3930 3931 3932 3933 3934 |
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 3928 class LocationFilter < Struct.new( :name, :values, :operator) SENSITIVE = [] include Aws::Structure end |