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 (697 lines) | stat: -rw-r--r-- 24,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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
// Code generated by smithy-go-codegen DO NOT EDIT.

package types

type ApplicationLogLevel string

// Enum values for ApplicationLogLevel
const (
	ApplicationLogLevelTrace ApplicationLogLevel = "TRACE"
	ApplicationLogLevelDebug ApplicationLogLevel = "DEBUG"
	ApplicationLogLevelInfo  ApplicationLogLevel = "INFO"
	ApplicationLogLevelWarn  ApplicationLogLevel = "WARN"
	ApplicationLogLevelError ApplicationLogLevel = "ERROR"
	ApplicationLogLevelFatal ApplicationLogLevel = "FATAL"
)

// Values returns all known values for ApplicationLogLevel. 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 (ApplicationLogLevel) Values() []ApplicationLogLevel {
	return []ApplicationLogLevel{
		"TRACE",
		"DEBUG",
		"INFO",
		"WARN",
		"ERROR",
		"FATAL",
	}
}

type Architecture string

// Enum values for Architecture
const (
	ArchitectureX8664 Architecture = "x86_64"
	ArchitectureArm64 Architecture = "arm64"
)

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

type CodeSigningPolicy string

// Enum values for CodeSigningPolicy
const (
	CodeSigningPolicyWarn    CodeSigningPolicy = "Warn"
	CodeSigningPolicyEnforce CodeSigningPolicy = "Enforce"
)

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

type EndPointType string

// Enum values for EndPointType
const (
	EndPointTypeKafkaBootstrapServers EndPointType = "KAFKA_BOOTSTRAP_SERVERS"
)

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

type EventSourcePosition string

// Enum values for EventSourcePosition
const (
	EventSourcePositionTrimHorizon EventSourcePosition = "TRIM_HORIZON"
	EventSourcePositionLatest      EventSourcePosition = "LATEST"
	EventSourcePositionAtTimestamp EventSourcePosition = "AT_TIMESTAMP"
)

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

type FullDocument string

// Enum values for FullDocument
const (
	FullDocumentUpdateLookup FullDocument = "UpdateLookup"
	FullDocumentDefault      FullDocument = "Default"
)

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

type FunctionResponseType string

// Enum values for FunctionResponseType
const (
	FunctionResponseTypeReportBatchItemFailures FunctionResponseType = "ReportBatchItemFailures"
)

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

type FunctionUrlAuthType string

// Enum values for FunctionUrlAuthType
const (
	FunctionUrlAuthTypeNone   FunctionUrlAuthType = "NONE"
	FunctionUrlAuthTypeAwsIam FunctionUrlAuthType = "AWS_IAM"
)

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

type FunctionVersion string

// Enum values for FunctionVersion
const (
	FunctionVersionAll FunctionVersion = "ALL"
)

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

type InvocationType string

// Enum values for InvocationType
const (
	InvocationTypeEvent           InvocationType = "Event"
	InvocationTypeRequestResponse InvocationType = "RequestResponse"
	InvocationTypeDryRun          InvocationType = "DryRun"
)

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

type InvokeMode string

// Enum values for InvokeMode
const (
	InvokeModeBuffered       InvokeMode = "BUFFERED"
	InvokeModeResponseStream InvokeMode = "RESPONSE_STREAM"
)

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

type LastUpdateStatus string

// Enum values for LastUpdateStatus
const (
	LastUpdateStatusSuccessful LastUpdateStatus = "Successful"
	LastUpdateStatusFailed     LastUpdateStatus = "Failed"
	LastUpdateStatusInProgress LastUpdateStatus = "InProgress"
)

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

type LastUpdateStatusReasonCode string

// Enum values for LastUpdateStatusReasonCode
const (
	LastUpdateStatusReasonCodeEniLimitExceeded            LastUpdateStatusReasonCode = "EniLimitExceeded"
	LastUpdateStatusReasonCodeInsufficientRolePermissions LastUpdateStatusReasonCode = "InsufficientRolePermissions"
	LastUpdateStatusReasonCodeInvalidConfiguration        LastUpdateStatusReasonCode = "InvalidConfiguration"
	LastUpdateStatusReasonCodeInternalError               LastUpdateStatusReasonCode = "InternalError"
	LastUpdateStatusReasonCodeSubnetOutOfIPAddresses      LastUpdateStatusReasonCode = "SubnetOutOfIPAddresses"
	LastUpdateStatusReasonCodeInvalidSubnet               LastUpdateStatusReasonCode = "InvalidSubnet"
	LastUpdateStatusReasonCodeInvalidSecurityGroup        LastUpdateStatusReasonCode = "InvalidSecurityGroup"
	LastUpdateStatusReasonCodeImageDeleted                LastUpdateStatusReasonCode = "ImageDeleted"
	LastUpdateStatusReasonCodeImageAccessDenied           LastUpdateStatusReasonCode = "ImageAccessDenied"
	LastUpdateStatusReasonCodeInvalidImage                LastUpdateStatusReasonCode = "InvalidImage"
	LastUpdateStatusReasonCodeKMSKeyAccessDenied          LastUpdateStatusReasonCode = "KMSKeyAccessDenied"
	LastUpdateStatusReasonCodeKMSKeyNotFound              LastUpdateStatusReasonCode = "KMSKeyNotFound"
	LastUpdateStatusReasonCodeInvalidStateKMSKey          LastUpdateStatusReasonCode = "InvalidStateKMSKey"
	LastUpdateStatusReasonCodeDisabledKMSKey              LastUpdateStatusReasonCode = "DisabledKMSKey"
	LastUpdateStatusReasonCodeEFSIOError                  LastUpdateStatusReasonCode = "EFSIOError"
	LastUpdateStatusReasonCodeEFSMountConnectivityError   LastUpdateStatusReasonCode = "EFSMountConnectivityError"
	LastUpdateStatusReasonCodeEFSMountFailure             LastUpdateStatusReasonCode = "EFSMountFailure"
	LastUpdateStatusReasonCodeEFSMountTimeout             LastUpdateStatusReasonCode = "EFSMountTimeout"
	LastUpdateStatusReasonCodeInvalidRuntime              LastUpdateStatusReasonCode = "InvalidRuntime"
	LastUpdateStatusReasonCodeInvalidZipFileException     LastUpdateStatusReasonCode = "InvalidZipFileException"
	LastUpdateStatusReasonCodeFunctionError               LastUpdateStatusReasonCode = "FunctionError"
)

// Values returns all known values for LastUpdateStatusReasonCode. 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 (LastUpdateStatusReasonCode) Values() []LastUpdateStatusReasonCode {
	return []LastUpdateStatusReasonCode{
		"EniLimitExceeded",
		"InsufficientRolePermissions",
		"InvalidConfiguration",
		"InternalError",
		"SubnetOutOfIPAddresses",
		"InvalidSubnet",
		"InvalidSecurityGroup",
		"ImageDeleted",
		"ImageAccessDenied",
		"InvalidImage",
		"KMSKeyAccessDenied",
		"KMSKeyNotFound",
		"InvalidStateKMSKey",
		"DisabledKMSKey",
		"EFSIOError",
		"EFSMountConnectivityError",
		"EFSMountFailure",
		"EFSMountTimeout",
		"InvalidRuntime",
		"InvalidZipFileException",
		"FunctionError",
	}
}

type LogFormat string

// Enum values for LogFormat
const (
	LogFormatJson LogFormat = "JSON"
	LogFormatText LogFormat = "Text"
)

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

type LogType string

// Enum values for LogType
const (
	LogTypeNone LogType = "None"
	LogTypeTail LogType = "Tail"
)

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

type PackageType string

// Enum values for PackageType
const (
	PackageTypeZip   PackageType = "Zip"
	PackageTypeImage PackageType = "Image"
)

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

type ProvisionedConcurrencyStatusEnum string

// Enum values for ProvisionedConcurrencyStatusEnum
const (
	ProvisionedConcurrencyStatusEnumInProgress ProvisionedConcurrencyStatusEnum = "IN_PROGRESS"
	ProvisionedConcurrencyStatusEnumReady      ProvisionedConcurrencyStatusEnum = "READY"
	ProvisionedConcurrencyStatusEnumFailed     ProvisionedConcurrencyStatusEnum = "FAILED"
)

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

type ResponseStreamingInvocationType string

// Enum values for ResponseStreamingInvocationType
const (
	ResponseStreamingInvocationTypeRequestResponse ResponseStreamingInvocationType = "RequestResponse"
	ResponseStreamingInvocationTypeDryRun          ResponseStreamingInvocationType = "DryRun"
)

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

type Runtime string

// Enum values for Runtime
const (
	RuntimeNodejs         Runtime = "nodejs"
	RuntimeNodejs43       Runtime = "nodejs4.3"
	RuntimeNodejs610      Runtime = "nodejs6.10"
	RuntimeNodejs810      Runtime = "nodejs8.10"
	RuntimeNodejs10x      Runtime = "nodejs10.x"
	RuntimeNodejs12x      Runtime = "nodejs12.x"
	RuntimeNodejs14x      Runtime = "nodejs14.x"
	RuntimeNodejs16x      Runtime = "nodejs16.x"
	RuntimeJava8          Runtime = "java8"
	RuntimeJava8al2       Runtime = "java8.al2"
	RuntimeJava11         Runtime = "java11"
	RuntimePython27       Runtime = "python2.7"
	RuntimePython36       Runtime = "python3.6"
	RuntimePython37       Runtime = "python3.7"
	RuntimePython38       Runtime = "python3.8"
	RuntimePython39       Runtime = "python3.9"
	RuntimeDotnetcore10   Runtime = "dotnetcore1.0"
	RuntimeDotnetcore20   Runtime = "dotnetcore2.0"
	RuntimeDotnetcore21   Runtime = "dotnetcore2.1"
	RuntimeDotnetcore31   Runtime = "dotnetcore3.1"
	RuntimeDotnet6        Runtime = "dotnet6"
	RuntimeNodejs43edge   Runtime = "nodejs4.3-edge"
	RuntimeGo1x           Runtime = "go1.x"
	RuntimeRuby25         Runtime = "ruby2.5"
	RuntimeRuby27         Runtime = "ruby2.7"
	RuntimeProvided       Runtime = "provided"
	RuntimeProvidedal2    Runtime = "provided.al2"
	RuntimeNodejs18x      Runtime = "nodejs18.x"
	RuntimePython310      Runtime = "python3.10"
	RuntimeJava17         Runtime = "java17"
	RuntimeRuby32         Runtime = "ruby3.2"
	RuntimePython311      Runtime = "python3.11"
	RuntimeNodejs20x      Runtime = "nodejs20.x"
	RuntimeProvidedal2023 Runtime = "provided.al2023"
	RuntimePython312      Runtime = "python3.12"
	RuntimeJava21         Runtime = "java21"
)

// Values returns all known values for Runtime. 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 (Runtime) Values() []Runtime {
	return []Runtime{
		"nodejs",
		"nodejs4.3",
		"nodejs6.10",
		"nodejs8.10",
		"nodejs10.x",
		"nodejs12.x",
		"nodejs14.x",
		"nodejs16.x",
		"java8",
		"java8.al2",
		"java11",
		"python2.7",
		"python3.6",
		"python3.7",
		"python3.8",
		"python3.9",
		"dotnetcore1.0",
		"dotnetcore2.0",
		"dotnetcore2.1",
		"dotnetcore3.1",
		"dotnet6",
		"nodejs4.3-edge",
		"go1.x",
		"ruby2.5",
		"ruby2.7",
		"provided",
		"provided.al2",
		"nodejs18.x",
		"python3.10",
		"java17",
		"ruby3.2",
		"python3.11",
		"nodejs20.x",
		"provided.al2023",
		"python3.12",
		"java21",
	}
}

type SnapStartApplyOn string

// Enum values for SnapStartApplyOn
const (
	SnapStartApplyOnPublishedVersions SnapStartApplyOn = "PublishedVersions"
	SnapStartApplyOnNone              SnapStartApplyOn = "None"
)

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

type SnapStartOptimizationStatus string

// Enum values for SnapStartOptimizationStatus
const (
	SnapStartOptimizationStatusOn  SnapStartOptimizationStatus = "On"
	SnapStartOptimizationStatusOff SnapStartOptimizationStatus = "Off"
)

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

type SourceAccessType string

// Enum values for SourceAccessType
const (
	SourceAccessTypeBasicAuth                SourceAccessType = "BASIC_AUTH"
	SourceAccessTypeVpcSubnet                SourceAccessType = "VPC_SUBNET"
	SourceAccessTypeVpcSecurityGroup         SourceAccessType = "VPC_SECURITY_GROUP"
	SourceAccessTypeSaslScram512Auth         SourceAccessType = "SASL_SCRAM_512_AUTH"
	SourceAccessTypeSaslScram256Auth         SourceAccessType = "SASL_SCRAM_256_AUTH"
	SourceAccessTypeVirtualHost              SourceAccessType = "VIRTUAL_HOST"
	SourceAccessTypeClientCertificateTlsAuth SourceAccessType = "CLIENT_CERTIFICATE_TLS_AUTH"
	SourceAccessTypeServerRootCaCertificate  SourceAccessType = "SERVER_ROOT_CA_CERTIFICATE"
)

// Values returns all known values for SourceAccessType. 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 (SourceAccessType) Values() []SourceAccessType {
	return []SourceAccessType{
		"BASIC_AUTH",
		"VPC_SUBNET",
		"VPC_SECURITY_GROUP",
		"SASL_SCRAM_512_AUTH",
		"SASL_SCRAM_256_AUTH",
		"VIRTUAL_HOST",
		"CLIENT_CERTIFICATE_TLS_AUTH",
		"SERVER_ROOT_CA_CERTIFICATE",
	}
}

type State string

// Enum values for State
const (
	StatePending  State = "Pending"
	StateActive   State = "Active"
	StateInactive State = "Inactive"
	StateFailed   State = "Failed"
)

// Values returns all known values for State. 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 (State) Values() []State {
	return []State{
		"Pending",
		"Active",
		"Inactive",
		"Failed",
	}
}

type StateReasonCode string

// Enum values for StateReasonCode
const (
	StateReasonCodeIdle                        StateReasonCode = "Idle"
	StateReasonCodeCreating                    StateReasonCode = "Creating"
	StateReasonCodeRestoring                   StateReasonCode = "Restoring"
	StateReasonCodeEniLimitExceeded            StateReasonCode = "EniLimitExceeded"
	StateReasonCodeInsufficientRolePermissions StateReasonCode = "InsufficientRolePermissions"
	StateReasonCodeInvalidConfiguration        StateReasonCode = "InvalidConfiguration"
	StateReasonCodeInternalError               StateReasonCode = "InternalError"
	StateReasonCodeSubnetOutOfIPAddresses      StateReasonCode = "SubnetOutOfIPAddresses"
	StateReasonCodeInvalidSubnet               StateReasonCode = "InvalidSubnet"
	StateReasonCodeInvalidSecurityGroup        StateReasonCode = "InvalidSecurityGroup"
	StateReasonCodeImageDeleted                StateReasonCode = "ImageDeleted"
	StateReasonCodeImageAccessDenied           StateReasonCode = "ImageAccessDenied"
	StateReasonCodeInvalidImage                StateReasonCode = "InvalidImage"
	StateReasonCodeKMSKeyAccessDenied          StateReasonCode = "KMSKeyAccessDenied"
	StateReasonCodeKMSKeyNotFound              StateReasonCode = "KMSKeyNotFound"
	StateReasonCodeInvalidStateKMSKey          StateReasonCode = "InvalidStateKMSKey"
	StateReasonCodeDisabledKMSKey              StateReasonCode = "DisabledKMSKey"
	StateReasonCodeEFSIOError                  StateReasonCode = "EFSIOError"
	StateReasonCodeEFSMountConnectivityError   StateReasonCode = "EFSMountConnectivityError"
	StateReasonCodeEFSMountFailure             StateReasonCode = "EFSMountFailure"
	StateReasonCodeEFSMountTimeout             StateReasonCode = "EFSMountTimeout"
	StateReasonCodeInvalidRuntime              StateReasonCode = "InvalidRuntime"
	StateReasonCodeInvalidZipFileException     StateReasonCode = "InvalidZipFileException"
	StateReasonCodeFunctionError               StateReasonCode = "FunctionError"
)

// Values returns all known values for StateReasonCode. 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 (StateReasonCode) Values() []StateReasonCode {
	return []StateReasonCode{
		"Idle",
		"Creating",
		"Restoring",
		"EniLimitExceeded",
		"InsufficientRolePermissions",
		"InvalidConfiguration",
		"InternalError",
		"SubnetOutOfIPAddresses",
		"InvalidSubnet",
		"InvalidSecurityGroup",
		"ImageDeleted",
		"ImageAccessDenied",
		"InvalidImage",
		"KMSKeyAccessDenied",
		"KMSKeyNotFound",
		"InvalidStateKMSKey",
		"DisabledKMSKey",
		"EFSIOError",
		"EFSMountConnectivityError",
		"EFSMountFailure",
		"EFSMountTimeout",
		"InvalidRuntime",
		"InvalidZipFileException",
		"FunctionError",
	}
}

type SystemLogLevel string

// Enum values for SystemLogLevel
const (
	SystemLogLevelDebug SystemLogLevel = "DEBUG"
	SystemLogLevelInfo  SystemLogLevel = "INFO"
	SystemLogLevelWarn  SystemLogLevel = "WARN"
)

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

type ThrottleReason string

// Enum values for ThrottleReason
const (
	ThrottleReasonConcurrentInvocationLimitExceeded                 ThrottleReason = "ConcurrentInvocationLimitExceeded"
	ThrottleReasonFunctionInvocationRateLimitExceeded               ThrottleReason = "FunctionInvocationRateLimitExceeded"
	ThrottleReasonReservedFunctionConcurrentInvocationLimitExceeded ThrottleReason = "ReservedFunctionConcurrentInvocationLimitExceeded"
	ThrottleReasonReservedFunctionInvocationRateLimitExceeded       ThrottleReason = "ReservedFunctionInvocationRateLimitExceeded"
	ThrottleReasonCallerRateLimitExceeded                           ThrottleReason = "CallerRateLimitExceeded"
	ThrottleReasonConcurrentSnapshotCreateLimitExceeded             ThrottleReason = "ConcurrentSnapshotCreateLimitExceeded"
)

// Values returns all known values for ThrottleReason. 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 (ThrottleReason) Values() []ThrottleReason {
	return []ThrottleReason{
		"ConcurrentInvocationLimitExceeded",
		"FunctionInvocationRateLimitExceeded",
		"ReservedFunctionConcurrentInvocationLimitExceeded",
		"ReservedFunctionInvocationRateLimitExceeded",
		"CallerRateLimitExceeded",
		"ConcurrentSnapshotCreateLimitExceeded",
	}
}

type TracingMode string

// Enum values for TracingMode
const (
	TracingModeActive      TracingMode = "Active"
	TracingModePassThrough TracingMode = "PassThrough"
)

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

type UpdateRuntimeOn string

// Enum values for UpdateRuntimeOn
const (
	UpdateRuntimeOnAuto           UpdateRuntimeOn = "Auto"
	UpdateRuntimeOnManual         UpdateRuntimeOn = "Manual"
	UpdateRuntimeOnFunctionUpdate UpdateRuntimeOn = "FunctionUpdate"
)

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