Struct aws_sdk_amp::error::ThrottlingException
source · [−]#[non_exhaustive]pub struct ThrottlingException {
pub message: Option<String>,
pub service_code: Option<String>,
pub quota_code: Option<String>,
pub retry_after_seconds: Option<i32>,
}
Expand description
Request was denied due to request throttling.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.message: Option<String>
Description of the error.
service_code: Option<String>
Service Quotas requirement to identify originating service.
quota_code: Option<String>
Service Quotas requirement to identify originating quota.
retry_after_seconds: Option<i32>
Advice to clients on when the call can be safely retried.
Implementations
Service Quotas requirement to identify originating service.
Service Quotas requirement to identify originating quota.
Advice to clients on when the call can be safely retried.
Creates a new builder-style object to manufacture ThrottlingException
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ThrottlingException
impl Send for ThrottlingException
impl Sync for ThrottlingException
impl Unpin for ThrottlingException
impl UnwindSafe for ThrottlingException
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