pub enum DescribeCertificateAuthorityAuditReportError {
InvalidArgs(String),
InvalidArn(String),
ResourceNotFound(String),
}
Expand description
Errors returned by DescribeCertificateAuthorityAuditReport
Variants§
InvalidArgs(String)
One or more of the specified arguments was not valid.
InvalidArn(String)
The requested Amazon Resource Name (ARN) does not refer to an existing resource.
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 DescribeCertificateAuthorityAuditReportError
impl Error for DescribeCertificateAuthorityAuditReportError
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 DescribeCertificateAuthorityAuditReportError
impl PartialEq for DescribeCertificateAuthorityAuditReportError
Source§fn eq(&self, other: &DescribeCertificateAuthorityAuditReportError) -> bool
fn eq(&self, other: &DescribeCertificateAuthorityAuditReportError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeCertificateAuthorityAuditReportError
Auto Trait Implementations§
impl Freeze for DescribeCertificateAuthorityAuditReportError
impl RefUnwindSafe for DescribeCertificateAuthorityAuditReportError
impl Send for DescribeCertificateAuthorityAuditReportError
impl Sync for DescribeCertificateAuthorityAuditReportError
impl Unpin for DescribeCertificateAuthorityAuditReportError
impl UnwindSafe for DescribeCertificateAuthorityAuditReportError
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