Struct aws_sdk_outposts::model::OrderSummary
source · [−]#[non_exhaustive]pub struct OrderSummary {
pub outpost_id: Option<String>,
pub order_id: Option<String>,
pub order_type: Option<OrderType>,
pub status: Option<OrderStatus>,
pub line_item_counts_by_status: Option<HashMap<LineItemStatus, i32>>,
pub order_submission_date: Option<DateTime>,
pub order_fulfilled_date: Option<DateTime>,
}
Expand description
A summary of line items in your order.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.outpost_id: Option<String>
The ID of the Outpost.
order_id: Option<String>
The ID of the order.
order_type: Option<OrderType>
The type of order.
status: Option<OrderStatus>
The status of the order.
-
PREPARING
- Order is received and is being prepared. -
IN_PROGRESS
- Order is either being built, shipped, or installed. For more information, see theLineItem
status. -
COMPLETED
- Order is complete. -
CANCELLED
- Order is cancelled. -
ERROR
- Customer should contact support.
The following statuses are deprecated: RECEIVED
, PENDING
, PROCESSING
, INSTALLING
, and FULFILLED
.
line_item_counts_by_status: Option<HashMap<LineItemStatus, i32>>
The status of all line items in the order.
order_submission_date: Option<DateTime>
Submission date for the order.
order_fulfilled_date: Option<DateTime>
Fulfilment date for the order.
Implementations
The ID of the Outpost.
The type of order.
The status of the order.
-
PREPARING
- Order is received and is being prepared. -
IN_PROGRESS
- Order is either being built, shipped, or installed. For more information, see theLineItem
status. -
COMPLETED
- Order is complete. -
CANCELLED
- Order is cancelled. -
ERROR
- Customer should contact support.
The following statuses are deprecated: RECEIVED
, PENDING
, PROCESSING
, INSTALLING
, and FULFILLED
.
The status of all line items in the order.
Submission date for the order.
Fulfilment date for the order.
Creates a new builder-style object to manufacture OrderSummary
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for OrderSummary
impl Send for OrderSummary
impl Sync for OrderSummary
impl Unpin for OrderSummary
impl UnwindSafe for OrderSummary
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more