Class: Aws::LicenseManager::Types::Filter
- Inherits:
-
Struct
- Object
- Struct
- Aws::LicenseManager::Types::Filter
- Defined in:
- gems/aws-sdk-licensemanager/lib/aws-sdk-licensemanager/types.rb
Overview
A filter name and value pair that is used to return more specific results from a describe operation. Filters can be used to match a set of resources by specific criteria, such as tags, attributes, or IDs.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
Name of the filter.
-
#values ⇒ Array<String>
The value of the filter, which is case-sensitive.
Instance Attribute Details
#name ⇒ String
Name of the filter. Filter names are case-sensitive.
1267 1268 1269 1270 1271 1272 |
# File 'gems/aws-sdk-licensemanager/lib/aws-sdk-licensemanager/types.rb', line 1267 class Filter < Struct.new( :name, :values) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<String>
The value of the filter, which is case-sensitive. You can only specify one value for the filter.
1267 1268 1269 1270 1271 1272 |
# File 'gems/aws-sdk-licensemanager/lib/aws-sdk-licensemanager/types.rb', line 1267 class Filter < Struct.new( :name, :values) SENSITIVE = [] include Aws::Structure end |