pub enum UpdateCertificateOptionsError {
InvalidArn(String),
InvalidState(String),
LimitExceeded(String),
ResourceNotFound(String),
}
Expand description
Errors returned by UpdateCertificateOptions
Variants§
InvalidArn(String)
The requested Amazon Resource Name (ARN) does not refer to an existing resource.
InvalidState(String)
Processing has reached an invalid state.
LimitExceeded(String)
An ACM quota has been exceeded.
ResourceNotFound(String)
The specified certificate cannot be found in the caller's account or the caller's account cannot be found.
Implementations§
Trait Implementations§
Source§impl Error for UpdateCertificateOptionsError
impl Error for UpdateCertificateOptionsError
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 UpdateCertificateOptionsError
impl PartialEq for UpdateCertificateOptionsError
Source§fn eq(&self, other: &UpdateCertificateOptionsError) -> bool
fn eq(&self, other: &UpdateCertificateOptionsError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdateCertificateOptionsError
Auto Trait Implementations§
impl Freeze for UpdateCertificateOptionsError
impl RefUnwindSafe for UpdateCertificateOptionsError
impl Send for UpdateCertificateOptionsError
impl Sync for UpdateCertificateOptionsError
impl Unpin for UpdateCertificateOptionsError
impl UnwindSafe for UpdateCertificateOptionsError
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