pub enum UpdateCertificateAuthorityError {
ConcurrentModification(String),
InvalidArgs(String),
InvalidArn(String),
InvalidPolicy(String),
InvalidState(String),
ResourceNotFound(String),
}
Expand description
Errors returned by UpdateCertificateAuthority
Variants§
ConcurrentModification(String)
A previous update to your private CA is still ongoing.
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.
InvalidPolicy(String)
The S3 bucket policy is not valid. The policy must give ACM Private CA rights to read from and write to the bucket and find the bucket location.
InvalidState(String)
The private CA is in a state during which a report or certificate cannot be generated.
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 UpdateCertificateAuthorityError
impl Error for UpdateCertificateAuthorityError
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 UpdateCertificateAuthorityError
impl PartialEq for UpdateCertificateAuthorityError
Source§fn eq(&self, other: &UpdateCertificateAuthorityError) -> bool
fn eq(&self, other: &UpdateCertificateAuthorityError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdateCertificateAuthorityError
Auto Trait Implementations§
impl Freeze for UpdateCertificateAuthorityError
impl RefUnwindSafe for UpdateCertificateAuthorityError
impl Send for UpdateCertificateAuthorityError
impl Sync for UpdateCertificateAuthorityError
impl Unpin for UpdateCertificateAuthorityError
impl UnwindSafe for UpdateCertificateAuthorityError
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