1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type ConfigurationJobStatus string
// Enum values for ConfigurationJobStatus
const (
ConfigurationJobStatusNew ConfigurationJobStatus = "NEW"
ConfigurationJobStatusFailed ConfigurationJobStatus = "FAILED"
ConfigurationJobStatusInProgress ConfigurationJobStatus = "IN_PROGRESS"
ConfigurationJobStatusQueued ConfigurationJobStatus = "QUEUED"
ConfigurationJobStatusSuccess ConfigurationJobStatus = "SUCCESS"
)
// Values returns all known values for ConfigurationJobStatus. Note that this can
// be expanded in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (ConfigurationJobStatus) Values() []ConfigurationJobStatus {
return []ConfigurationJobStatus{
"NEW",
"FAILED",
"IN_PROGRESS",
"QUEUED",
"SUCCESS",
}
}
type DataIntegrationEventType string
// Enum values for DataIntegrationEventType
const (
DataIntegrationEventTypeForecast DataIntegrationEventType = "scn.data.forecast"
DataIntegrationEventTypeInventoryLevel DataIntegrationEventType = "scn.data.inventorylevel"
DataIntegrationEventTypeInboundOrder DataIntegrationEventType = "scn.data.inboundorder"
DataIntegrationEventTypeInboundOrderLine DataIntegrationEventType = "scn.data.inboundorderline"
DataIntegrationEventTypeInboundOrderLineSchedule DataIntegrationEventType = "scn.data.inboundorderlineschedule"
DataIntegrationEventTypeOutboundOrderLine DataIntegrationEventType = "scn.data.outboundorderline"
DataIntegrationEventTypeOutboundShipment DataIntegrationEventType = "scn.data.outboundshipment"
DataIntegrationEventTypeProcessHeader DataIntegrationEventType = "scn.data.processheader"
DataIntegrationEventTypeProcessOperation DataIntegrationEventType = "scn.data.processoperation"
DataIntegrationEventTypeProcessProduct DataIntegrationEventType = "scn.data.processproduct"
DataIntegrationEventTypeReservation DataIntegrationEventType = "scn.data.reservation"
DataIntegrationEventTypeShipment DataIntegrationEventType = "scn.data.shipment"
DataIntegrationEventTypeShipmentStop DataIntegrationEventType = "scn.data.shipmentstop"
DataIntegrationEventTypeShipmentStopOrder DataIntegrationEventType = "scn.data.shipmentstoporder"
DataIntegrationEventTypeSupplyPlan DataIntegrationEventType = "scn.data.supplyplan"
)
// Values returns all known values for DataIntegrationEventType. Note that this
// can be expanded in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (DataIntegrationEventType) Values() []DataIntegrationEventType {
return []DataIntegrationEventType{
"scn.data.forecast",
"scn.data.inventorylevel",
"scn.data.inboundorder",
"scn.data.inboundorderline",
"scn.data.inboundorderlineschedule",
"scn.data.outboundorderline",
"scn.data.outboundshipment",
"scn.data.processheader",
"scn.data.processoperation",
"scn.data.processproduct",
"scn.data.reservation",
"scn.data.shipment",
"scn.data.shipmentstop",
"scn.data.shipmentstoporder",
"scn.data.supplyplan",
}
}
|