Class: Aws::Outposts::Types::LineItemRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Outposts::Types::LineItemRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-outposts/types.rb
Overview
Note:
When making an API call, you may pass LineItemRequest data as a hash:
{
catalog_item_id: "SkuCode",
quantity: 1,
}
Information about a line item request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#catalog_item_id ⇒ String
The ID of the catalog item.
-
#quantity ⇒ Integer
The quantity of a line item request.
Instance Attribute Details
#catalog_item_id ⇒ String
The ID of the catalog item.
854 855 856 857 858 859 |
# File 'lib/aws-sdk-outposts/types.rb', line 854 class LineItemRequest < Struct.new( :catalog_item_id, :quantity) SENSITIVE = [] include Aws::Structure end |
#quantity ⇒ Integer
The quantity of a line item request.
854 855 856 857 858 859 |
# File 'lib/aws-sdk-outposts/types.rb', line 854 class LineItemRequest < Struct.new( :catalog_item_id, :quantity) SENSITIVE = [] include Aws::Structure end |