Class: Aws::LicenseManager::Types::InventoryFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::LicenseManager::Types::InventoryFilter
- Defined in:
- gems/aws-sdk-licensemanager/lib/aws-sdk-licensemanager/types.rb
Overview
Note:
When making an API call, you may pass InventoryFilter data as a hash:
{
name: "String", # required
condition: "EQUALS", # required, accepts EQUALS, NOT_EQUALS, BEGINS_WITH, CONTAINS
value: "String",
}
An inventory filter.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#condition ⇒ String
Condition of the filter.
-
#name ⇒ String
Name of the filter.
-
#value ⇒ String
Value of the filter.
Instance Attribute Details
#condition ⇒ String
Condition of the filter.
2220 2221 2222 2223 2224 2225 2226 |
# File 'gems/aws-sdk-licensemanager/lib/aws-sdk-licensemanager/types.rb', line 2220 class InventoryFilter < Struct.new( :name, :condition, :value) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
Name of the filter.
2220 2221 2222 2223 2224 2225 2226 |
# File 'gems/aws-sdk-licensemanager/lib/aws-sdk-licensemanager/types.rb', line 2220 class InventoryFilter < Struct.new( :name, :condition, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
Value of the filter.
2220 2221 2222 2223 2224 2225 2226 |
# File 'gems/aws-sdk-licensemanager/lib/aws-sdk-licensemanager/types.rb', line 2220 class InventoryFilter < Struct.new( :name, :condition, :value) SENSITIVE = [] include Aws::Structure end |