// Code generated by smithy-go-codegen DO NOT EDIT. package types type RescoreExecutionPlanStatus string // Enum values for RescoreExecutionPlanStatus const ( RescoreExecutionPlanStatusCreating RescoreExecutionPlanStatus = "CREATING" RescoreExecutionPlanStatusUpdating RescoreExecutionPlanStatus = "UPDATING" RescoreExecutionPlanStatusActive RescoreExecutionPlanStatus = "ACTIVE" RescoreExecutionPlanStatusDeleting RescoreExecutionPlanStatus = "DELETING" RescoreExecutionPlanStatusFailed RescoreExecutionPlanStatus = "FAILED" ) // Values returns all known values for RescoreExecutionPlanStatus. 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 (RescoreExecutionPlanStatus) Values() []RescoreExecutionPlanStatus { return []RescoreExecutionPlanStatus{ "CREATING", "UPDATING", "ACTIVE", "DELETING", "FAILED", } }