Class: Aws::MarketplaceEntitlementService::Types::GetEntitlementsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::MarketplaceEntitlementService::Types::GetEntitlementsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-marketplaceentitlementservice/types.rb
Overview
The GetEntitlementsRequest contains parameters for the GetEntitlements operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#filter ⇒ Hash<String,Array<String>>
Filter is used to return entitlements for a specific customer or for a specific dimension.
-
#max_results ⇒ Integer
The maximum number of items to retrieve from the GetEntitlements operation.
-
#next_token ⇒ String
For paginated calls to GetEntitlements, pass the NextToken from the previous GetEntitlementsResult.
-
#product_code ⇒ String
Product code is used to uniquely identify a product in AWS Marketplace.
Instance Attribute Details
#filter ⇒ Hash<String,Array<String>>
Filter is used to return entitlements for a specific customer or for a specific dimension. Filters are described as keys mapped to a lists of values. Filtered requests are unioned for each value in the value list, and then intersected for each filter key.
127 128 129 130 131 132 133 134 |
# File 'lib/aws-sdk-marketplaceentitlementservice/types.rb', line 127 class GetEntitlementsRequest < Struct.new( :product_code, :filter, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of items to retrieve from the GetEntitlements operation. For pagination, use the NextToken field in subsequent calls to GetEntitlements.
127 128 129 130 131 132 133 134 |
# File 'lib/aws-sdk-marketplaceentitlementservice/types.rb', line 127 class GetEntitlementsRequest < Struct.new( :product_code, :filter, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
For paginated calls to GetEntitlements, pass the NextToken from the previous GetEntitlementsResult.
127 128 129 130 131 132 133 134 |
# File 'lib/aws-sdk-marketplaceentitlementservice/types.rb', line 127 class GetEntitlementsRequest < Struct.new( :product_code, :filter, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#product_code ⇒ String
Product code is used to uniquely identify a product in AWS Marketplace. The product code will be provided by AWS Marketplace when the product listing is created.
127 128 129 130 131 132 133 134 |
# File 'lib/aws-sdk-marketplaceentitlementservice/types.rb', line 127 class GetEntitlementsRequest < Struct.new( :product_code, :filter, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |