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 (967 lines) | stat: -rw-r--r-- 43,693 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
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
// Code generated by smithy-go-codegen DO NOT EDIT.

package types

type DataReplicationErrorString string

// Enum values for DataReplicationErrorString
const (
	DataReplicationErrorStringAgentNotSeen                            DataReplicationErrorString = "AGENT_NOT_SEEN"
	DataReplicationErrorStringSnapshotsFailure                        DataReplicationErrorString = "SNAPSHOTS_FAILURE"
	DataReplicationErrorStringNotConverging                           DataReplicationErrorString = "NOT_CONVERGING"
	DataReplicationErrorStringUnstableNetwork                         DataReplicationErrorString = "UNSTABLE_NETWORK"
	DataReplicationErrorStringFailedToCreateSecurityGroup             DataReplicationErrorString = "FAILED_TO_CREATE_SECURITY_GROUP"
	DataReplicationErrorStringFailedToLaunchReplicationServer         DataReplicationErrorString = "FAILED_TO_LAUNCH_REPLICATION_SERVER"
	DataReplicationErrorStringFailedToBootReplicationServer           DataReplicationErrorString = "FAILED_TO_BOOT_REPLICATION_SERVER"
	DataReplicationErrorStringFailedToAuthenticateWithService         DataReplicationErrorString = "FAILED_TO_AUTHENTICATE_WITH_SERVICE"
	DataReplicationErrorStringFailedToDownloadReplicationSoftware     DataReplicationErrorString = "FAILED_TO_DOWNLOAD_REPLICATION_SOFTWARE"
	DataReplicationErrorStringFailedToCreateStagingDisks              DataReplicationErrorString = "FAILED_TO_CREATE_STAGING_DISKS"
	DataReplicationErrorStringFailedToAttachStagingDisks              DataReplicationErrorString = "FAILED_TO_ATTACH_STAGING_DISKS"
	DataReplicationErrorStringFailedToPairReplicationServerWithAgent  DataReplicationErrorString = "FAILED_TO_PAIR_REPLICATION_SERVER_WITH_AGENT"
	DataReplicationErrorStringFailedToConnectAgentToReplicationServer DataReplicationErrorString = "FAILED_TO_CONNECT_AGENT_TO_REPLICATION_SERVER"
	DataReplicationErrorStringFailedToStartDataTransfer               DataReplicationErrorString = "FAILED_TO_START_DATA_TRANSFER"
)

// Values returns all known values for DataReplicationErrorString. 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 (DataReplicationErrorString) Values() []DataReplicationErrorString {
	return []DataReplicationErrorString{
		"AGENT_NOT_SEEN",
		"SNAPSHOTS_FAILURE",
		"NOT_CONVERGING",
		"UNSTABLE_NETWORK",
		"FAILED_TO_CREATE_SECURITY_GROUP",
		"FAILED_TO_LAUNCH_REPLICATION_SERVER",
		"FAILED_TO_BOOT_REPLICATION_SERVER",
		"FAILED_TO_AUTHENTICATE_WITH_SERVICE",
		"FAILED_TO_DOWNLOAD_REPLICATION_SOFTWARE",
		"FAILED_TO_CREATE_STAGING_DISKS",
		"FAILED_TO_ATTACH_STAGING_DISKS",
		"FAILED_TO_PAIR_REPLICATION_SERVER_WITH_AGENT",
		"FAILED_TO_CONNECT_AGENT_TO_REPLICATION_SERVER",
		"FAILED_TO_START_DATA_TRANSFER",
	}
}

type DataReplicationInitiationStepName string

// Enum values for DataReplicationInitiationStepName
const (
	DataReplicationInitiationStepNameWait                            DataReplicationInitiationStepName = "WAIT"
	DataReplicationInitiationStepNameCreateSecurityGroup             DataReplicationInitiationStepName = "CREATE_SECURITY_GROUP"
	DataReplicationInitiationStepNameLaunchReplicationServer         DataReplicationInitiationStepName = "LAUNCH_REPLICATION_SERVER"
	DataReplicationInitiationStepNameBootReplicationServer           DataReplicationInitiationStepName = "BOOT_REPLICATION_SERVER"
	DataReplicationInitiationStepNameAuthenticateWithService         DataReplicationInitiationStepName = "AUTHENTICATE_WITH_SERVICE"
	DataReplicationInitiationStepNameDownloadReplicationSoftware     DataReplicationInitiationStepName = "DOWNLOAD_REPLICATION_SOFTWARE"
	DataReplicationInitiationStepNameCreateStagingDisks              DataReplicationInitiationStepName = "CREATE_STAGING_DISKS"
	DataReplicationInitiationStepNameAttachStagingDisks              DataReplicationInitiationStepName = "ATTACH_STAGING_DISKS"
	DataReplicationInitiationStepNamePairReplicationServerWithAgent  DataReplicationInitiationStepName = "PAIR_REPLICATION_SERVER_WITH_AGENT"
	DataReplicationInitiationStepNameConnectAgentToReplicationServer DataReplicationInitiationStepName = "CONNECT_AGENT_TO_REPLICATION_SERVER"
	DataReplicationInitiationStepNameStartDataTransfer               DataReplicationInitiationStepName = "START_DATA_TRANSFER"
)

// Values returns all known values for DataReplicationInitiationStepName. 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 (DataReplicationInitiationStepName) Values() []DataReplicationInitiationStepName {
	return []DataReplicationInitiationStepName{
		"WAIT",
		"CREATE_SECURITY_GROUP",
		"LAUNCH_REPLICATION_SERVER",
		"BOOT_REPLICATION_SERVER",
		"AUTHENTICATE_WITH_SERVICE",
		"DOWNLOAD_REPLICATION_SOFTWARE",
		"CREATE_STAGING_DISKS",
		"ATTACH_STAGING_DISKS",
		"PAIR_REPLICATION_SERVER_WITH_AGENT",
		"CONNECT_AGENT_TO_REPLICATION_SERVER",
		"START_DATA_TRANSFER",
	}
}

type DataReplicationInitiationStepStatus string

// Enum values for DataReplicationInitiationStepStatus
const (
	DataReplicationInitiationStepStatusNotStarted DataReplicationInitiationStepStatus = "NOT_STARTED"
	DataReplicationInitiationStepStatusInProgress DataReplicationInitiationStepStatus = "IN_PROGRESS"
	DataReplicationInitiationStepStatusSucceeded  DataReplicationInitiationStepStatus = "SUCCEEDED"
	DataReplicationInitiationStepStatusFailed     DataReplicationInitiationStepStatus = "FAILED"
	DataReplicationInitiationStepStatusSkipped    DataReplicationInitiationStepStatus = "SKIPPED"
)

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

type DataReplicationState string

// Enum values for DataReplicationState
const (
	DataReplicationStateStopped          DataReplicationState = "STOPPED"
	DataReplicationStateInitiating       DataReplicationState = "INITIATING"
	DataReplicationStateInitialSync      DataReplicationState = "INITIAL_SYNC"
	DataReplicationStateBacklog          DataReplicationState = "BACKLOG"
	DataReplicationStateCreatingSnapshot DataReplicationState = "CREATING_SNAPSHOT"
	DataReplicationStateContinuous       DataReplicationState = "CONTINUOUS"
	DataReplicationStatePaused           DataReplicationState = "PAUSED"
	DataReplicationStateRescan           DataReplicationState = "RESCAN"
	DataReplicationStateStalled          DataReplicationState = "STALLED"
	DataReplicationStateDisconnected     DataReplicationState = "DISCONNECTED"
)

// Values returns all known values for DataReplicationState. 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 (DataReplicationState) Values() []DataReplicationState {
	return []DataReplicationState{
		"STOPPED",
		"INITIATING",
		"INITIAL_SYNC",
		"BACKLOG",
		"CREATING_SNAPSHOT",
		"CONTINUOUS",
		"PAUSED",
		"RESCAN",
		"STALLED",
		"DISCONNECTED",
	}
}

type EC2InstanceState string

// Enum values for EC2InstanceState
const (
	EC2InstanceStatePending      EC2InstanceState = "PENDING"
	EC2InstanceStateRunning      EC2InstanceState = "RUNNING"
	EC2InstanceStateStopping     EC2InstanceState = "STOPPING"
	EC2InstanceStateStopped      EC2InstanceState = "STOPPED"
	EC2InstanceStateShuttingDown EC2InstanceState = "SHUTTING-DOWN"
	EC2InstanceStateTerminated   EC2InstanceState = "TERMINATED"
	EC2InstanceStateNotFound     EC2InstanceState = "NOT_FOUND"
)

// Values returns all known values for EC2InstanceState. 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 (EC2InstanceState) Values() []EC2InstanceState {
	return []EC2InstanceState{
		"PENDING",
		"RUNNING",
		"STOPPING",
		"STOPPED",
		"SHUTTING-DOWN",
		"TERMINATED",
		"NOT_FOUND",
	}
}

type ExtensionStatus string

// Enum values for ExtensionStatus
const (
	ExtensionStatusExtended       ExtensionStatus = "EXTENDED"
	ExtensionStatusExtensionError ExtensionStatus = "EXTENSION_ERROR"
	ExtensionStatusNotExtended    ExtensionStatus = "NOT_EXTENDED"
)

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

type FailbackLaunchType string

// Enum values for FailbackLaunchType
const (
	FailbackLaunchTypeRecovery FailbackLaunchType = "RECOVERY"
	FailbackLaunchTypeDrill    FailbackLaunchType = "DRILL"
)

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

type FailbackReplicationError string

// Enum values for FailbackReplicationError
const (
	FailbackReplicationErrorAgentNotSeen                                          FailbackReplicationError = "AGENT_NOT_SEEN"
	FailbackReplicationErrorFailbackClientNotSeen                                 FailbackReplicationError = "FAILBACK_CLIENT_NOT_SEEN"
	FailbackReplicationErrorNotConverging                                         FailbackReplicationError = "NOT_CONVERGING"
	FailbackReplicationErrorUnstableNetwork                                       FailbackReplicationError = "UNSTABLE_NETWORK"
	FailbackReplicationErrorFailedToEstablishRecoveryInstanceCommunication        FailbackReplicationError = "FAILED_TO_ESTABLISH_RECOVERY_INSTANCE_COMMUNICATION"
	FailbackReplicationErrorFailedToDownloadReplicationSoftwareToFailbackClient   FailbackReplicationError = "FAILED_TO_DOWNLOAD_REPLICATION_SOFTWARE_TO_FAILBACK_CLIENT"
	FailbackReplicationErrorFailedToConfigureReplicationSoftware                  FailbackReplicationError = "FAILED_TO_CONFIGURE_REPLICATION_SOFTWARE"
	FailbackReplicationErrorFailedToPairAgentWithReplicationSoftware              FailbackReplicationError = "FAILED_TO_PAIR_AGENT_WITH_REPLICATION_SOFTWARE"
	FailbackReplicationErrorFailedToEstablishAgentReplicatorSoftwareCommunication FailbackReplicationError = "FAILED_TO_ESTABLISH_AGENT_REPLICATOR_SOFTWARE_COMMUNICATION"
	FailbackReplicationErrorFailedGettingReplicationState                         FailbackReplicationError = "FAILED_GETTING_REPLICATION_STATE"
	FailbackReplicationErrorSnapshotsFailure                                      FailbackReplicationError = "SNAPSHOTS_FAILURE"
	FailbackReplicationErrorFailedToCreateSecurityGroup                           FailbackReplicationError = "FAILED_TO_CREATE_SECURITY_GROUP"
	FailbackReplicationErrorFailedToLaunchReplicationServer                       FailbackReplicationError = "FAILED_TO_LAUNCH_REPLICATION_SERVER"
	FailbackReplicationErrorFailedToBootReplicationServer                         FailbackReplicationError = "FAILED_TO_BOOT_REPLICATION_SERVER"
	FailbackReplicationErrorFailedToAuthenticateWithService                       FailbackReplicationError = "FAILED_TO_AUTHENTICATE_WITH_SERVICE"
	FailbackReplicationErrorFailedToDownloadReplicationSoftware                   FailbackReplicationError = "FAILED_TO_DOWNLOAD_REPLICATION_SOFTWARE"
	FailbackReplicationErrorFailedToCreateStagingDisks                            FailbackReplicationError = "FAILED_TO_CREATE_STAGING_DISKS"
	FailbackReplicationErrorFailedToAttachStagingDisks                            FailbackReplicationError = "FAILED_TO_ATTACH_STAGING_DISKS"
	FailbackReplicationErrorFailedToPairReplicationServerWithAgent                FailbackReplicationError = "FAILED_TO_PAIR_REPLICATION_SERVER_WITH_AGENT"
	FailbackReplicationErrorFailedToConnectAgentToReplicationServer               FailbackReplicationError = "FAILED_TO_CONNECT_AGENT_TO_REPLICATION_SERVER"
	FailbackReplicationErrorFailedToStartDataTransfer                             FailbackReplicationError = "FAILED_TO_START_DATA_TRANSFER"
)

// Values returns all known values for FailbackReplicationError. 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 (FailbackReplicationError) Values() []FailbackReplicationError {
	return []FailbackReplicationError{
		"AGENT_NOT_SEEN",
		"FAILBACK_CLIENT_NOT_SEEN",
		"NOT_CONVERGING",
		"UNSTABLE_NETWORK",
		"FAILED_TO_ESTABLISH_RECOVERY_INSTANCE_COMMUNICATION",
		"FAILED_TO_DOWNLOAD_REPLICATION_SOFTWARE_TO_FAILBACK_CLIENT",
		"FAILED_TO_CONFIGURE_REPLICATION_SOFTWARE",
		"FAILED_TO_PAIR_AGENT_WITH_REPLICATION_SOFTWARE",
		"FAILED_TO_ESTABLISH_AGENT_REPLICATOR_SOFTWARE_COMMUNICATION",
		"FAILED_GETTING_REPLICATION_STATE",
		"SNAPSHOTS_FAILURE",
		"FAILED_TO_CREATE_SECURITY_GROUP",
		"FAILED_TO_LAUNCH_REPLICATION_SERVER",
		"FAILED_TO_BOOT_REPLICATION_SERVER",
		"FAILED_TO_AUTHENTICATE_WITH_SERVICE",
		"FAILED_TO_DOWNLOAD_REPLICATION_SOFTWARE",
		"FAILED_TO_CREATE_STAGING_DISKS",
		"FAILED_TO_ATTACH_STAGING_DISKS",
		"FAILED_TO_PAIR_REPLICATION_SERVER_WITH_AGENT",
		"FAILED_TO_CONNECT_AGENT_TO_REPLICATION_SERVER",
		"FAILED_TO_START_DATA_TRANSFER",
	}
}

type FailbackState string

// Enum values for FailbackState
const (
	FailbackStateFailbackNotStarted              FailbackState = "FAILBACK_NOT_STARTED"
	FailbackStateFailbackInProgress              FailbackState = "FAILBACK_IN_PROGRESS"
	FailbackStateFailbackReadyForLaunch          FailbackState = "FAILBACK_READY_FOR_LAUNCH"
	FailbackStateFailbackCompleted               FailbackState = "FAILBACK_COMPLETED"
	FailbackStateFailbackError                   FailbackState = "FAILBACK_ERROR"
	FailbackStateFailbackNotReadyForLaunch       FailbackState = "FAILBACK_NOT_READY_FOR_LAUNCH"
	FailbackStateFailbackLaunchStateNotAvailable FailbackState = "FAILBACK_LAUNCH_STATE_NOT_AVAILABLE"
)

// Values returns all known values for FailbackState. 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 (FailbackState) Values() []FailbackState {
	return []FailbackState{
		"FAILBACK_NOT_STARTED",
		"FAILBACK_IN_PROGRESS",
		"FAILBACK_READY_FOR_LAUNCH",
		"FAILBACK_COMPLETED",
		"FAILBACK_ERROR",
		"FAILBACK_NOT_READY_FOR_LAUNCH",
		"FAILBACK_LAUNCH_STATE_NOT_AVAILABLE",
	}
}

type InitiatedBy string

// Enum values for InitiatedBy
const (
	InitiatedByStartRecovery              InitiatedBy = "START_RECOVERY"
	InitiatedByStartDrill                 InitiatedBy = "START_DRILL"
	InitiatedByFailback                   InitiatedBy = "FAILBACK"
	InitiatedByDiagnostic                 InitiatedBy = "DIAGNOSTIC"
	InitiatedByTerminateRecoveryInstances InitiatedBy = "TERMINATE_RECOVERY_INSTANCES"
	InitiatedByTargetAccount              InitiatedBy = "TARGET_ACCOUNT"
	InitiatedByCreateNetworkRecovery      InitiatedBy = "CREATE_NETWORK_RECOVERY"
	InitiatedByUpdateNetworkRecovery      InitiatedBy = "UPDATE_NETWORK_RECOVERY"
	InitiatedByAssociateNetworkRecovery   InitiatedBy = "ASSOCIATE_NETWORK_RECOVERY"
)

// Values returns all known values for InitiatedBy. 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 (InitiatedBy) Values() []InitiatedBy {
	return []InitiatedBy{
		"START_RECOVERY",
		"START_DRILL",
		"FAILBACK",
		"DIAGNOSTIC",
		"TERMINATE_RECOVERY_INSTANCES",
		"TARGET_ACCOUNT",
		"CREATE_NETWORK_RECOVERY",
		"UPDATE_NETWORK_RECOVERY",
		"ASSOCIATE_NETWORK_RECOVERY",
	}
}

type JobLogEvent string

// Enum values for JobLogEvent
const (
	JobLogEventJobStart                         JobLogEvent = "JOB_START"
	JobLogEventServerSkipped                    JobLogEvent = "SERVER_SKIPPED"
	JobLogEventCleanupStart                     JobLogEvent = "CLEANUP_START"
	JobLogEventCleanupEnd                       JobLogEvent = "CLEANUP_END"
	JobLogEventCleanupFail                      JobLogEvent = "CLEANUP_FAIL"
	JobLogEventSnapshotStart                    JobLogEvent = "SNAPSHOT_START"
	JobLogEventSnapshotEnd                      JobLogEvent = "SNAPSHOT_END"
	JobLogEventSnapshotFail                     JobLogEvent = "SNAPSHOT_FAIL"
	JobLogEventUsingPreviousSnapshot            JobLogEvent = "USING_PREVIOUS_SNAPSHOT"
	JobLogEventUsingPreviousSnapshotFailed      JobLogEvent = "USING_PREVIOUS_SNAPSHOT_FAILED"
	JobLogEventConversionStart                  JobLogEvent = "CONVERSION_START"
	JobLogEventConversionEnd                    JobLogEvent = "CONVERSION_END"
	JobLogEventConversionFail                   JobLogEvent = "CONVERSION_FAIL"
	JobLogEventLaunchStart                      JobLogEvent = "LAUNCH_START"
	JobLogEventLaunchFailed                     JobLogEvent = "LAUNCH_FAILED"
	JobLogEventJobCancel                        JobLogEvent = "JOB_CANCEL"
	JobLogEventJobEnd                           JobLogEvent = "JOB_END"
	JobLogEventDeployNetworkConfigurationStart  JobLogEvent = "DEPLOY_NETWORK_CONFIGURATION_START"
	JobLogEventDeployNetworkConfigurationEnd    JobLogEvent = "DEPLOY_NETWORK_CONFIGURATION_END"
	JobLogEventDeployNetworkConfigurationFailed JobLogEvent = "DEPLOY_NETWORK_CONFIGURATION_FAILED"
	JobLogEventUpdateNetworkConfigurationStart  JobLogEvent = "UPDATE_NETWORK_CONFIGURATION_START"
	JobLogEventUpdateNetworkConfigurationEnd    JobLogEvent = "UPDATE_NETWORK_CONFIGURATION_END"
	JobLogEventUpdateNetworkConfigurationFailed JobLogEvent = "UPDATE_NETWORK_CONFIGURATION_FAILED"
	JobLogEventUpdateLaunchTemplateStart        JobLogEvent = "UPDATE_LAUNCH_TEMPLATE_START"
	JobLogEventUpdateLaunchTemplateEnd          JobLogEvent = "UPDATE_LAUNCH_TEMPLATE_END"
	JobLogEventUpdateLaunchTemplateFailed       JobLogEvent = "UPDATE_LAUNCH_TEMPLATE_FAILED"
	JobLogEventNetworkRecoveryFail              JobLogEvent = "NETWORK_RECOVERY_FAIL"
)

// Values returns all known values for JobLogEvent. 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 (JobLogEvent) Values() []JobLogEvent {
	return []JobLogEvent{
		"JOB_START",
		"SERVER_SKIPPED",
		"CLEANUP_START",
		"CLEANUP_END",
		"CLEANUP_FAIL",
		"SNAPSHOT_START",
		"SNAPSHOT_END",
		"SNAPSHOT_FAIL",
		"USING_PREVIOUS_SNAPSHOT",
		"USING_PREVIOUS_SNAPSHOT_FAILED",
		"CONVERSION_START",
		"CONVERSION_END",
		"CONVERSION_FAIL",
		"LAUNCH_START",
		"LAUNCH_FAILED",
		"JOB_CANCEL",
		"JOB_END",
		"DEPLOY_NETWORK_CONFIGURATION_START",
		"DEPLOY_NETWORK_CONFIGURATION_END",
		"DEPLOY_NETWORK_CONFIGURATION_FAILED",
		"UPDATE_NETWORK_CONFIGURATION_START",
		"UPDATE_NETWORK_CONFIGURATION_END",
		"UPDATE_NETWORK_CONFIGURATION_FAILED",
		"UPDATE_LAUNCH_TEMPLATE_START",
		"UPDATE_LAUNCH_TEMPLATE_END",
		"UPDATE_LAUNCH_TEMPLATE_FAILED",
		"NETWORK_RECOVERY_FAIL",
	}
}

type JobStatus string

// Enum values for JobStatus
const (
	JobStatusPending   JobStatus = "PENDING"
	JobStatusStarted   JobStatus = "STARTED"
	JobStatusCompleted JobStatus = "COMPLETED"
)

// 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{
		"PENDING",
		"STARTED",
		"COMPLETED",
	}
}

type JobType string

// Enum values for JobType
const (
	JobTypeLaunch                  JobType = "LAUNCH"
	JobTypeTerminate               JobType = "TERMINATE"
	JobTypeCreateConvertedSnapshot JobType = "CREATE_CONVERTED_SNAPSHOT"
)

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

type LastLaunchResult string

// Enum values for LastLaunchResult
const (
	LastLaunchResultNotStarted LastLaunchResult = "NOT_STARTED"
	LastLaunchResultPending    LastLaunchResult = "PENDING"
	LastLaunchResultSucceeded  LastLaunchResult = "SUCCEEDED"
	LastLaunchResultFailed     LastLaunchResult = "FAILED"
)

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

type LastLaunchType string

// Enum values for LastLaunchType
const (
	LastLaunchTypeRecovery LastLaunchType = "RECOVERY"
	LastLaunchTypeDrill    LastLaunchType = "DRILL"
)

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

type LaunchActionCategory string

// Enum values for LaunchActionCategory
const (
	LaunchActionCategoryMonitoring    LaunchActionCategory = "MONITORING"
	LaunchActionCategoryValidation    LaunchActionCategory = "VALIDATION"
	LaunchActionCategoryConfiguration LaunchActionCategory = "CONFIGURATION"
	LaunchActionCategorySecurity      LaunchActionCategory = "SECURITY"
	LaunchActionCategoryOther         LaunchActionCategory = "OTHER"
)

// Values returns all known values for LaunchActionCategory. 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 (LaunchActionCategory) Values() []LaunchActionCategory {
	return []LaunchActionCategory{
		"MONITORING",
		"VALIDATION",
		"CONFIGURATION",
		"SECURITY",
		"OTHER",
	}
}

type LaunchActionParameterType string

// Enum values for LaunchActionParameterType
const (
	LaunchActionParameterTypeSsmStore LaunchActionParameterType = "SSM_STORE"
	LaunchActionParameterTypeDynamic  LaunchActionParameterType = "DYNAMIC"
)

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

type LaunchActionRunStatus string

// Enum values for LaunchActionRunStatus
const (
	LaunchActionRunStatusInProgress LaunchActionRunStatus = "IN_PROGRESS"
	LaunchActionRunStatusSucceeded  LaunchActionRunStatus = "SUCCEEDED"
	LaunchActionRunStatusFailed     LaunchActionRunStatus = "FAILED"
)

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

type LaunchActionType string

// Enum values for LaunchActionType
const (
	LaunchActionTypeSsmAutomation LaunchActionType = "SSM_AUTOMATION"
	LaunchActionTypeSsmCommand    LaunchActionType = "SSM_COMMAND"
)

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

type LaunchDisposition string

// Enum values for LaunchDisposition
const (
	LaunchDispositionStopped LaunchDisposition = "STOPPED"
	LaunchDispositionStarted LaunchDisposition = "STARTED"
)

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

type LaunchStatus string

// Enum values for LaunchStatus
const (
	LaunchStatusPending    LaunchStatus = "PENDING"
	LaunchStatusInProgress LaunchStatus = "IN_PROGRESS"
	LaunchStatusLaunched   LaunchStatus = "LAUNCHED"
	LaunchStatusFailed     LaunchStatus = "FAILED"
	LaunchStatusTerminated LaunchStatus = "TERMINATED"
)

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

type OriginEnvironment string

// Enum values for OriginEnvironment
const (
	OriginEnvironmentOnPremises OriginEnvironment = "ON_PREMISES"
	OriginEnvironmentAws        OriginEnvironment = "AWS"
)

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

type PITPolicyRuleUnits string

// Enum values for PITPolicyRuleUnits
const (
	PITPolicyRuleUnitsMinute PITPolicyRuleUnits = "MINUTE"
	PITPolicyRuleUnitsHour   PITPolicyRuleUnits = "HOUR"
	PITPolicyRuleUnitsDay    PITPolicyRuleUnits = "DAY"
)

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

type RecoveryInstanceDataReplicationInitiationStepName string

// Enum values for RecoveryInstanceDataReplicationInitiationStepName
const (
	RecoveryInstanceDataReplicationInitiationStepNameLinkFailbackClientWithRecoveryInstance        RecoveryInstanceDataReplicationInitiationStepName = "LINK_FAILBACK_CLIENT_WITH_RECOVERY_INSTANCE"
	RecoveryInstanceDataReplicationInitiationStepNameCompleteVolumeMapping                         RecoveryInstanceDataReplicationInitiationStepName = "COMPLETE_VOLUME_MAPPING"
	RecoveryInstanceDataReplicationInitiationStepNameEstablishRecoveryInstanceCommunication        RecoveryInstanceDataReplicationInitiationStepName = "ESTABLISH_RECOVERY_INSTANCE_COMMUNICATION"
	RecoveryInstanceDataReplicationInitiationStepNameDownloadReplicationSoftwareToFailbackClient   RecoveryInstanceDataReplicationInitiationStepName = "DOWNLOAD_REPLICATION_SOFTWARE_TO_FAILBACK_CLIENT"
	RecoveryInstanceDataReplicationInitiationStepNameConfigureReplicationSoftware                  RecoveryInstanceDataReplicationInitiationStepName = "CONFIGURE_REPLICATION_SOFTWARE"
	RecoveryInstanceDataReplicationInitiationStepNamePairAgentWithReplicationSoftware              RecoveryInstanceDataReplicationInitiationStepName = "PAIR_AGENT_WITH_REPLICATION_SOFTWARE"
	RecoveryInstanceDataReplicationInitiationStepNameEstablishAgentReplicatorSoftwareCommunication RecoveryInstanceDataReplicationInitiationStepName = "ESTABLISH_AGENT_REPLICATOR_SOFTWARE_COMMUNICATION"
	RecoveryInstanceDataReplicationInitiationStepNameWait                                          RecoveryInstanceDataReplicationInitiationStepName = "WAIT"
	RecoveryInstanceDataReplicationInitiationStepNameCreateSecurityGroup                           RecoveryInstanceDataReplicationInitiationStepName = "CREATE_SECURITY_GROUP"
	RecoveryInstanceDataReplicationInitiationStepNameLaunchReplicationServer                       RecoveryInstanceDataReplicationInitiationStepName = "LAUNCH_REPLICATION_SERVER"
	RecoveryInstanceDataReplicationInitiationStepNameBootReplicationServer                         RecoveryInstanceDataReplicationInitiationStepName = "BOOT_REPLICATION_SERVER"
	RecoveryInstanceDataReplicationInitiationStepNameAuthenticateWithService                       RecoveryInstanceDataReplicationInitiationStepName = "AUTHENTICATE_WITH_SERVICE"
	RecoveryInstanceDataReplicationInitiationStepNameDownloadReplicationSoftware                   RecoveryInstanceDataReplicationInitiationStepName = "DOWNLOAD_REPLICATION_SOFTWARE"
	RecoveryInstanceDataReplicationInitiationStepNameCreateStagingDisks                            RecoveryInstanceDataReplicationInitiationStepName = "CREATE_STAGING_DISKS"
	RecoveryInstanceDataReplicationInitiationStepNameAttachStagingDisks                            RecoveryInstanceDataReplicationInitiationStepName = "ATTACH_STAGING_DISKS"
	RecoveryInstanceDataReplicationInitiationStepNamePairReplicationServerWithAgent                RecoveryInstanceDataReplicationInitiationStepName = "PAIR_REPLICATION_SERVER_WITH_AGENT"
	RecoveryInstanceDataReplicationInitiationStepNameConnectAgentToReplicationServer               RecoveryInstanceDataReplicationInitiationStepName = "CONNECT_AGENT_TO_REPLICATION_SERVER"
	RecoveryInstanceDataReplicationInitiationStepNameStartDataTransfer                             RecoveryInstanceDataReplicationInitiationStepName = "START_DATA_TRANSFER"
)

// Values returns all known values for
// RecoveryInstanceDataReplicationInitiationStepName. 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 (RecoveryInstanceDataReplicationInitiationStepName) Values() []RecoveryInstanceDataReplicationInitiationStepName {
	return []RecoveryInstanceDataReplicationInitiationStepName{
		"LINK_FAILBACK_CLIENT_WITH_RECOVERY_INSTANCE",
		"COMPLETE_VOLUME_MAPPING",
		"ESTABLISH_RECOVERY_INSTANCE_COMMUNICATION",
		"DOWNLOAD_REPLICATION_SOFTWARE_TO_FAILBACK_CLIENT",
		"CONFIGURE_REPLICATION_SOFTWARE",
		"PAIR_AGENT_WITH_REPLICATION_SOFTWARE",
		"ESTABLISH_AGENT_REPLICATOR_SOFTWARE_COMMUNICATION",
		"WAIT",
		"CREATE_SECURITY_GROUP",
		"LAUNCH_REPLICATION_SERVER",
		"BOOT_REPLICATION_SERVER",
		"AUTHENTICATE_WITH_SERVICE",
		"DOWNLOAD_REPLICATION_SOFTWARE",
		"CREATE_STAGING_DISKS",
		"ATTACH_STAGING_DISKS",
		"PAIR_REPLICATION_SERVER_WITH_AGENT",
		"CONNECT_AGENT_TO_REPLICATION_SERVER",
		"START_DATA_TRANSFER",
	}
}

type RecoveryInstanceDataReplicationInitiationStepStatus string

// Enum values for RecoveryInstanceDataReplicationInitiationStepStatus
const (
	RecoveryInstanceDataReplicationInitiationStepStatusNotStarted RecoveryInstanceDataReplicationInitiationStepStatus = "NOT_STARTED"
	RecoveryInstanceDataReplicationInitiationStepStatusInProgress RecoveryInstanceDataReplicationInitiationStepStatus = "IN_PROGRESS"
	RecoveryInstanceDataReplicationInitiationStepStatusSucceeded  RecoveryInstanceDataReplicationInitiationStepStatus = "SUCCEEDED"
	RecoveryInstanceDataReplicationInitiationStepStatusFailed     RecoveryInstanceDataReplicationInitiationStepStatus = "FAILED"
	RecoveryInstanceDataReplicationInitiationStepStatusSkipped    RecoveryInstanceDataReplicationInitiationStepStatus = "SKIPPED"
)

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

type RecoveryInstanceDataReplicationState string

// Enum values for RecoveryInstanceDataReplicationState
const (
	RecoveryInstanceDataReplicationStateStopped                      RecoveryInstanceDataReplicationState = "STOPPED"
	RecoveryInstanceDataReplicationStateInitiating                   RecoveryInstanceDataReplicationState = "INITIATING"
	RecoveryInstanceDataReplicationStateInitialSync                  RecoveryInstanceDataReplicationState = "INITIAL_SYNC"
	RecoveryInstanceDataReplicationStateBacklog                      RecoveryInstanceDataReplicationState = "BACKLOG"
	RecoveryInstanceDataReplicationStateCreatingSnapshot             RecoveryInstanceDataReplicationState = "CREATING_SNAPSHOT"
	RecoveryInstanceDataReplicationStateContinuous                   RecoveryInstanceDataReplicationState = "CONTINUOUS"
	RecoveryInstanceDataReplicationStatePaused                       RecoveryInstanceDataReplicationState = "PAUSED"
	RecoveryInstanceDataReplicationStateRescan                       RecoveryInstanceDataReplicationState = "RESCAN"
	RecoveryInstanceDataReplicationStateStalled                      RecoveryInstanceDataReplicationState = "STALLED"
	RecoveryInstanceDataReplicationStateDisconnected                 RecoveryInstanceDataReplicationState = "DISCONNECTED"
	RecoveryInstanceDataReplicationStateReplicationStateNotAvailable RecoveryInstanceDataReplicationState = "REPLICATION_STATE_NOT_AVAILABLE"
	RecoveryInstanceDataReplicationStateNotStarted                   RecoveryInstanceDataReplicationState = "NOT_STARTED"
)

// Values returns all known values for RecoveryInstanceDataReplicationState. 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 (RecoveryInstanceDataReplicationState) Values() []RecoveryInstanceDataReplicationState {
	return []RecoveryInstanceDataReplicationState{
		"STOPPED",
		"INITIATING",
		"INITIAL_SYNC",
		"BACKLOG",
		"CREATING_SNAPSHOT",
		"CONTINUOUS",
		"PAUSED",
		"RESCAN",
		"STALLED",
		"DISCONNECTED",
		"REPLICATION_STATE_NOT_AVAILABLE",
		"NOT_STARTED",
	}
}

type RecoveryResult string

// Enum values for RecoveryResult
const (
	RecoveryResultNotStarted       RecoveryResult = "NOT_STARTED"
	RecoveryResultInProgress       RecoveryResult = "IN_PROGRESS"
	RecoveryResultSuccess          RecoveryResult = "SUCCESS"
	RecoveryResultFail             RecoveryResult = "FAIL"
	RecoveryResultPartialSuccess   RecoveryResult = "PARTIAL_SUCCESS"
	RecoveryResultAssociateSuccess RecoveryResult = "ASSOCIATE_SUCCESS"
	RecoveryResultAssociateFail    RecoveryResult = "ASSOCIATE_FAIL"
)

// Values returns all known values for RecoveryResult. 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 (RecoveryResult) Values() []RecoveryResult {
	return []RecoveryResult{
		"NOT_STARTED",
		"IN_PROGRESS",
		"SUCCESS",
		"FAIL",
		"PARTIAL_SUCCESS",
		"ASSOCIATE_SUCCESS",
		"ASSOCIATE_FAIL",
	}
}

type RecoverySnapshotsOrder string

// Enum values for RecoverySnapshotsOrder
const (
	RecoverySnapshotsOrderAsc  RecoverySnapshotsOrder = "ASC"
	RecoverySnapshotsOrderDesc RecoverySnapshotsOrder = "DESC"
)

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

type ReplicationConfigurationDataPlaneRouting string

// Enum values for ReplicationConfigurationDataPlaneRouting
const (
	ReplicationConfigurationDataPlaneRoutingPrivateIp ReplicationConfigurationDataPlaneRouting = "PRIVATE_IP"
	ReplicationConfigurationDataPlaneRoutingPublicIp  ReplicationConfigurationDataPlaneRouting = "PUBLIC_IP"
)

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

type ReplicationConfigurationDefaultLargeStagingDiskType string

// Enum values for ReplicationConfigurationDefaultLargeStagingDiskType
const (
	ReplicationConfigurationDefaultLargeStagingDiskTypeGp2  ReplicationConfigurationDefaultLargeStagingDiskType = "GP2"
	ReplicationConfigurationDefaultLargeStagingDiskTypeGp3  ReplicationConfigurationDefaultLargeStagingDiskType = "GP3"
	ReplicationConfigurationDefaultLargeStagingDiskTypeSt1  ReplicationConfigurationDefaultLargeStagingDiskType = "ST1"
	ReplicationConfigurationDefaultLargeStagingDiskTypeAuto ReplicationConfigurationDefaultLargeStagingDiskType = "AUTO"
)

// Values returns all known values for
// ReplicationConfigurationDefaultLargeStagingDiskType. 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 (ReplicationConfigurationDefaultLargeStagingDiskType) Values() []ReplicationConfigurationDefaultLargeStagingDiskType {
	return []ReplicationConfigurationDefaultLargeStagingDiskType{
		"GP2",
		"GP3",
		"ST1",
		"AUTO",
	}
}

type ReplicationConfigurationEbsEncryption string

// Enum values for ReplicationConfigurationEbsEncryption
const (
	ReplicationConfigurationEbsEncryptionDefault ReplicationConfigurationEbsEncryption = "DEFAULT"
	ReplicationConfigurationEbsEncryptionCustom  ReplicationConfigurationEbsEncryption = "CUSTOM"
	ReplicationConfigurationEbsEncryptionNone    ReplicationConfigurationEbsEncryption = "NONE"
)

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

type ReplicationConfigurationReplicatedDiskStagingDiskType string

// Enum values for ReplicationConfigurationReplicatedDiskStagingDiskType
const (
	ReplicationConfigurationReplicatedDiskStagingDiskTypeAuto     ReplicationConfigurationReplicatedDiskStagingDiskType = "AUTO"
	ReplicationConfigurationReplicatedDiskStagingDiskTypeGp2      ReplicationConfigurationReplicatedDiskStagingDiskType = "GP2"
	ReplicationConfigurationReplicatedDiskStagingDiskTypeGp3      ReplicationConfigurationReplicatedDiskStagingDiskType = "GP3"
	ReplicationConfigurationReplicatedDiskStagingDiskTypeIo1      ReplicationConfigurationReplicatedDiskStagingDiskType = "IO1"
	ReplicationConfigurationReplicatedDiskStagingDiskTypeSc1      ReplicationConfigurationReplicatedDiskStagingDiskType = "SC1"
	ReplicationConfigurationReplicatedDiskStagingDiskTypeSt1      ReplicationConfigurationReplicatedDiskStagingDiskType = "ST1"
	ReplicationConfigurationReplicatedDiskStagingDiskTypeStandard ReplicationConfigurationReplicatedDiskStagingDiskType = "STANDARD"
)

// Values returns all known values for
// ReplicationConfigurationReplicatedDiskStagingDiskType. 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 (ReplicationConfigurationReplicatedDiskStagingDiskType) Values() []ReplicationConfigurationReplicatedDiskStagingDiskType {
	return []ReplicationConfigurationReplicatedDiskStagingDiskType{
		"AUTO",
		"GP2",
		"GP3",
		"IO1",
		"SC1",
		"ST1",
		"STANDARD",
	}
}

type ReplicationDirection string

// Enum values for ReplicationDirection
const (
	ReplicationDirectionFailover ReplicationDirection = "FAILOVER"
	ReplicationDirectionFailback ReplicationDirection = "FAILBACK"
)

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

type ReplicationStatus string

// Enum values for ReplicationStatus
const (
	ReplicationStatusStopped    ReplicationStatus = "STOPPED"
	ReplicationStatusInProgress ReplicationStatus = "IN_PROGRESS"
	ReplicationStatusProtected  ReplicationStatus = "PROTECTED"
	ReplicationStatusError      ReplicationStatus = "ERROR"
)

// Values returns all known values for ReplicationStatus. 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 (ReplicationStatus) Values() []ReplicationStatus {
	return []ReplicationStatus{
		"STOPPED",
		"IN_PROGRESS",
		"PROTECTED",
		"ERROR",
	}
}

type TargetInstanceTypeRightSizingMethod string

// Enum values for TargetInstanceTypeRightSizingMethod
const (
	TargetInstanceTypeRightSizingMethodNone  TargetInstanceTypeRightSizingMethod = "NONE"
	TargetInstanceTypeRightSizingMethodBasic TargetInstanceTypeRightSizingMethod = "BASIC"
	TargetInstanceTypeRightSizingMethodInAws TargetInstanceTypeRightSizingMethod = "IN_AWS"
)

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

type ValidationExceptionReason string

// Enum values for ValidationExceptionReason
const (
	ValidationExceptionReasonUnknownOperation      ValidationExceptionReason = "unknownOperation"
	ValidationExceptionReasonCannotParse           ValidationExceptionReason = "cannotParse"
	ValidationExceptionReasonFieldValidationFailed ValidationExceptionReason = "fieldValidationFailed"
	ValidationExceptionReasonOther                 ValidationExceptionReason = "other"
)

// Values returns all known values for ValidationExceptionReason. 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 (ValidationExceptionReason) Values() []ValidationExceptionReason {
	return []ValidationExceptionReason{
		"unknownOperation",
		"cannotParse",
		"fieldValidationFailed",
		"other",
	}
}