Class: Aws::Wickr::Types::ValidationError
- Inherits:
-
Struct
- Object
- Struct
- Aws::Wickr::Types::ValidationError
- Defined in:
- gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb
Overview
One or more fields in the request failed validation. This error provides detailed information about which fields were invalid and why, allowing you to correct the request and retry.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#reasons ⇒ Array<Types::ErrorDetail>
A list of validation error details, where each item identifies a specific field that failed validation and explains the reason for the failure.
Instance Attribute Details
#reasons ⇒ Array<Types::ErrorDetail>
A list of validation error details, where each item identifies a specific field that failed validation and explains the reason for the failure.
3722 3723 3724 3725 3726 |
# File 'gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb', line 3722 class ValidationError < Struct.new( :reasons) SENSITIVE = [] include Aws::Structure end |