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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type ApplicationStatus string
// Enum values for ApplicationStatus
const (
ApplicationStatusDeleting ApplicationStatus = "DELETING"
ApplicationStatusStarting ApplicationStatus = "STARTING"
ApplicationStatusStopping ApplicationStatus = "STOPPING"
ApplicationStatusReady ApplicationStatus = "READY"
ApplicationStatusRunning ApplicationStatus = "RUNNING"
ApplicationStatusUpdating ApplicationStatus = "UPDATING"
)
// Values returns all known values for ApplicationStatus. 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 (ApplicationStatus) Values() []ApplicationStatus {
return []ApplicationStatus{
"DELETING",
"STARTING",
"STOPPING",
"READY",
"RUNNING",
"UPDATING",
}
}
type InputStartingPosition string
// Enum values for InputStartingPosition
const (
InputStartingPositionNow InputStartingPosition = "NOW"
InputStartingPositionTrimHorizon InputStartingPosition = "TRIM_HORIZON"
InputStartingPositionLastStoppedPoint InputStartingPosition = "LAST_STOPPED_POINT"
)
// Values returns all known values for InputStartingPosition. 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 (InputStartingPosition) Values() []InputStartingPosition {
return []InputStartingPosition{
"NOW",
"TRIM_HORIZON",
"LAST_STOPPED_POINT",
}
}
type RecordFormatType string
// Enum values for RecordFormatType
const (
RecordFormatTypeJson RecordFormatType = "JSON"
RecordFormatTypeCsv RecordFormatType = "CSV"
)
// Values returns all known values for RecordFormatType. 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 (RecordFormatType) Values() []RecordFormatType {
return []RecordFormatType{
"JSON",
"CSV",
}
}
|