1// Code generated by smithy-go-codegen DO NOT EDIT.
2
3package types
4
5type DecimalReturnType string
6
7// Enum values for DecimalReturnType
8const (
9	DecimalReturnTypeString       DecimalReturnType = "STRING"
10	DecimalReturnTypeDoubleOrLong DecimalReturnType = "DOUBLE_OR_LONG"
11)
12
13// Values returns all known values for DecimalReturnType. Note that this can be
14// expanded in the future, and so it is only as up to date as the client. The
15// ordering of this slice is not guaranteed to be stable across updates.
16func (DecimalReturnType) Values() []DecimalReturnType {
17	return []DecimalReturnType{
18		"STRING",
19		"DOUBLE_OR_LONG",
20	}
21}
22
23type TypeHint string
24
25// Enum values for TypeHint
26const (
27	TypeHintJson      TypeHint = "JSON"
28	TypeHintUuid      TypeHint = "UUID"
29	TypeHintTimestamp TypeHint = "TIMESTAMP"
30	TypeHintDate      TypeHint = "DATE"
31	TypeHintTime      TypeHint = "TIME"
32	TypeHintDecimal   TypeHint = "DECIMAL"
33)
34
35// Values returns all known values for TypeHint. Note that this can be expanded in
36// the future, and so it is only as up to date as the client. The ordering of this
37// slice is not guaranteed to be stable across updates.
38func (TypeHint) Values() []TypeHint {
39	return []TypeHint{
40		"JSON",
41		"UUID",
42		"TIMESTAMP",
43		"DATE",
44		"TIME",
45		"DECIMAL",
46	}
47}
48