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 (793 lines) | stat: -rw-r--r-- 35,944 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
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
// Code generated by smithy-go-codegen DO NOT EDIT.

package types

type AutomaticTerminationMode string

// Enum values for AutomaticTerminationMode
const (
	AutomaticTerminationModeDeactivated AutomaticTerminationMode = "DEACTIVATED"
	AutomaticTerminationModeActivated   AutomaticTerminationMode = "ACTIVATED"
)

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

type LaunchProfilePersona string

// Enum values for LaunchProfilePersona
const (
	LaunchProfilePersonaUser LaunchProfilePersona = "USER"
)

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

type LaunchProfilePlatform string

// Enum values for LaunchProfilePlatform
const (
	LaunchProfilePlatformLinux   LaunchProfilePlatform = "LINUX"
	LaunchProfilePlatformWindows LaunchProfilePlatform = "WINDOWS"
)

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

type LaunchProfileState string

// Enum values for LaunchProfileState
const (
	LaunchProfileStateCreateInProgress LaunchProfileState = "CREATE_IN_PROGRESS"
	LaunchProfileStateReady            LaunchProfileState = "READY"
	LaunchProfileStateUpdateInProgress LaunchProfileState = "UPDATE_IN_PROGRESS"
	LaunchProfileStateDeleteInProgress LaunchProfileState = "DELETE_IN_PROGRESS"
	LaunchProfileStateDeleted          LaunchProfileState = "DELETED"
	LaunchProfileStateDeleteFailed     LaunchProfileState = "DELETE_FAILED"
	LaunchProfileStateCreateFailed     LaunchProfileState = "CREATE_FAILED"
	LaunchProfileStateUpdateFailed     LaunchProfileState = "UPDATE_FAILED"
)

// Values returns all known values for LaunchProfileState. 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 (LaunchProfileState) Values() []LaunchProfileState {
	return []LaunchProfileState{
		"CREATE_IN_PROGRESS",
		"READY",
		"UPDATE_IN_PROGRESS",
		"DELETE_IN_PROGRESS",
		"DELETED",
		"DELETE_FAILED",
		"CREATE_FAILED",
		"UPDATE_FAILED",
	}
}

type LaunchProfileStatusCode string

// Enum values for LaunchProfileStatusCode
const (
	LaunchProfileStatusCodeLaunchProfileCreated                      LaunchProfileStatusCode = "LAUNCH_PROFILE_CREATED"
	LaunchProfileStatusCodeLaunchProfileUpdated                      LaunchProfileStatusCode = "LAUNCH_PROFILE_UPDATED"
	LaunchProfileStatusCodeLaunchProfileDeleted                      LaunchProfileStatusCode = "LAUNCH_PROFILE_DELETED"
	LaunchProfileStatusCodeLaunchProfileCreateInProgress             LaunchProfileStatusCode = "LAUNCH_PROFILE_CREATE_IN_PROGRESS"
	LaunchProfileStatusCodeLaunchProfileUpdateInProgress             LaunchProfileStatusCode = "LAUNCH_PROFILE_UPDATE_IN_PROGRESS"
	LaunchProfileStatusCodeLaunchProfileDeleteInProgress             LaunchProfileStatusCode = "LAUNCH_PROFILE_DELETE_IN_PROGRESS"
	LaunchProfileStatusCodeInternalError                             LaunchProfileStatusCode = "INTERNAL_ERROR"
	LaunchProfileStatusCodeStreamingImageNotFound                    LaunchProfileStatusCode = "STREAMING_IMAGE_NOT_FOUND"
	LaunchProfileStatusCodeStreamingImageNotReady                    LaunchProfileStatusCode = "STREAMING_IMAGE_NOT_READY"
	LaunchProfileStatusCodeLaunchProfileWithStreamSessionsNotDeleted LaunchProfileStatusCode = "LAUNCH_PROFILE_WITH_STREAM_SESSIONS_NOT_DELETED"
	LaunchProfileStatusCodeEncryptionKeyAccessDenied                 LaunchProfileStatusCode = "ENCRYPTION_KEY_ACCESS_DENIED"
	LaunchProfileStatusCodeEncryptionKeyNotFound                     LaunchProfileStatusCode = "ENCRYPTION_KEY_NOT_FOUND"
	LaunchProfileStatusCodeInvalidSubnetsProvided                    LaunchProfileStatusCode = "INVALID_SUBNETS_PROVIDED"
	LaunchProfileStatusCodeInvalidInstanceTypesProvided              LaunchProfileStatusCode = "INVALID_INSTANCE_TYPES_PROVIDED"
	LaunchProfileStatusCodeInvalidSubnetsCombination                 LaunchProfileStatusCode = "INVALID_SUBNETS_COMBINATION"
)

// Values returns all known values for LaunchProfileStatusCode. 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 (LaunchProfileStatusCode) Values() []LaunchProfileStatusCode {
	return []LaunchProfileStatusCode{
		"LAUNCH_PROFILE_CREATED",
		"LAUNCH_PROFILE_UPDATED",
		"LAUNCH_PROFILE_DELETED",
		"LAUNCH_PROFILE_CREATE_IN_PROGRESS",
		"LAUNCH_PROFILE_UPDATE_IN_PROGRESS",
		"LAUNCH_PROFILE_DELETE_IN_PROGRESS",
		"INTERNAL_ERROR",
		"STREAMING_IMAGE_NOT_FOUND",
		"STREAMING_IMAGE_NOT_READY",
		"LAUNCH_PROFILE_WITH_STREAM_SESSIONS_NOT_DELETED",
		"ENCRYPTION_KEY_ACCESS_DENIED",
		"ENCRYPTION_KEY_NOT_FOUND",
		"INVALID_SUBNETS_PROVIDED",
		"INVALID_INSTANCE_TYPES_PROVIDED",
		"INVALID_SUBNETS_COMBINATION",
	}
}

type LaunchProfileValidationState string

// Enum values for LaunchProfileValidationState
const (
	LaunchProfileValidationStateValidationNotStarted                LaunchProfileValidationState = "VALIDATION_NOT_STARTED"
	LaunchProfileValidationStateValidationInProgress                LaunchProfileValidationState = "VALIDATION_IN_PROGRESS"
	LaunchProfileValidationStateValidationSuccess                   LaunchProfileValidationState = "VALIDATION_SUCCESS"
	LaunchProfileValidationStateValidationFailed                    LaunchProfileValidationState = "VALIDATION_FAILED"
	LaunchProfileValidationStateValidationFailedInternalServerError LaunchProfileValidationState = "VALIDATION_FAILED_INTERNAL_SERVER_ERROR"
)

// Values returns all known values for LaunchProfileValidationState. 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 (LaunchProfileValidationState) Values() []LaunchProfileValidationState {
	return []LaunchProfileValidationState{
		"VALIDATION_NOT_STARTED",
		"VALIDATION_IN_PROGRESS",
		"VALIDATION_SUCCESS",
		"VALIDATION_FAILED",
		"VALIDATION_FAILED_INTERNAL_SERVER_ERROR",
	}
}

type LaunchProfileValidationStatusCode string

// Enum values for LaunchProfileValidationStatusCode
const (
	LaunchProfileValidationStatusCodeValidationNotStarted                               LaunchProfileValidationStatusCode = "VALIDATION_NOT_STARTED"
	LaunchProfileValidationStatusCodeValidationInProgress                               LaunchProfileValidationStatusCode = "VALIDATION_IN_PROGRESS"
	LaunchProfileValidationStatusCodeValidationSuccess                                  LaunchProfileValidationStatusCode = "VALIDATION_SUCCESS"
	LaunchProfileValidationStatusCodeValidationFailedInvalidSubnetRouteTableAssociation LaunchProfileValidationStatusCode = "VALIDATION_FAILED_INVALID_SUBNET_ROUTE_TABLE_ASSOCIATION"
	LaunchProfileValidationStatusCodeValidationFailedSubnetNotFound                     LaunchProfileValidationStatusCode = "VALIDATION_FAILED_SUBNET_NOT_FOUND"
	LaunchProfileValidationStatusCodeValidationFailedInvalidSecurityGroupAssociation    LaunchProfileValidationStatusCode = "VALIDATION_FAILED_INVALID_SECURITY_GROUP_ASSOCIATION"
	LaunchProfileValidationStatusCodeValidationFailedInvalidActiveDirectory             LaunchProfileValidationStatusCode = "VALIDATION_FAILED_INVALID_ACTIVE_DIRECTORY"
	LaunchProfileValidationStatusCodeValidationFailedUnauthorized                       LaunchProfileValidationStatusCode = "VALIDATION_FAILED_UNAUTHORIZED"
	LaunchProfileValidationStatusCodeValidationFailedInternalServerError                LaunchProfileValidationStatusCode = "VALIDATION_FAILED_INTERNAL_SERVER_ERROR"
)

// Values returns all known values for LaunchProfileValidationStatusCode. 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 (LaunchProfileValidationStatusCode) Values() []LaunchProfileValidationStatusCode {
	return []LaunchProfileValidationStatusCode{
		"VALIDATION_NOT_STARTED",
		"VALIDATION_IN_PROGRESS",
		"VALIDATION_SUCCESS",
		"VALIDATION_FAILED_INVALID_SUBNET_ROUTE_TABLE_ASSOCIATION",
		"VALIDATION_FAILED_SUBNET_NOT_FOUND",
		"VALIDATION_FAILED_INVALID_SECURITY_GROUP_ASSOCIATION",
		"VALIDATION_FAILED_INVALID_ACTIVE_DIRECTORY",
		"VALIDATION_FAILED_UNAUTHORIZED",
		"VALIDATION_FAILED_INTERNAL_SERVER_ERROR",
	}
}

type LaunchProfileValidationType string

// Enum values for LaunchProfileValidationType
const (
	LaunchProfileValidationTypeValidateActiveDirectoryStudioComponent LaunchProfileValidationType = "VALIDATE_ACTIVE_DIRECTORY_STUDIO_COMPONENT"
	LaunchProfileValidationTypeValidateSubnetAssociation              LaunchProfileValidationType = "VALIDATE_SUBNET_ASSOCIATION"
	LaunchProfileValidationTypeValidateNetworkAclAssociation          LaunchProfileValidationType = "VALIDATE_NETWORK_ACL_ASSOCIATION"
	LaunchProfileValidationTypeValidateSecurityGroupAssociation       LaunchProfileValidationType = "VALIDATE_SECURITY_GROUP_ASSOCIATION"
)

// Values returns all known values for LaunchProfileValidationType. 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 (LaunchProfileValidationType) Values() []LaunchProfileValidationType {
	return []LaunchProfileValidationType{
		"VALIDATE_ACTIVE_DIRECTORY_STUDIO_COMPONENT",
		"VALIDATE_SUBNET_ASSOCIATION",
		"VALIDATE_NETWORK_ACL_ASSOCIATION",
		"VALIDATE_SECURITY_GROUP_ASSOCIATION",
	}
}

type SessionBackupMode string

// Enum values for SessionBackupMode
const (
	SessionBackupModeAutomatic   SessionBackupMode = "AUTOMATIC"
	SessionBackupModeDeactivated SessionBackupMode = "DEACTIVATED"
)

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

type SessionPersistenceMode string

// Enum values for SessionPersistenceMode
const (
	SessionPersistenceModeDeactivated SessionPersistenceMode = "DEACTIVATED"
	SessionPersistenceModeActivated   SessionPersistenceMode = "ACTIVATED"
)

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

type StreamingClipboardMode string

// Enum values for StreamingClipboardMode
const (
	StreamingClipboardModeEnabled  StreamingClipboardMode = "ENABLED"
	StreamingClipboardModeDisabled StreamingClipboardMode = "DISABLED"
)

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

type StreamingImageEncryptionConfigurationKeyType string

// Enum values for StreamingImageEncryptionConfigurationKeyType
const (
	StreamingImageEncryptionConfigurationKeyTypeCustomerManagedKey StreamingImageEncryptionConfigurationKeyType = "CUSTOMER_MANAGED_KEY"
)

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

type StreamingImageState string

// Enum values for StreamingImageState
const (
	StreamingImageStateCreateInProgress StreamingImageState = "CREATE_IN_PROGRESS"
	StreamingImageStateReady            StreamingImageState = "READY"
	StreamingImageStateDeleteInProgress StreamingImageState = "DELETE_IN_PROGRESS"
	StreamingImageStateDeleted          StreamingImageState = "DELETED"
	StreamingImageStateUpdateInProgress StreamingImageState = "UPDATE_IN_PROGRESS"
	StreamingImageStateUpdateFailed     StreamingImageState = "UPDATE_FAILED"
	StreamingImageStateCreateFailed     StreamingImageState = "CREATE_FAILED"
	StreamingImageStateDeleteFailed     StreamingImageState = "DELETE_FAILED"
)

// Values returns all known values for StreamingImageState. 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 (StreamingImageState) Values() []StreamingImageState {
	return []StreamingImageState{
		"CREATE_IN_PROGRESS",
		"READY",
		"DELETE_IN_PROGRESS",
		"DELETED",
		"UPDATE_IN_PROGRESS",
		"UPDATE_FAILED",
		"CREATE_FAILED",
		"DELETE_FAILED",
	}
}

type StreamingImageStatusCode string

// Enum values for StreamingImageStatusCode
const (
	StreamingImageStatusCodeStreamingImageCreateInProgress StreamingImageStatusCode = "STREAMING_IMAGE_CREATE_IN_PROGRESS"
	StreamingImageStatusCodeStreamingImageReady            StreamingImageStatusCode = "STREAMING_IMAGE_READY"
	StreamingImageStatusCodeStreamingImageDeleteInProgress StreamingImageStatusCode = "STREAMING_IMAGE_DELETE_IN_PROGRESS"
	StreamingImageStatusCodeStreamingImageDeleted          StreamingImageStatusCode = "STREAMING_IMAGE_DELETED"
	StreamingImageStatusCodeStreamingImageUpdateInProgress StreamingImageStatusCode = "STREAMING_IMAGE_UPDATE_IN_PROGRESS"
	StreamingImageStatusCodeInternalError                  StreamingImageStatusCode = "INTERNAL_ERROR"
	StreamingImageStatusCodeAccessDenied                   StreamingImageStatusCode = "ACCESS_DENIED"
)

// Values returns all known values for StreamingImageStatusCode. 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 (StreamingImageStatusCode) Values() []StreamingImageStatusCode {
	return []StreamingImageStatusCode{
		"STREAMING_IMAGE_CREATE_IN_PROGRESS",
		"STREAMING_IMAGE_READY",
		"STREAMING_IMAGE_DELETE_IN_PROGRESS",
		"STREAMING_IMAGE_DELETED",
		"STREAMING_IMAGE_UPDATE_IN_PROGRESS",
		"INTERNAL_ERROR",
		"ACCESS_DENIED",
	}
}

type StreamingInstanceType string

// Enum values for StreamingInstanceType
const (
	StreamingInstanceTypeG4dnXlarge   StreamingInstanceType = "g4dn.xlarge"
	StreamingInstanceTypeG4dn2xlarge  StreamingInstanceType = "g4dn.2xlarge"
	StreamingInstanceTypeG4dn4xlarge  StreamingInstanceType = "g4dn.4xlarge"
	StreamingInstanceTypeG4dn8xlarge  StreamingInstanceType = "g4dn.8xlarge"
	StreamingInstanceTypeG4dn12xlarge StreamingInstanceType = "g4dn.12xlarge"
	StreamingInstanceTypeG4dn16xlarge StreamingInstanceType = "g4dn.16xlarge"
	StreamingInstanceTypeG34xlarge    StreamingInstanceType = "g3.4xlarge"
	StreamingInstanceTypeG3sXlarge    StreamingInstanceType = "g3s.xlarge"
	StreamingInstanceTypeG5Xlarge     StreamingInstanceType = "g5.xlarge"
	StreamingInstanceTypeG52xlarge    StreamingInstanceType = "g5.2xlarge"
	StreamingInstanceTypeG54xlarge    StreamingInstanceType = "g5.4xlarge"
	StreamingInstanceTypeG58xlarge    StreamingInstanceType = "g5.8xlarge"
	StreamingInstanceTypeG516xlarge   StreamingInstanceType = "g5.16xlarge"
)

// Values returns all known values for StreamingInstanceType. 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 (StreamingInstanceType) Values() []StreamingInstanceType {
	return []StreamingInstanceType{
		"g4dn.xlarge",
		"g4dn.2xlarge",
		"g4dn.4xlarge",
		"g4dn.8xlarge",
		"g4dn.12xlarge",
		"g4dn.16xlarge",
		"g3.4xlarge",
		"g3s.xlarge",
		"g5.xlarge",
		"g5.2xlarge",
		"g5.4xlarge",
		"g5.8xlarge",
		"g5.16xlarge",
	}
}

type StreamingSessionState string

// Enum values for StreamingSessionState
const (
	StreamingSessionStateCreateInProgress StreamingSessionState = "CREATE_IN_PROGRESS"
	StreamingSessionStateDeleteInProgress StreamingSessionState = "DELETE_IN_PROGRESS"
	StreamingSessionStateReady            StreamingSessionState = "READY"
	StreamingSessionStateDeleted          StreamingSessionState = "DELETED"
	StreamingSessionStateCreateFailed     StreamingSessionState = "CREATE_FAILED"
	StreamingSessionStateDeleteFailed     StreamingSessionState = "DELETE_FAILED"
	StreamingSessionStateStopInProgress   StreamingSessionState = "STOP_IN_PROGRESS"
	StreamingSessionStateStartInProgress  StreamingSessionState = "START_IN_PROGRESS"
	StreamingSessionStateStopped          StreamingSessionState = "STOPPED"
	StreamingSessionStateStopFailed       StreamingSessionState = "STOP_FAILED"
	StreamingSessionStateStartFailed      StreamingSessionState = "START_FAILED"
)

// Values returns all known values for StreamingSessionState. 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 (StreamingSessionState) Values() []StreamingSessionState {
	return []StreamingSessionState{
		"CREATE_IN_PROGRESS",
		"DELETE_IN_PROGRESS",
		"READY",
		"DELETED",
		"CREATE_FAILED",
		"DELETE_FAILED",
		"STOP_IN_PROGRESS",
		"START_IN_PROGRESS",
		"STOPPED",
		"STOP_FAILED",
		"START_FAILED",
	}
}

type StreamingSessionStatusCode string

// Enum values for StreamingSessionStatusCode
const (
	StreamingSessionStatusCodeStreamingSessionReady            StreamingSessionStatusCode = "STREAMING_SESSION_READY"
	StreamingSessionStatusCodeStreamingSessionDeleted          StreamingSessionStatusCode = "STREAMING_SESSION_DELETED"
	StreamingSessionStatusCodeStreamingSessionCreateInProgress StreamingSessionStatusCode = "STREAMING_SESSION_CREATE_IN_PROGRESS"
	StreamingSessionStatusCodeStreamingSessionDeleteInProgress StreamingSessionStatusCode = "STREAMING_SESSION_DELETE_IN_PROGRESS"
	StreamingSessionStatusCodeInternalError                    StreamingSessionStatusCode = "INTERNAL_ERROR"
	StreamingSessionStatusCodeInsufficientCapacity             StreamingSessionStatusCode = "INSUFFICIENT_CAPACITY"
	StreamingSessionStatusCodeActiveDirectoryDomainJoinError   StreamingSessionStatusCode = "ACTIVE_DIRECTORY_DOMAIN_JOIN_ERROR"
	StreamingSessionStatusCodeNetworkConnectionError           StreamingSessionStatusCode = "NETWORK_CONNECTION_ERROR"
	StreamingSessionStatusCodeInitializationScriptError        StreamingSessionStatusCode = "INITIALIZATION_SCRIPT_ERROR"
	StreamingSessionStatusCodeDecryptStreamingImageError       StreamingSessionStatusCode = "DECRYPT_STREAMING_IMAGE_ERROR"
	StreamingSessionStatusCodeNetworkInterfaceError            StreamingSessionStatusCode = "NETWORK_INTERFACE_ERROR"
	StreamingSessionStatusCodeStreamingSessionStopped          StreamingSessionStatusCode = "STREAMING_SESSION_STOPPED"
	StreamingSessionStatusCodeStreamingSessionStarted          StreamingSessionStatusCode = "STREAMING_SESSION_STARTED"
	StreamingSessionStatusCodeStreamingSessionStopInProgress   StreamingSessionStatusCode = "STREAMING_SESSION_STOP_IN_PROGRESS"
	StreamingSessionStatusCodeStreamingSessionStartInProgress  StreamingSessionStatusCode = "STREAMING_SESSION_START_IN_PROGRESS"
	StreamingSessionStatusCodeAmiValidationError               StreamingSessionStatusCode = "AMI_VALIDATION_ERROR"
)

// Values returns all known values for StreamingSessionStatusCode. 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 (StreamingSessionStatusCode) Values() []StreamingSessionStatusCode {
	return []StreamingSessionStatusCode{
		"STREAMING_SESSION_READY",
		"STREAMING_SESSION_DELETED",
		"STREAMING_SESSION_CREATE_IN_PROGRESS",
		"STREAMING_SESSION_DELETE_IN_PROGRESS",
		"INTERNAL_ERROR",
		"INSUFFICIENT_CAPACITY",
		"ACTIVE_DIRECTORY_DOMAIN_JOIN_ERROR",
		"NETWORK_CONNECTION_ERROR",
		"INITIALIZATION_SCRIPT_ERROR",
		"DECRYPT_STREAMING_IMAGE_ERROR",
		"NETWORK_INTERFACE_ERROR",
		"STREAMING_SESSION_STOPPED",
		"STREAMING_SESSION_STARTED",
		"STREAMING_SESSION_STOP_IN_PROGRESS",
		"STREAMING_SESSION_START_IN_PROGRESS",
		"AMI_VALIDATION_ERROR",
	}
}

type StreamingSessionStorageMode string

// Enum values for StreamingSessionStorageMode
const (
	StreamingSessionStorageModeUpload StreamingSessionStorageMode = "UPLOAD"
)

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

type StreamingSessionStreamState string

// Enum values for StreamingSessionStreamState
const (
	StreamingSessionStreamStateReady            StreamingSessionStreamState = "READY"
	StreamingSessionStreamStateCreateInProgress StreamingSessionStreamState = "CREATE_IN_PROGRESS"
	StreamingSessionStreamStateDeleteInProgress StreamingSessionStreamState = "DELETE_IN_PROGRESS"
	StreamingSessionStreamStateDeleted          StreamingSessionStreamState = "DELETED"
	StreamingSessionStreamStateCreateFailed     StreamingSessionStreamState = "CREATE_FAILED"
	StreamingSessionStreamStateDeleteFailed     StreamingSessionStreamState = "DELETE_FAILED"
)

// Values returns all known values for StreamingSessionStreamState. 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 (StreamingSessionStreamState) Values() []StreamingSessionStreamState {
	return []StreamingSessionStreamState{
		"READY",
		"CREATE_IN_PROGRESS",
		"DELETE_IN_PROGRESS",
		"DELETED",
		"CREATE_FAILED",
		"DELETE_FAILED",
	}
}

type StreamingSessionStreamStatusCode string

// Enum values for StreamingSessionStreamStatusCode
const (
	StreamingSessionStreamStatusCodeStreamCreateInProgress StreamingSessionStreamStatusCode = "STREAM_CREATE_IN_PROGRESS"
	StreamingSessionStreamStatusCodeStreamReady            StreamingSessionStreamStatusCode = "STREAM_READY"
	StreamingSessionStreamStatusCodeStreamDeleteInProgress StreamingSessionStreamStatusCode = "STREAM_DELETE_IN_PROGRESS"
	StreamingSessionStreamStatusCodeStreamDeleted          StreamingSessionStreamStatusCode = "STREAM_DELETED"
	StreamingSessionStreamStatusCodeInternalError          StreamingSessionStreamStatusCode = "INTERNAL_ERROR"
	StreamingSessionStreamStatusCodeNetworkConnectionError StreamingSessionStreamStatusCode = "NETWORK_CONNECTION_ERROR"
)

// Values returns all known values for StreamingSessionStreamStatusCode. 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 (StreamingSessionStreamStatusCode) Values() []StreamingSessionStreamStatusCode {
	return []StreamingSessionStreamStatusCode{
		"STREAM_CREATE_IN_PROGRESS",
		"STREAM_READY",
		"STREAM_DELETE_IN_PROGRESS",
		"STREAM_DELETED",
		"INTERNAL_ERROR",
		"NETWORK_CONNECTION_ERROR",
	}
}

type StudioComponentInitializationScriptRunContext string

// Enum values for StudioComponentInitializationScriptRunContext
const (
	StudioComponentInitializationScriptRunContextSystemInitialization StudioComponentInitializationScriptRunContext = "SYSTEM_INITIALIZATION"
	StudioComponentInitializationScriptRunContextUserInitialization   StudioComponentInitializationScriptRunContext = "USER_INITIALIZATION"
)

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

type StudioComponentState string

// Enum values for StudioComponentState
const (
	StudioComponentStateCreateInProgress StudioComponentState = "CREATE_IN_PROGRESS"
	StudioComponentStateReady            StudioComponentState = "READY"
	StudioComponentStateUpdateInProgress StudioComponentState = "UPDATE_IN_PROGRESS"
	StudioComponentStateDeleteInProgress StudioComponentState = "DELETE_IN_PROGRESS"
	StudioComponentStateDeleted          StudioComponentState = "DELETED"
	StudioComponentStateDeleteFailed     StudioComponentState = "DELETE_FAILED"
	StudioComponentStateCreateFailed     StudioComponentState = "CREATE_FAILED"
	StudioComponentStateUpdateFailed     StudioComponentState = "UPDATE_FAILED"
)

// Values returns all known values for StudioComponentState. 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 (StudioComponentState) Values() []StudioComponentState {
	return []StudioComponentState{
		"CREATE_IN_PROGRESS",
		"READY",
		"UPDATE_IN_PROGRESS",
		"DELETE_IN_PROGRESS",
		"DELETED",
		"DELETE_FAILED",
		"CREATE_FAILED",
		"UPDATE_FAILED",
	}
}

type StudioComponentStatusCode string

// Enum values for StudioComponentStatusCode
const (
	StudioComponentStatusCodeActiveDirectoryAlreadyExists    StudioComponentStatusCode = "ACTIVE_DIRECTORY_ALREADY_EXISTS"
	StudioComponentStatusCodeStudioComponentCreated          StudioComponentStatusCode = "STUDIO_COMPONENT_CREATED"
	StudioComponentStatusCodeStudioComponentUpdated          StudioComponentStatusCode = "STUDIO_COMPONENT_UPDATED"
	StudioComponentStatusCodeStudioComponentDeleted          StudioComponentStatusCode = "STUDIO_COMPONENT_DELETED"
	StudioComponentStatusCodeEncryptionKeyAccessDenied       StudioComponentStatusCode = "ENCRYPTION_KEY_ACCESS_DENIED"
	StudioComponentStatusCodeEncryptionKeyNotFound           StudioComponentStatusCode = "ENCRYPTION_KEY_NOT_FOUND"
	StudioComponentStatusCodeStudioComponentCreateInProgress StudioComponentStatusCode = "STUDIO_COMPONENT_CREATE_IN_PROGRESS"
	StudioComponentStatusCodeStudioComponentUpdateInProgress StudioComponentStatusCode = "STUDIO_COMPONENT_UPDATE_IN_PROGRESS"
	StudioComponentStatusCodeStudioComponentDeleteInProgress StudioComponentStatusCode = "STUDIO_COMPONENT_DELETE_IN_PROGRESS"
	StudioComponentStatusCodeInternalError                   StudioComponentStatusCode = "INTERNAL_ERROR"
)

// Values returns all known values for StudioComponentStatusCode. 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 (StudioComponentStatusCode) Values() []StudioComponentStatusCode {
	return []StudioComponentStatusCode{
		"ACTIVE_DIRECTORY_ALREADY_EXISTS",
		"STUDIO_COMPONENT_CREATED",
		"STUDIO_COMPONENT_UPDATED",
		"STUDIO_COMPONENT_DELETED",
		"ENCRYPTION_KEY_ACCESS_DENIED",
		"ENCRYPTION_KEY_NOT_FOUND",
		"STUDIO_COMPONENT_CREATE_IN_PROGRESS",
		"STUDIO_COMPONENT_UPDATE_IN_PROGRESS",
		"STUDIO_COMPONENT_DELETE_IN_PROGRESS",
		"INTERNAL_ERROR",
	}
}

type StudioComponentSubtype string

// Enum values for StudioComponentSubtype
const (
	StudioComponentSubtypeAwsManagedMicrosoftAd StudioComponentSubtype = "AWS_MANAGED_MICROSOFT_AD"
	StudioComponentSubtypeAmazonFsxForWindows   StudioComponentSubtype = "AMAZON_FSX_FOR_WINDOWS"
	StudioComponentSubtypeAmazonFsxForLustre    StudioComponentSubtype = "AMAZON_FSX_FOR_LUSTRE"
	StudioComponentSubtypeCustom                StudioComponentSubtype = "CUSTOM"
)

// Values returns all known values for StudioComponentSubtype. 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 (StudioComponentSubtype) Values() []StudioComponentSubtype {
	return []StudioComponentSubtype{
		"AWS_MANAGED_MICROSOFT_AD",
		"AMAZON_FSX_FOR_WINDOWS",
		"AMAZON_FSX_FOR_LUSTRE",
		"CUSTOM",
	}
}

type StudioComponentType string

// Enum values for StudioComponentType
const (
	StudioComponentTypeActiveDirectory  StudioComponentType = "ACTIVE_DIRECTORY"
	StudioComponentTypeSharedFileSystem StudioComponentType = "SHARED_FILE_SYSTEM"
	StudioComponentTypeComputeFarm      StudioComponentType = "COMPUTE_FARM"
	StudioComponentTypeLicenseService   StudioComponentType = "LICENSE_SERVICE"
	StudioComponentTypeCustom           StudioComponentType = "CUSTOM"
)

// Values returns all known values for StudioComponentType. 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 (StudioComponentType) Values() []StudioComponentType {
	return []StudioComponentType{
		"ACTIVE_DIRECTORY",
		"SHARED_FILE_SYSTEM",
		"COMPUTE_FARM",
		"LICENSE_SERVICE",
		"CUSTOM",
	}
}

type StudioEncryptionConfigurationKeyType string

// Enum values for StudioEncryptionConfigurationKeyType
const (
	StudioEncryptionConfigurationKeyTypeAwsOwnedKey        StudioEncryptionConfigurationKeyType = "AWS_OWNED_KEY"
	StudioEncryptionConfigurationKeyTypeCustomerManagedKey StudioEncryptionConfigurationKeyType = "CUSTOMER_MANAGED_KEY"
)

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

type StudioPersona string

// Enum values for StudioPersona
const (
	StudioPersonaAdministrator StudioPersona = "ADMINISTRATOR"
)

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

type StudioState string

// Enum values for StudioState
const (
	StudioStateCreateInProgress StudioState = "CREATE_IN_PROGRESS"
	StudioStateReady            StudioState = "READY"
	StudioStateUpdateInProgress StudioState = "UPDATE_IN_PROGRESS"
	StudioStateDeleteInProgress StudioState = "DELETE_IN_PROGRESS"
	StudioStateDeleted          StudioState = "DELETED"
	StudioStateDeleteFailed     StudioState = "DELETE_FAILED"
	StudioStateCreateFailed     StudioState = "CREATE_FAILED"
	StudioStateUpdateFailed     StudioState = "UPDATE_FAILED"
)

// Values returns all known values for StudioState. 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 (StudioState) Values() []StudioState {
	return []StudioState{
		"CREATE_IN_PROGRESS",
		"READY",
		"UPDATE_IN_PROGRESS",
		"DELETE_IN_PROGRESS",
		"DELETED",
		"DELETE_FAILED",
		"CREATE_FAILED",
		"UPDATE_FAILED",
	}
}

type StudioStatusCode string

// Enum values for StudioStatusCode
const (
	StudioStatusCodeStudioCreated                        StudioStatusCode = "STUDIO_CREATED"
	StudioStatusCodeStudioDeleted                        StudioStatusCode = "STUDIO_DELETED"
	StudioStatusCodeStudioUpdated                        StudioStatusCode = "STUDIO_UPDATED"
	StudioStatusCodeStudioCreateInProgress               StudioStatusCode = "STUDIO_CREATE_IN_PROGRESS"
	StudioStatusCodeStudioUpdateInProgress               StudioStatusCode = "STUDIO_UPDATE_IN_PROGRESS"
	StudioStatusCodeStudioDeleteInProgress               StudioStatusCode = "STUDIO_DELETE_IN_PROGRESS"
	StudioStatusCodeStudioWithLaunchProfilesNotDeleted   StudioStatusCode = "STUDIO_WITH_LAUNCH_PROFILES_NOT_DELETED"
	StudioStatusCodeStudioWithStudioComponentsNotDeleted StudioStatusCode = "STUDIO_WITH_STUDIO_COMPONENTS_NOT_DELETED"
	StudioStatusCodeStudioWithStreamingImagesNotDeleted  StudioStatusCode = "STUDIO_WITH_STREAMING_IMAGES_NOT_DELETED"
	StudioStatusCodeAwsSsoNotEnabled                     StudioStatusCode = "AWS_SSO_NOT_ENABLED"
	StudioStatusCodeAwsSsoAccessDenied                   StudioStatusCode = "AWS_SSO_ACCESS_DENIED"
	StudioStatusCodeRoleNotOwnedByStudioOwner            StudioStatusCode = "ROLE_NOT_OWNED_BY_STUDIO_OWNER"
	StudioStatusCodeRoleCouldNotBeAssumed                StudioStatusCode = "ROLE_COULD_NOT_BE_ASSUMED"
	StudioStatusCodeInternalError                        StudioStatusCode = "INTERNAL_ERROR"
	StudioStatusCodeEncryptionKeyNotFound                StudioStatusCode = "ENCRYPTION_KEY_NOT_FOUND"
	StudioStatusCodeEncryptionKeyAccessDenied            StudioStatusCode = "ENCRYPTION_KEY_ACCESS_DENIED"
	StudioStatusCodeAwsSsoConfigurationRepaired          StudioStatusCode = "AWS_SSO_CONFIGURATION_REPAIRED"
	StudioStatusCodeAwsSsoConfigurationRepairInProgress  StudioStatusCode = "AWS_SSO_CONFIGURATION_REPAIR_IN_PROGRESS"
	StudioStatusCodeAwsStsRegionDisabled                 StudioStatusCode = "AWS_STS_REGION_DISABLED"
)

// Values returns all known values for StudioStatusCode. 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 (StudioStatusCode) Values() []StudioStatusCode {
	return []StudioStatusCode{
		"STUDIO_CREATED",
		"STUDIO_DELETED",
		"STUDIO_UPDATED",
		"STUDIO_CREATE_IN_PROGRESS",
		"STUDIO_UPDATE_IN_PROGRESS",
		"STUDIO_DELETE_IN_PROGRESS",
		"STUDIO_WITH_LAUNCH_PROFILES_NOT_DELETED",
		"STUDIO_WITH_STUDIO_COMPONENTS_NOT_DELETED",
		"STUDIO_WITH_STREAMING_IMAGES_NOT_DELETED",
		"AWS_SSO_NOT_ENABLED",
		"AWS_SSO_ACCESS_DENIED",
		"ROLE_NOT_OWNED_BY_STUDIO_OWNER",
		"ROLE_COULD_NOT_BE_ASSUMED",
		"INTERNAL_ERROR",
		"ENCRYPTION_KEY_NOT_FOUND",
		"ENCRYPTION_KEY_ACCESS_DENIED",
		"AWS_SSO_CONFIGURATION_REPAIRED",
		"AWS_SSO_CONFIGURATION_REPAIR_IN_PROGRESS",
		"AWS_STS_REGION_DISABLED",
	}
}

type VolumeRetentionMode string

// Enum values for VolumeRetentionMode
const (
	VolumeRetentionModeRetain VolumeRetentionMode = "RETAIN"
	VolumeRetentionModeDelete VolumeRetentionMode = "DELETE"
)

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