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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type ActionCategory string
// Enum values for ActionCategory
const (
ActionCategoryDisasterRecovery ActionCategory = "DISASTER_RECOVERY"
ActionCategoryOperatingSystem ActionCategory = "OPERATING_SYSTEM"
ActionCategoryLicenseAndSubscription ActionCategory = "LICENSE_AND_SUBSCRIPTION"
ActionCategoryValidation ActionCategory = "VALIDATION"
ActionCategoryObservability ActionCategory = "OBSERVABILITY"
ActionCategorySecurity ActionCategory = "SECURITY"
ActionCategoryNetworking ActionCategory = "NETWORKING"
ActionCategoryConfiguration ActionCategory = "CONFIGURATION"
ActionCategoryBackup ActionCategory = "BACKUP"
ActionCategoryOther ActionCategory = "OTHER"
)
// Values returns all known values for ActionCategory. 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 (ActionCategory) Values() []ActionCategory {
return []ActionCategory{
"DISASTER_RECOVERY",
"OPERATING_SYSTEM",
"LICENSE_AND_SUBSCRIPTION",
"VALIDATION",
"OBSERVABILITY",
"SECURITY",
"NETWORKING",
"CONFIGURATION",
"BACKUP",
"OTHER",
}
}
type ApplicationHealthStatus string
// Enum values for ApplicationHealthStatus
const (
ApplicationHealthStatusHealthy ApplicationHealthStatus = "HEALTHY"
ApplicationHealthStatusLagging ApplicationHealthStatus = "LAGGING"
ApplicationHealthStatusError ApplicationHealthStatus = "ERROR"
)
// Values returns all known values for ApplicationHealthStatus. 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 (ApplicationHealthStatus) Values() []ApplicationHealthStatus {
return []ApplicationHealthStatus{
"HEALTHY",
"LAGGING",
"ERROR",
}
}
type ApplicationProgressStatus string
// Enum values for ApplicationProgressStatus
const (
ApplicationProgressStatusNotStarted ApplicationProgressStatus = "NOT_STARTED"
ApplicationProgressStatusInProgress ApplicationProgressStatus = "IN_PROGRESS"
ApplicationProgressStatusCompleted ApplicationProgressStatus = "COMPLETED"
)
// Values returns all known values for ApplicationProgressStatus. 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 (ApplicationProgressStatus) Values() []ApplicationProgressStatus {
return []ApplicationProgressStatus{
"NOT_STARTED",
"IN_PROGRESS",
"COMPLETED",
}
}
type BootMode string
// Enum values for BootMode
const (
BootModeLegacyBios BootMode = "LEGACY_BIOS"
BootModeUefi BootMode = "UEFI"
)
// Values returns all known values for BootMode. 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 (BootMode) Values() []BootMode {
return []BootMode{
"LEGACY_BIOS",
"UEFI",
}
}
type ChangeServerLifeCycleStateSourceServerLifecycleState string
// Enum values for ChangeServerLifeCycleStateSourceServerLifecycleState
const (
ChangeServerLifeCycleStateSourceServerLifecycleStateReadyForTest ChangeServerLifeCycleStateSourceServerLifecycleState = "READY_FOR_TEST"
ChangeServerLifeCycleStateSourceServerLifecycleStateReadyForCutover ChangeServerLifeCycleStateSourceServerLifecycleState = "READY_FOR_CUTOVER"
ChangeServerLifeCycleStateSourceServerLifecycleStateCutover ChangeServerLifeCycleStateSourceServerLifecycleState = "CUTOVER"
)
// Values returns all known values for
// ChangeServerLifeCycleStateSourceServerLifecycleState. 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 (ChangeServerLifeCycleStateSourceServerLifecycleState) Values() []ChangeServerLifeCycleStateSourceServerLifecycleState {
return []ChangeServerLifeCycleStateSourceServerLifecycleState{
"READY_FOR_TEST",
"READY_FOR_CUTOVER",
"CUTOVER",
}
}
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"
DataReplicationErrorStringUnsupportedVmConfiguration DataReplicationErrorString = "UNSUPPORTED_VM_CONFIGURATION"
DataReplicationErrorStringLastSnapshotJobFailed DataReplicationErrorString = "LAST_SNAPSHOT_JOB_FAILED"
)
// 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",
"UNSUPPORTED_VM_CONFIGURATION",
"LAST_SNAPSHOT_JOB_FAILED",
}
}
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"
DataReplicationStatePendingSnapshotShipping DataReplicationState = "PENDING_SNAPSHOT_SHIPPING"
DataReplicationStateShippingSnapshot DataReplicationState = "SHIPPING_SNAPSHOT"
)
// 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",
"PENDING_SNAPSHOT_SHIPPING",
"SHIPPING_SNAPSHOT",
}
}
type ExportStatus string
// Enum values for ExportStatus
const (
ExportStatusPending ExportStatus = "PENDING"
ExportStatusStarted ExportStatus = "STARTED"
ExportStatusFailed ExportStatus = "FAILED"
ExportStatusSucceeded ExportStatus = "SUCCEEDED"
)
// Values returns all known values for ExportStatus. 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 (ExportStatus) Values() []ExportStatus {
return []ExportStatus{
"PENDING",
"STARTED",
"FAILED",
"SUCCEEDED",
}
}
type FirstBoot string
// Enum values for FirstBoot
const (
FirstBootWaiting FirstBoot = "WAITING"
FirstBootSucceeded FirstBoot = "SUCCEEDED"
FirstBootUnknown FirstBoot = "UNKNOWN"
FirstBootStopped FirstBoot = "STOPPED"
)
// Values returns all known values for FirstBoot. 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 (FirstBoot) Values() []FirstBoot {
return []FirstBoot{
"WAITING",
"SUCCEEDED",
"UNKNOWN",
"STOPPED",
}
}
type ImportErrorType string
// Enum values for ImportErrorType
const (
ImportErrorTypeValidationError ImportErrorType = "VALIDATION_ERROR"
ImportErrorTypeProcessingError ImportErrorType = "PROCESSING_ERROR"
)
// Values returns all known values for ImportErrorType. 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 (ImportErrorType) Values() []ImportErrorType {
return []ImportErrorType{
"VALIDATION_ERROR",
"PROCESSING_ERROR",
}
}
type ImportStatus string
// Enum values for ImportStatus
const (
ImportStatusPending ImportStatus = "PENDING"
ImportStatusStarted ImportStatus = "STARTED"
ImportStatusFailed ImportStatus = "FAILED"
ImportStatusSucceeded ImportStatus = "SUCCEEDED"
)
// Values returns all known values for ImportStatus. 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 (ImportStatus) Values() []ImportStatus {
return []ImportStatus{
"PENDING",
"STARTED",
"FAILED",
"SUCCEEDED",
}
}
type InitiatedBy string
// Enum values for InitiatedBy
const (
InitiatedByStartTest InitiatedBy = "START_TEST"
InitiatedByStartCutover InitiatedBy = "START_CUTOVER"
InitiatedByDiagnostic InitiatedBy = "DIAGNOSTIC"
InitiatedByTerminate InitiatedBy = "TERMINATE"
)
// 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_TEST",
"START_CUTOVER",
"DIAGNOSTIC",
"TERMINATE",
}
}
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"
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"
)
// 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",
"CONVERSION_START",
"CONVERSION_END",
"CONVERSION_FAIL",
"LAUNCH_START",
"LAUNCH_FAILED",
"JOB_CANCEL",
"JOB_END",
}
}
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"
)
// 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",
}
}
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 LifeCycleState string
// Enum values for LifeCycleState
const (
LifeCycleStateStopped LifeCycleState = "STOPPED"
LifeCycleStateNotReady LifeCycleState = "NOT_READY"
LifeCycleStateReadyForTest LifeCycleState = "READY_FOR_TEST"
LifeCycleStateTesting LifeCycleState = "TESTING"
LifeCycleStateReadyForCutover LifeCycleState = "READY_FOR_CUTOVER"
LifeCycleStateCuttingOver LifeCycleState = "CUTTING_OVER"
LifeCycleStateCutover LifeCycleState = "CUTOVER"
LifeCycleStateDisconnected LifeCycleState = "DISCONNECTED"
LifeCycleStateDiscovered LifeCycleState = "DISCOVERED"
LifeCycleStatePendingInstallation LifeCycleState = "PENDING_INSTALLATION"
)
// Values returns all known values for LifeCycleState. 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 (LifeCycleState) Values() []LifeCycleState {
return []LifeCycleState{
"STOPPED",
"NOT_READY",
"READY_FOR_TEST",
"TESTING",
"READY_FOR_CUTOVER",
"CUTTING_OVER",
"CUTOVER",
"DISCONNECTED",
"DISCOVERED",
"PENDING_INSTALLATION",
}
}
type PostLaunchActionExecutionStatus string
// Enum values for PostLaunchActionExecutionStatus
const (
PostLaunchActionExecutionStatusInProgress PostLaunchActionExecutionStatus = "IN_PROGRESS"
PostLaunchActionExecutionStatusSuccess PostLaunchActionExecutionStatus = "SUCCESS"
PostLaunchActionExecutionStatusFailed PostLaunchActionExecutionStatus = "FAILED"
)
// Values returns all known values for PostLaunchActionExecutionStatus. 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 (PostLaunchActionExecutionStatus) Values() []PostLaunchActionExecutionStatus {
return []PostLaunchActionExecutionStatus{
"IN_PROGRESS",
"SUCCESS",
"FAILED",
}
}
type PostLaunchActionsDeploymentType string
// Enum values for PostLaunchActionsDeploymentType
const (
PostLaunchActionsDeploymentTypeTestAndCutover PostLaunchActionsDeploymentType = "TEST_AND_CUTOVER"
PostLaunchActionsDeploymentTypeCutoverOnly PostLaunchActionsDeploymentType = "CUTOVER_ONLY"
PostLaunchActionsDeploymentTypeTestOnly PostLaunchActionsDeploymentType = "TEST_ONLY"
)
// Values returns all known values for PostLaunchActionsDeploymentType. 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 (PostLaunchActionsDeploymentType) Values() []PostLaunchActionsDeploymentType {
return []PostLaunchActionsDeploymentType{
"TEST_AND_CUTOVER",
"CUTOVER_ONLY",
"TEST_ONLY",
}
}
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"
ReplicationConfigurationDefaultLargeStagingDiskTypeSt1 ReplicationConfigurationDefaultLargeStagingDiskType = "ST1"
ReplicationConfigurationDefaultLargeStagingDiskTypeGp3 ReplicationConfigurationDefaultLargeStagingDiskType = "GP3"
)
// 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",
"ST1",
"GP3",
}
}
type ReplicationConfigurationEbsEncryption string
// Enum values for ReplicationConfigurationEbsEncryption
const (
ReplicationConfigurationEbsEncryptionDefault ReplicationConfigurationEbsEncryption = "DEFAULT"
ReplicationConfigurationEbsEncryptionCustom ReplicationConfigurationEbsEncryption = "CUSTOM"
)
// 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",
}
}
type ReplicationConfigurationReplicatedDiskStagingDiskType string
// Enum values for ReplicationConfigurationReplicatedDiskStagingDiskType
const (
ReplicationConfigurationReplicatedDiskStagingDiskTypeAuto ReplicationConfigurationReplicatedDiskStagingDiskType = "AUTO"
ReplicationConfigurationReplicatedDiskStagingDiskTypeGp2 ReplicationConfigurationReplicatedDiskStagingDiskType = "GP2"
ReplicationConfigurationReplicatedDiskStagingDiskTypeIo1 ReplicationConfigurationReplicatedDiskStagingDiskType = "IO1"
ReplicationConfigurationReplicatedDiskStagingDiskTypeSc1 ReplicationConfigurationReplicatedDiskStagingDiskType = "SC1"
ReplicationConfigurationReplicatedDiskStagingDiskTypeSt1 ReplicationConfigurationReplicatedDiskStagingDiskType = "ST1"
ReplicationConfigurationReplicatedDiskStagingDiskTypeStandard ReplicationConfigurationReplicatedDiskStagingDiskType = "STANDARD"
ReplicationConfigurationReplicatedDiskStagingDiskTypeGp3 ReplicationConfigurationReplicatedDiskStagingDiskType = "GP3"
ReplicationConfigurationReplicatedDiskStagingDiskTypeIo2 ReplicationConfigurationReplicatedDiskStagingDiskType = "IO2"
)
// 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",
"IO1",
"SC1",
"ST1",
"STANDARD",
"GP3",
"IO2",
}
}
type ReplicationType string
// Enum values for ReplicationType
const (
ReplicationTypeAgentBased ReplicationType = "AGENT_BASED"
ReplicationTypeSnapshotShipping ReplicationType = "SNAPSHOT_SHIPPING"
)
// Values returns all known values for ReplicationType. 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 (ReplicationType) Values() []ReplicationType {
return []ReplicationType{
"AGENT_BASED",
"SNAPSHOT_SHIPPING",
}
}
type SsmDocumentType string
// Enum values for SsmDocumentType
const (
SsmDocumentTypeAutomation SsmDocumentType = "AUTOMATION"
SsmDocumentTypeCommand SsmDocumentType = "COMMAND"
)
// Values returns all known values for SsmDocumentType. 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 (SsmDocumentType) Values() []SsmDocumentType {
return []SsmDocumentType{
"AUTOMATION",
"COMMAND",
}
}
type SsmParameterStoreParameterType string
// Enum values for SsmParameterStoreParameterType
const (
SsmParameterStoreParameterTypeString SsmParameterStoreParameterType = "STRING"
)
// Values returns all known values for SsmParameterStoreParameterType. 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 (SsmParameterStoreParameterType) Values() []SsmParameterStoreParameterType {
return []SsmParameterStoreParameterType{
"STRING",
}
}
type TargetInstanceTypeRightSizingMethod string
// Enum values for TargetInstanceTypeRightSizingMethod
const (
TargetInstanceTypeRightSizingMethodNone TargetInstanceTypeRightSizingMethod = "NONE"
TargetInstanceTypeRightSizingMethodBasic TargetInstanceTypeRightSizingMethod = "BASIC"
)
// 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",
}
}
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",
}
}
type VolumeType string
// Enum values for VolumeType
const (
VolumeTypeIo1 VolumeType = "io1"
VolumeTypeIo2 VolumeType = "io2"
VolumeTypeGp3 VolumeType = "gp3"
VolumeTypeGp2 VolumeType = "gp2"
VolumeTypeSt1 VolumeType = "st1"
VolumeTypeSc1 VolumeType = "sc1"
VolumeTypeStandard VolumeType = "standard"
)
// Values returns all known values for VolumeType. 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 (VolumeType) Values() []VolumeType {
return []VolumeType{
"io1",
"io2",
"gp3",
"gp2",
"st1",
"sc1",
"standard",
}
}
type WaveHealthStatus string
// Enum values for WaveHealthStatus
const (
WaveHealthStatusHealthy WaveHealthStatus = "HEALTHY"
WaveHealthStatusLagging WaveHealthStatus = "LAGGING"
WaveHealthStatusError WaveHealthStatus = "ERROR"
)
// Values returns all known values for WaveHealthStatus. 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 (WaveHealthStatus) Values() []WaveHealthStatus {
return []WaveHealthStatus{
"HEALTHY",
"LAGGING",
"ERROR",
}
}
type WaveProgressStatus string
// Enum values for WaveProgressStatus
const (
WaveProgressStatusNotStarted WaveProgressStatus = "NOT_STARTED"
WaveProgressStatusInProgress WaveProgressStatus = "IN_PROGRESS"
WaveProgressStatusCompleted WaveProgressStatus = "COMPLETED"
)
// Values returns all known values for WaveProgressStatus. 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 (WaveProgressStatus) Values() []WaveProgressStatus {
return []WaveProgressStatus{
"NOT_STARTED",
"IN_PROGRESS",
"COMPLETED",
}
}
|