pub enum ExportCertificateError {
InvalidArn(String),
RequestInProgress(String),
ResourceNotFound(String),
}
Expand description
Errors returned by ExportCertificate
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 ExportCertificateError
impl ExportCertificateError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<ExportCertificateError>
Trait Implementations§
Source§impl Debug for ExportCertificateError
impl Debug for ExportCertificateError
Source§impl Display for ExportCertificateError
impl Display for ExportCertificateError
Source§impl Error for ExportCertificateError
impl Error for ExportCertificateError
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 ExportCertificateError
impl PartialEq for ExportCertificateError
impl StructuralPartialEq for ExportCertificateError
Auto Trait Implementations§
impl Freeze for ExportCertificateError
impl RefUnwindSafe for ExportCertificateError
impl Send for ExportCertificateError
impl Sync for ExportCertificateError
impl Unpin for ExportCertificateError
impl UnwindSafe for ExportCertificateError
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