pub enum StartChangeRequestExecutionError {
AutomationDefinitionNotApproved(String),
AutomationDefinitionNotFound(String),
AutomationDefinitionVersionNotFound(String),
AutomationExecutionLimitExceeded(String),
IdempotentParameterMismatch(String),
InternalServerError(String),
InvalidAutomationExecutionParameters(String),
}Expand description
Errors returned by StartChangeRequestExecution
Variants§
AutomationDefinitionNotApproved(String)
Indicates that the Change Manager change template used in the change request was rejected or is still in a pending state.
AutomationDefinitionNotFound(String)
An Automation document with the specified name could not be found.
AutomationDefinitionVersionNotFound(String)
An Automation document with the specified name and version could not be found.
AutomationExecutionLimitExceeded(String)
The number of simultaneously running Automation executions exceeded the allowable limit.
IdempotentParameterMismatch(String)
Error returned when an idempotent operation is retried and the parameters don't match the original call to the API with the same idempotency token.
InternalServerError(String)
An error occurred on the server side.
InvalidAutomationExecutionParameters(String)
The supplied parameters for invoking the specified Automation document are incorrect. For example, they may not match the set of parameters permitted for the specified Automation document.
Implementations§
Trait Implementations§
Source§impl Error for StartChangeRequestExecutionError
impl Error for StartChangeRequestExecutionError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
Source§impl PartialEq for StartChangeRequestExecutionError
impl PartialEq for StartChangeRequestExecutionError
Source§fn eq(&self, other: &StartChangeRequestExecutionError) -> bool
fn eq(&self, other: &StartChangeRequestExecutionError) -> bool
self and other values to be equal, and is used by ==.