Class: Aws::AppSync::Types::BadRequestDetail
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppSync::Types::BadRequestDetail
- Defined in:
- gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb
Overview
Provides further details for the reason behind the bad request. For
reason type CODE_ERROR
, the detail will contain a list of code
errors.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#code_errors ⇒ Array<Types::CodeError>
Contains the list of errors in the request.
Instance Attribute Details
#code_errors ⇒ Array<Types::CodeError>
Contains the list of errors in the request.
645 646 647 648 649 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 645 class BadRequestDetail < Struct.new( :code_errors) SENSITIVE = [] include Aws::Structure end |