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,
EqualsorContains). -
#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).
3599 3600 3601 3602 3603 3604 3605 |
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 3599 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).
3599 3600 3601 3602 3603 3604 3605 |
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 3599 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.
3599 3600 3601 3602 3603 3604 3605 |
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 3599 class LocationFilter < Struct.new( :name, :values, :operator) SENSITIVE = [] include Aws::Structure end |