Class: Aws::LicenseManagerLinuxSubscriptions::Types::ListLinuxSubscriptionInstancesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LicenseManagerLinuxSubscriptions::Types::ListLinuxSubscriptionInstancesRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-licensemanagerlinuxsubscriptions/types.rb
Overview
NextToken length limit is half of ddb accepted limit. Increase this limit if parameters in request increases.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#filters ⇒ Array<Types::Filter>
An array of structures that you can use to filter the results by your specified criteria.
-
#max_results ⇒ Integer
The maximum items to return in a request.
-
#next_token ⇒ String
A token to specify where to start paginating.
Instance Attribute Details
#filters ⇒ Array<Types::Filter>
An array of structures that you can use to filter the results by your specified criteria. For example, you can specify ‘Region` in the `Name`, with the `contains` operator to list all subscriptions that match a partial string in the `Value`, such as `us-west`.
For each filter, you can specify one of the following values for the ‘Name` key to streamline results:
-
‘AccountID`
-
‘AmiID`
-
‘DualSubscription`
-
‘InstanceID`
-
‘InstanceType`
-
‘ProductCode`
-
‘Region`
-
‘Status`
-
‘UsageOperation`
For each filter, you can use one of the following ‘Operator` values to define the behavior of the filter:
-
‘contains`
-
‘equals`
-
‘Notequal`
340 341 342 343 344 345 346 |
# File 'lib/aws-sdk-licensemanagerlinuxsubscriptions/types.rb', line 340 class ListLinuxSubscriptionInstancesRequest < Struct.new( :filters, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum items to return in a request.
340 341 342 343 344 345 346 |
# File 'lib/aws-sdk-licensemanagerlinuxsubscriptions/types.rb', line 340 class ListLinuxSubscriptionInstancesRequest < Struct.new( :filters, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A token to specify where to start paginating. This is the nextToken from a previously truncated response.
340 341 342 343 344 345 346 |
# File 'lib/aws-sdk-licensemanagerlinuxsubscriptions/types.rb', line 340 class ListLinuxSubscriptionInstancesRequest < Struct.new( :filters, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |