Class: Aws::Outposts::Types::CancelOrderInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Outposts::Types::CancelOrderInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-outposts/types.rb
Overview
Note:
When making an API call, you may pass CancelOrderInput data as a hash:
{
order_id: "OrderId", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#order_id ⇒ String
The ID of the order to cancel.
Instance Attribute Details
#order_id ⇒ String
The ID of the order to cancel.
149 150 151 152 153 |
# File 'lib/aws-sdk-outposts/types.rb', line 149 class CancelOrderInput < Struct.new( :order_id) SENSITIVE = [] include Aws::Structure end |