pub enum GetCertificateAuthorityCsrError {
InvalidArn(String),
InvalidState(String),
RequestFailed(String),
RequestInProgress(String),
ResourceNotFound(String),
}
Expand description
Errors returned by GetCertificateAuthorityCsr
Variants§
InvalidArn(String)
The requested Amazon Resource Name (ARN) does not refer to an existing resource.
InvalidState(String)
The private CA is in a state during which a report or certificate cannot be generated.
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§
Trait Implementations§
Source§impl Error for GetCertificateAuthorityCsrError
impl Error for GetCertificateAuthorityCsrError
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 GetCertificateAuthorityCsrError
impl PartialEq for GetCertificateAuthorityCsrError
Source§fn eq(&self, other: &GetCertificateAuthorityCsrError) -> bool
fn eq(&self, other: &GetCertificateAuthorityCsrError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetCertificateAuthorityCsrError
Auto Trait Implementations§
impl Freeze for GetCertificateAuthorityCsrError
impl RefUnwindSafe for GetCertificateAuthorityCsrError
impl Send for GetCertificateAuthorityCsrError
impl Sync for GetCertificateAuthorityCsrError
impl Unpin for GetCertificateAuthorityCsrError
impl UnwindSafe for GetCertificateAuthorityCsrError
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