Class: Aws::DevOpsAgent::Types::ValidationException
- Inherits:
-
Struct
- Object
- Struct
- Aws::DevOpsAgent::Types::ValidationException
- Defined in:
- gems/aws-sdk-devopsagent/lib/aws-sdk-devopsagent/types.rb
Overview
A standard error for input validation failures. This should be thrown by services when a member of the input structure falls outside of the modeled or documented constraints.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#field_list ⇒ Array<Types::ValidationExceptionField>
A list of specific failures encountered while validating the input.
-
#message ⇒ String
A summary of the validation failure.
Instance Attribute Details
#field_list ⇒ Array<Types::ValidationExceptionField>
A list of specific failures encountered while validating the input. A member can appear in this list more than once if it failed to satisfy multiple constraints.
5123 5124 5125 5126 5127 5128 |
# File 'gems/aws-sdk-devopsagent/lib/aws-sdk-devopsagent/types.rb', line 5123 class ValidationException < Struct.new( :message, :field_list) SENSITIVE = [] include Aws::Structure end |
#message ⇒ String
A summary of the validation failure.
5123 5124 5125 5126 5127 5128 |
# File 'gems/aws-sdk-devopsagent/lib/aws-sdk-devopsagent/types.rb', line 5123 class ValidationException < Struct.new( :message, :field_list) SENSITIVE = [] include Aws::Structure end |