Struct aws_sdk_amp::error::ValidationException
source · [−]#[non_exhaustive]pub struct ValidationException {
pub message: Option<String>,
pub reason: Option<ValidationExceptionReason>,
pub field_list: Option<Vec<ValidationExceptionField>>,
}
Expand description
The input fails to satisfy the constraints specified by an AWS service.
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.
reason: Option<ValidationExceptionReason>
Reason the request failed validation.
field_list: Option<Vec<ValidationExceptionField>>
The field that caused the error, if applicable. If more than one field caused the error, pick one and elaborate in the message.
Implementations
Reason the request failed validation.
The field that caused the error, if applicable. If more than one field caused the error, pick one and elaborate in the message.
Creates a new builder-style object to manufacture ValidationException
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 ValidationException
impl Send for ValidationException
impl Sync for ValidationException
impl Unpin for ValidationException
impl UnwindSafe for ValidationException
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