Enum aws_sdk_swf::error::RegisterDomainErrorKind [−][src]
#[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)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.
Tuple Fields of DomainAlreadyExistsFault
LimitExceededFault(LimitExceededFault)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.
Tuple Fields of LimitExceededFault
OperationNotPermittedFault(OperationNotPermittedFault)Returned when the caller doesn't have sufficient permissions to invoke the action.
Tuple Fields of OperationNotPermittedFault
TooManyTagsFault(TooManyTagsFault)You've exceeded the number of tags allowed for a domain.
Tuple Fields of TooManyTagsFault
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