pub enum ImportCertificateError {
InvalidParameter(String),
InvalidTag(String),
LimitExceeded(String),
ResourceNotFound(String),
TagPolicy(String),
TooManyTags(String),
}
Expand description
Errors returned by ImportCertificate
Variants§
InvalidParameter(String)
An input parameter was invalid.
InvalidTag(String)
One or both of the values that make up the key-value pair is not valid. For example, you cannot specify a tag value that begins with aws:
.
LimitExceeded(String)
An ACM quota has been exceeded.
ResourceNotFound(String)
The specified certificate cannot be found in the caller's account or the caller's account cannot be found.
TagPolicy(String)
A specified tag did not comply with an existing tag policy and was rejected.
TooManyTags(String)
The request contains too many tags. Try the request again with fewer tags.
Implementations§
Source§impl ImportCertificateError
impl ImportCertificateError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<ImportCertificateError>
Trait Implementations§
Source§impl Debug for ImportCertificateError
impl Debug for ImportCertificateError
Source§impl Display for ImportCertificateError
impl Display for ImportCertificateError
Source§impl Error for ImportCertificateError
impl Error for ImportCertificateError
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 ImportCertificateError
impl PartialEq for ImportCertificateError
impl StructuralPartialEq for ImportCertificateError
Auto Trait Implementations§
impl Freeze for ImportCertificateError
impl RefUnwindSafe for ImportCertificateError
impl Send for ImportCertificateError
impl Sync for ImportCertificateError
impl Unpin for ImportCertificateError
impl UnwindSafe for ImportCertificateError
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