pub enum GetCertificateError {
InvalidArn(String),
RequestInProgress(String),
ResourceNotFound(String),
}
Expand description
Errors returned by GetCertificate
Variants§
InvalidArn(String)
The requested Amazon Resource Name (ARN) does not refer to an existing resource.
RequestInProgress(String)
The certificate request is in process and the certificate in your account has not yet been issued.
ResourceNotFound(String)
The specified certificate cannot be found in the caller's account or the caller's account cannot be found.
Implementations§
Source§impl GetCertificateError
impl GetCertificateError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<GetCertificateError>
Trait Implementations§
Source§impl Debug for GetCertificateError
impl Debug for GetCertificateError
Source§impl Display for GetCertificateError
impl Display for GetCertificateError
Source§impl Error for GetCertificateError
impl Error for GetCertificateError
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 GetCertificateError
impl PartialEq for GetCertificateError
impl StructuralPartialEq for GetCertificateError
Auto Trait Implementations§
impl Freeze for GetCertificateError
impl RefUnwindSafe for GetCertificateError
impl Send for GetCertificateError
impl Sync for GetCertificateError
impl Unpin for GetCertificateError
impl UnwindSafe for GetCertificateError
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