Class: Aws::LicenseManager::Types::ListResourceInventoryRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LicenseManager::Types::ListResourceInventoryRequest
- Defined in:
- gems/aws-sdk-licensemanager/lib/aws-sdk-licensemanager/types.rb
Overview
When making an API call, you may pass ListResourceInventoryRequest data as a hash:
{
max_results: 1,
next_token: "String",
filters: [
{
name: "String", # required
condition: "EQUALS", # required, accepts EQUALS, NOT_EQUALS, BEGINS_WITH, CONTAINS
value: "String",
},
],
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#filters ⇒ Array<Types::InventoryFilter>
Filters to scope the results.
-
#max_results ⇒ Integer
Maximum number of results to return in a single call.
-
#next_token ⇒ String
Token for the next set of results.
Instance Attribute Details
#filters ⇒ Array<Types::InventoryFilter>
Filters to scope the results. The following filters and logical operators are supported:
account_id
- The ID of the AWS account that owns the resource. Logical operators areEQUALS
|NOT_EQUALS
.application_name
- The name of the application. Logical operators areEQUALS
|BEGINS_WITH
.license_included
- The type of license included. Logical operators areEQUALS
|NOT_EQUALS
. Possible values aresql-server-enterprise
|sql-server-standard
|sql-server-web
|windows-server-datacenter
.platform
- The platform of the resource. Logical operators areEQUALS
|BEGINS_WITH
.resource_id
- The ID of the resource. Logical operators areEQUALS
|NOT_EQUALS
.tag:<key>
- The key/value combination of a tag assigned to the resource. Logical operators areEQUALS
(single account) orEQUALS
|NOT_EQUALS
(cross account).
2926 2927 2928 2929 2930 2931 2932 |
# File 'gems/aws-sdk-licensemanager/lib/aws-sdk-licensemanager/types.rb', line 2926 class ListResourceInventoryRequest < Struct.new( :max_results, :next_token, :filters) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
Maximum number of results to return in a single call.
2926 2927 2928 2929 2930 2931 2932 |
# File 'gems/aws-sdk-licensemanager/lib/aws-sdk-licensemanager/types.rb', line 2926 class ListResourceInventoryRequest < Struct.new( :max_results, :next_token, :filters) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
Token for the next set of results.
2926 2927 2928 2929 2930 2931 2932 |
# File 'gems/aws-sdk-licensemanager/lib/aws-sdk-licensemanager/types.rb', line 2926 class ListResourceInventoryRequest < Struct.new( :max_results, :next_token, :filters) SENSITIVE = [] include Aws::Structure end |