pub enum CreateDeploymentJobError {
ConcurrentDeployment(String),
IdempotentParameterMismatch(String),
InternalServer(String),
InvalidParameter(String),
LimitExceeded(String),
ResourceNotFound(String),
Throttling(String),
}Expand description
Errors returned by CreateDeploymentJob
Variants§
ConcurrentDeployment(String)
The failure percentage threshold percentage was met.
IdempotentParameterMismatch(String)
The request uses the same client token as a previous, but non-identical request. Do not reuse a client token with different requests, unless the requests are identical.
InternalServer(String)
AWS RoboMaker experienced a service issue. Try your call again.
InvalidParameter(String)
A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
LimitExceeded(String)
The requested resource exceeds the maximum number allowed, or the number of concurrent stream requests exceeds the maximum number allowed.
ResourceNotFound(String)
The specified resource does not exist.
Throttling(String)
AWS RoboMaker is temporarily unable to process the request. Try your call again.
Implementations§
Source§impl CreateDeploymentJobError
impl CreateDeploymentJobError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateDeploymentJobError>
Trait Implementations§
Source§impl Debug for CreateDeploymentJobError
impl Debug for CreateDeploymentJobError
Source§impl Display for CreateDeploymentJobError
impl Display for CreateDeploymentJobError
Source§impl Error for CreateDeploymentJobError
impl Error for CreateDeploymentJobError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for CreateDeploymentJobError
impl PartialEq for CreateDeploymentJobError
impl StructuralPartialEq for CreateDeploymentJobError
Auto Trait Implementations§
impl Freeze for CreateDeploymentJobError
impl RefUnwindSafe for CreateDeploymentJobError
impl Send for CreateDeploymentJobError
impl Sync for CreateDeploymentJobError
impl Unpin for CreateDeploymentJobError
impl UnwindSafe for CreateDeploymentJobError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more