Class: Aws::LicenseManager::Types::ListLicenseVersionsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LicenseManager::Types::ListLicenseVersionsRequest
- Defined in:
- gems/aws-sdk-licensemanager/lib/aws-sdk-licensemanager/types.rb
Overview
Note:
When making an API call, you may pass ListLicenseVersionsRequest data as a hash:
{
license_arn: "Arn", # required
next_token: "String",
max_results: 1,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#license_arn ⇒ String
Amazon Resource Name (ARN) of the license.
-
#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
#license_arn ⇒ String
Amazon Resource Name (ARN) of the license.
2653 2654 2655 2656 2657 2658 2659 |
# File 'gems/aws-sdk-licensemanager/lib/aws-sdk-licensemanager/types.rb', line 2653 class ListLicenseVersionsRequest < Struct.new( :license_arn, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
Maximum number of results to return in a single call.
2653 2654 2655 2656 2657 2658 2659 |
# File 'gems/aws-sdk-licensemanager/lib/aws-sdk-licensemanager/types.rb', line 2653 class ListLicenseVersionsRequest < Struct.new( :license_arn, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
Token for the next set of results.
2653 2654 2655 2656 2657 2658 2659 |
# File 'gems/aws-sdk-licensemanager/lib/aws-sdk-licensemanager/types.rb', line 2653 class ListLicenseVersionsRequest < Struct.new( :license_arn, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |