Class: Aws::LicenseManager::Types::ListLicensesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LicenseManager::Types::ListLicensesRequest
- Defined in:
- gems/aws-sdk-licensemanager/lib/aws-sdk-licensemanager/types.rb
Overview
Note:
When making an API call, you may pass ListLicensesRequest data as a hash:
{
license_arns: ["Arn"],
filters: [
{
name: "FilterName",
values: ["FilterValue"],
},
],
next_token: "String",
max_results: 1,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#filters ⇒ Array<Types::Filter>
Filters to scope the results.
-
#license_arns ⇒ Array<String>
Amazon Resource Names (ARNs) of the licenses.
-
#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::Filter>
Filters to scope the results. The following filters are supported:
Beneficiary
ProductSKU
KeyFingerprint
Status
2719 2720 2721 2722 2723 2724 2725 2726 |
# File 'gems/aws-sdk-licensemanager/lib/aws-sdk-licensemanager/types.rb', line 2719 class ListLicensesRequest < Struct.new( :license_arns, :filters, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#license_arns ⇒ Array<String>
Amazon Resource Names (ARNs) of the licenses.
2719 2720 2721 2722 2723 2724 2725 2726 |
# File 'gems/aws-sdk-licensemanager/lib/aws-sdk-licensemanager/types.rb', line 2719 class ListLicensesRequest < Struct.new( :license_arns, :filters, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
Maximum number of results to return in a single call.
2719 2720 2721 2722 2723 2724 2725 2726 |
# File 'gems/aws-sdk-licensemanager/lib/aws-sdk-licensemanager/types.rb', line 2719 class ListLicensesRequest < Struct.new( :license_arns, :filters, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
Token for the next set of results.
2719 2720 2721 2722 2723 2724 2725 2726 |
# File 'gems/aws-sdk-licensemanager/lib/aws-sdk-licensemanager/types.rb', line 2719 class ListLicensesRequest < Struct.new( :license_arns, :filters, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |