// 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", } }