File: enums.go

package info (click to toggle)
golang-github-aws-aws-sdk-go-v2 1.24.1-2~bpo12%2B1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm-backports
  • size: 554,032 kB
  • sloc: java: 15,941; makefile: 419; sh: 175
file content (287 lines) | stat: -rw-r--r-- 9,052 bytes parent folder | download
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
// Code generated by smithy-go-codegen DO NOT EDIT.

package types

type AdapterVersionStatus string

// Enum values for AdapterVersionStatus
const (
	AdapterVersionStatusActive             AdapterVersionStatus = "ACTIVE"
	AdapterVersionStatusAtRisk             AdapterVersionStatus = "AT_RISK"
	AdapterVersionStatusDeprecated         AdapterVersionStatus = "DEPRECATED"
	AdapterVersionStatusCreationError      AdapterVersionStatus = "CREATION_ERROR"
	AdapterVersionStatusCreationInProgress AdapterVersionStatus = "CREATION_IN_PROGRESS"
)

// Values returns all known values for AdapterVersionStatus. 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 (AdapterVersionStatus) Values() []AdapterVersionStatus {
	return []AdapterVersionStatus{
		"ACTIVE",
		"AT_RISK",
		"DEPRECATED",
		"CREATION_ERROR",
		"CREATION_IN_PROGRESS",
	}
}

type AutoUpdate string

// Enum values for AutoUpdate
const (
	AutoUpdateEnabled  AutoUpdate = "ENABLED"
	AutoUpdateDisabled AutoUpdate = "DISABLED"
)

// Values returns all known values for AutoUpdate. 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 (AutoUpdate) Values() []AutoUpdate {
	return []AutoUpdate{
		"ENABLED",
		"DISABLED",
	}
}

type BlockType string

// Enum values for BlockType
const (
	BlockTypeKeyValueSet         BlockType = "KEY_VALUE_SET"
	BlockTypePage                BlockType = "PAGE"
	BlockTypeLine                BlockType = "LINE"
	BlockTypeWord                BlockType = "WORD"
	BlockTypeTable               BlockType = "TABLE"
	BlockTypeCell                BlockType = "CELL"
	BlockTypeSelectionElement    BlockType = "SELECTION_ELEMENT"
	BlockTypeMergedCell          BlockType = "MERGED_CELL"
	BlockTypeTitle               BlockType = "TITLE"
	BlockTypeQuery               BlockType = "QUERY"
	BlockTypeQueryResult         BlockType = "QUERY_RESULT"
	BlockTypeSignature           BlockType = "SIGNATURE"
	BlockTypeTableTitle          BlockType = "TABLE_TITLE"
	BlockTypeTableFooter         BlockType = "TABLE_FOOTER"
	BlockTypeLayoutText          BlockType = "LAYOUT_TEXT"
	BlockTypeLayoutTitle         BlockType = "LAYOUT_TITLE"
	BlockTypeLayoutHeader        BlockType = "LAYOUT_HEADER"
	BlockTypeLayoutFooter        BlockType = "LAYOUT_FOOTER"
	BlockTypeLayoutSectionHeader BlockType = "LAYOUT_SECTION_HEADER"
	BlockTypeLayoutPageNumber    BlockType = "LAYOUT_PAGE_NUMBER"
	BlockTypeLayoutList          BlockType = "LAYOUT_LIST"
	BlockTypeLayoutFigure        BlockType = "LAYOUT_FIGURE"
	BlockTypeLayoutTable         BlockType = "LAYOUT_TABLE"
	BlockTypeLayoutKeyValue      BlockType = "LAYOUT_KEY_VALUE"
)

// Values returns all known values for BlockType. 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 (BlockType) Values() []BlockType {
	return []BlockType{
		"KEY_VALUE_SET",
		"PAGE",
		"LINE",
		"WORD",
		"TABLE",
		"CELL",
		"SELECTION_ELEMENT",
		"MERGED_CELL",
		"TITLE",
		"QUERY",
		"QUERY_RESULT",
		"SIGNATURE",
		"TABLE_TITLE",
		"TABLE_FOOTER",
		"LAYOUT_TEXT",
		"LAYOUT_TITLE",
		"LAYOUT_HEADER",
		"LAYOUT_FOOTER",
		"LAYOUT_SECTION_HEADER",
		"LAYOUT_PAGE_NUMBER",
		"LAYOUT_LIST",
		"LAYOUT_FIGURE",
		"LAYOUT_TABLE",
		"LAYOUT_KEY_VALUE",
	}
}

type ContentClassifier string

// Enum values for ContentClassifier
const (
	ContentClassifierFreeOfPersonallyIdentifiableInformation ContentClassifier = "FreeOfPersonallyIdentifiableInformation"
	ContentClassifierFreeOfAdultContent                      ContentClassifier = "FreeOfAdultContent"
)

// Values returns all known values for ContentClassifier. 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 (ContentClassifier) Values() []ContentClassifier {
	return []ContentClassifier{
		"FreeOfPersonallyIdentifiableInformation",
		"FreeOfAdultContent",
	}
}

type EntityType string

// Enum values for EntityType
const (
	EntityTypeKey                 EntityType = "KEY"
	EntityTypeValue               EntityType = "VALUE"
	EntityTypeColumnHeader        EntityType = "COLUMN_HEADER"
	EntityTypeTableTitle          EntityType = "TABLE_TITLE"
	EntityTypeTableFooter         EntityType = "TABLE_FOOTER"
	EntityTypeTableSectionTitle   EntityType = "TABLE_SECTION_TITLE"
	EntityTypeTableSummary        EntityType = "TABLE_SUMMARY"
	EntityTypeStructuredTable     EntityType = "STRUCTURED_TABLE"
	EntityTypeSemiStructuredTable EntityType = "SEMI_STRUCTURED_TABLE"
)

// Values returns all known values for EntityType. 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 (EntityType) Values() []EntityType {
	return []EntityType{
		"KEY",
		"VALUE",
		"COLUMN_HEADER",
		"TABLE_TITLE",
		"TABLE_FOOTER",
		"TABLE_SECTION_TITLE",
		"TABLE_SUMMARY",
		"STRUCTURED_TABLE",
		"SEMI_STRUCTURED_TABLE",
	}
}

type FeatureType string

// Enum values for FeatureType
const (
	FeatureTypeTables     FeatureType = "TABLES"
	FeatureTypeForms      FeatureType = "FORMS"
	FeatureTypeQueries    FeatureType = "QUERIES"
	FeatureTypeSignatures FeatureType = "SIGNATURES"
	FeatureTypeLayout     FeatureType = "LAYOUT"
)

// Values returns all known values for FeatureType. 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 (FeatureType) Values() []FeatureType {
	return []FeatureType{
		"TABLES",
		"FORMS",
		"QUERIES",
		"SIGNATURES",
		"LAYOUT",
	}
}

type JobStatus string

// Enum values for JobStatus
const (
	JobStatusInProgress     JobStatus = "IN_PROGRESS"
	JobStatusSucceeded      JobStatus = "SUCCEEDED"
	JobStatusFailed         JobStatus = "FAILED"
	JobStatusPartialSuccess JobStatus = "PARTIAL_SUCCESS"
)

// Values returns all known values for JobStatus. 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 (JobStatus) Values() []JobStatus {
	return []JobStatus{
		"IN_PROGRESS",
		"SUCCEEDED",
		"FAILED",
		"PARTIAL_SUCCESS",
	}
}

type RelationshipType string

// Enum values for RelationshipType
const (
	RelationshipTypeValue           RelationshipType = "VALUE"
	RelationshipTypeChild           RelationshipType = "CHILD"
	RelationshipTypeComplexFeatures RelationshipType = "COMPLEX_FEATURES"
	RelationshipTypeMergedCell      RelationshipType = "MERGED_CELL"
	RelationshipTypeTitle           RelationshipType = "TITLE"
	RelationshipTypeAnswer          RelationshipType = "ANSWER"
	RelationshipTypeTable           RelationshipType = "TABLE"
	RelationshipTypeTableTitle      RelationshipType = "TABLE_TITLE"
	RelationshipTypeTableFooter     RelationshipType = "TABLE_FOOTER"
)

// Values returns all known values for RelationshipType. 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 (RelationshipType) Values() []RelationshipType {
	return []RelationshipType{
		"VALUE",
		"CHILD",
		"COMPLEX_FEATURES",
		"MERGED_CELL",
		"TITLE",
		"ANSWER",
		"TABLE",
		"TABLE_TITLE",
		"TABLE_FOOTER",
	}
}

type SelectionStatus string

// Enum values for SelectionStatus
const (
	SelectionStatusSelected    SelectionStatus = "SELECTED"
	SelectionStatusNotSelected SelectionStatus = "NOT_SELECTED"
)

// Values returns all known values for SelectionStatus. 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 (SelectionStatus) Values() []SelectionStatus {
	return []SelectionStatus{
		"SELECTED",
		"NOT_SELECTED",
	}
}

type TextType string

// Enum values for TextType
const (
	TextTypeHandwriting TextType = "HANDWRITING"
	TextTypePrinted     TextType = "PRINTED"
)

// Values returns all known values for TextType. 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 (TextType) Values() []TextType {
	return []TextType{
		"HANDWRITING",
		"PRINTED",
	}
}

type ValueType string

// Enum values for ValueType
const (
	ValueTypeDate ValueType = "DATE"
)

// Values returns all known values for ValueType. 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 (ValueType) Values() []ValueType {
	return []ValueType{
		"DATE",
	}
}