pub enum RegisterDomainError {
DomainAlreadyExistsFault(String),
LimitExceededFault(String),
OperationNotPermittedFault(String),
TooManyTagsFault(String),
}
Expand description
Errors returned by RegisterDomain
Variants§
DomainAlreadyExistsFault(String)
Returned if the domain already exists. You may get this fault if you are registering a domain that is either already registered or deprecated, or if you undeprecate a domain that is currently registered.
LimitExceededFault(String)
Returned by any operation if a system imposed limitation has been reached. To address this fault you should either clean up unused resources or increase the limit by contacting AWS.
OperationNotPermittedFault(String)
Returned when the caller doesn't have sufficient permissions to invoke the action.
TooManyTagsFault(String)
You've exceeded the number of tags allowed for a domain.
Implementations§
Source§impl RegisterDomainError
impl RegisterDomainError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<RegisterDomainError>
Trait Implementations§
Source§impl Debug for RegisterDomainError
impl Debug for RegisterDomainError
Source§impl Display for RegisterDomainError
impl Display for RegisterDomainError
Source§impl Error for RegisterDomainError
impl Error for RegisterDomainError
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 RegisterDomainError
impl PartialEq for RegisterDomainError
impl StructuralPartialEq for RegisterDomainError
Auto Trait Implementations§
impl Freeze for RegisterDomainError
impl RefUnwindSafe for RegisterDomainError
impl Send for RegisterDomainError
impl Sync for RegisterDomainError
impl Unpin for RegisterDomainError
impl UnwindSafe for RegisterDomainError
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