pub enum CreateCertificateAuthorityAuditReportError {
InvalidArgs(String),
InvalidArn(String),
InvalidState(String),
RequestFailed(String),
RequestInProgress(String),
ResourceNotFound(String),
}
Expand description
Errors returned by CreateCertificateAuthorityAuditReport
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.
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 CreateCertificateAuthorityAuditReportError
impl Error for CreateCertificateAuthorityAuditReportError
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 CreateCertificateAuthorityAuditReportError
impl PartialEq for CreateCertificateAuthorityAuditReportError
Source§fn eq(&self, other: &CreateCertificateAuthorityAuditReportError) -> bool
fn eq(&self, other: &CreateCertificateAuthorityAuditReportError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateCertificateAuthorityAuditReportError
Auto Trait Implementations§
impl Freeze for CreateCertificateAuthorityAuditReportError
impl RefUnwindSafe for CreateCertificateAuthorityAuditReportError
impl Send for CreateCertificateAuthorityAuditReportError
impl Sync for CreateCertificateAuthorityAuditReportError
impl Unpin for CreateCertificateAuthorityAuditReportError
impl UnwindSafe for CreateCertificateAuthorityAuditReportError
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