Enum aws_sdk_swf::error::RegisterDomainErrorKind
source ·
[−]#[non_exhaustive]
pub enum RegisterDomainErrorKind {
DomainAlreadyExistsFault(DomainAlreadyExistsFault),
LimitExceededFault(LimitExceededFault),
OperationNotPermittedFault(OperationNotPermittedFault),
TooManyTagsFault(TooManyTagsFault),
Unhandled(Box<dyn Error + Send + Sync + 'static>),
}Expand description
Types of errors that can occur for the RegisterDomain operation.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
DomainAlreadyExistsFault(DomainAlreadyExistsFault)
Tuple Fields
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(LimitExceededFault)
Tuple Fields
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(OperationNotPermittedFault)
Tuple Fields
Returned when the caller doesn't have sufficient permissions to invoke the action.
TooManyTagsFault(TooManyTagsFault)
Tuple Fields
You've exceeded the number of tags allowed for a domain.
Unhandled(Box<dyn Error + Send + Sync + 'static>)
An unexpected error, e.g. invalid JSON returned by the service or an unknown error code
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for RegisterDomainErrorKind
impl Send for RegisterDomainErrorKind
impl Sync for RegisterDomainErrorKind
impl Unpin for RegisterDomainErrorKind
impl !UnwindSafe for RegisterDomainErrorKind
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more
