pub enum RevokeCertificateError {
ConcurrentModification(String),
InvalidArn(String),
InvalidRequest(String),
InvalidState(String),
LimitExceeded(String),
RequestAlreadyProcessed(String),
RequestFailed(String),
RequestInProgress(String),
ResourceNotFound(String),
}
Expand description
Errors returned by RevokeCertificate
Variants§
ConcurrentModification(String)
A previous update to your private CA is still ongoing.
InvalidArn(String)
The requested Amazon Resource Name (ARN) does not refer to an existing resource.
InvalidRequest(String)
The request action cannot be performed or is prohibited.
InvalidState(String)
The private CA is in a state during which a report or certificate cannot be generated.
LimitExceeded(String)
An ACM Private CA limit has been exceeded. See the exception message returned to determine the limit that was exceeded.
RequestAlreadyProcessed(String)
Your request has already been completed.
RequestFailed(String)
The request has failed for an unspecified reason.
RequestInProgress(String)
Your request is already in progress.
ResourceNotFound(String)
A resource such as a private CA, S3 bucket, certificate, or audit report cannot be found.
Implementations§
Source§impl RevokeCertificateError
impl RevokeCertificateError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<RevokeCertificateError>
Trait Implementations§
Source§impl Debug for RevokeCertificateError
impl Debug for RevokeCertificateError
Source§impl Display for RevokeCertificateError
impl Display for RevokeCertificateError
Source§impl Error for RevokeCertificateError
impl Error for RevokeCertificateError
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 RevokeCertificateError
impl PartialEq for RevokeCertificateError
impl StructuralPartialEq for RevokeCertificateError
Auto Trait Implementations§
impl Freeze for RevokeCertificateError
impl RefUnwindSafe for RevokeCertificateError
impl Send for RevokeCertificateError
impl Sync for RevokeCertificateError
impl Unpin for RevokeCertificateError
impl UnwindSafe for RevokeCertificateError
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