Skip to content

Commit 8060deb

Browse files
author
awstools
committed
feat(client-outposts): This release adds EXPEDITORS as a valid shipment carrier.
1 parent b4a9a68 commit 8060deb

File tree

4 files changed

+9
-2
lines changed

4 files changed

+9
-2
lines changed

clients/client-outposts/src/commands/CreateOrderCommand.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export interface CreateOrderCommandOutput extends CreateOrderOutput, __MetadataB
6060
* // Status: "PREPARING" || "BUILDING" || "SHIPPED" || "DELIVERED" || "INSTALLING" || "INSTALLED" || "ERROR" || "CANCELLED" || "REPLACED",
6161
* // ShipmentInformation: { // ShipmentInformation
6262
* // ShipmentTrackingNumber: "STRING_VALUE",
63-
* // ShipmentCarrier: "DHL" || "DBS" || "FEDEX" || "UPS",
63+
* // ShipmentCarrier: "DHL" || "DBS" || "FEDEX" || "UPS" || "EXPEDITORS",
6464
* // },
6565
* // AssetInformationList: [ // LineItemAssetInformationList
6666
* // { // LineItemAssetInformation

clients/client-outposts/src/commands/GetOrderCommand.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export interface GetOrderCommandOutput extends GetOrderOutput, __MetadataBearer
5252
* // Status: "PREPARING" || "BUILDING" || "SHIPPED" || "DELIVERED" || "INSTALLING" || "INSTALLED" || "ERROR" || "CANCELLED" || "REPLACED",
5353
* // ShipmentInformation: { // ShipmentInformation
5454
* // ShipmentTrackingNumber: "STRING_VALUE",
55-
* // ShipmentCarrier: "DHL" || "DBS" || "FEDEX" || "UPS",
55+
* // ShipmentCarrier: "DHL" || "DBS" || "FEDEX" || "UPS" || "EXPEDITORS",
5656
* // },
5757
* // AssetInformationList: [ // LineItemAssetInformationList
5858
* // { // LineItemAssetInformation

clients/client-outposts/src/models/models_0.ts

+1
Original file line numberDiff line numberDiff line change
@@ -630,6 +630,7 @@ export interface LineItemAssetInformation {
630630
export const ShipmentCarrier = {
631631
DBS: "DBS",
632632
DHL: "DHL",
633+
EXPEDITORS: "EXPEDITORS",
633634
FEDEX: "FEDEX",
634635
UPS: "UPS",
635636
} as const;

codegen/sdk-codegen/aws-models/outposts.json

+6
Original file line numberDiff line numberDiff line change
@@ -4334,6 +4334,12 @@
43344334
"traits": {
43354335
"smithy.api#enumValue": "UPS"
43364336
}
4337+
},
4338+
"EXPEDITORS": {
4339+
"target": "smithy.api#Unit",
4340+
"traits": {
4341+
"smithy.api#enumValue": "EXPEDITORS"
4342+
}
43374343
}
43384344
}
43394345
},

0 commit comments

Comments
 (0)