pub enum CreateDomainNameError {
BadRequest(String),
Conflict(String),
TooManyRequests(String),
Unauthorized(String),
}Expand description
Errors returned by CreateDomainName
Variants§
BadRequest(String)
The submitted request is not valid, for example, the input is incomplete or incorrect. See the accompanying error message for details.
Conflict(String)
The request configuration has conflicts. For details, see the accompanying error message.
TooManyRequests(String)
The request has reached its throttling limit. Retry after the specified time period.
The request is denied because the caller has insufficient permissions.
Implementations§
Source§impl CreateDomainNameError
impl CreateDomainNameError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateDomainNameError>
Trait Implementations§
Source§impl Debug for CreateDomainNameError
impl Debug for CreateDomainNameError
Source§impl Display for CreateDomainNameError
impl Display for CreateDomainNameError
Source§impl Error for CreateDomainNameError
impl Error for CreateDomainNameError
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 CreateDomainNameError
impl PartialEq for CreateDomainNameError
impl StructuralPartialEq for CreateDomainNameError
Auto Trait Implementations§
impl Freeze for CreateDomainNameError
impl RefUnwindSafe for CreateDomainNameError
impl Send for CreateDomainNameError
impl Sync for CreateDomainNameError
impl Unpin for CreateDomainNameError
impl UnwindSafe for CreateDomainNameError
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