Class: Aws::PartnerCentralSelling::Types::ValidationException
- Inherits:
-
Struct
- Object
- Struct
- Aws::PartnerCentralSelling::Types::ValidationException
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-partnercentralselling/types.rb
Overview
The input fails to satisfy the constraints specified by the service or business validation rules.
Suggested action: Review the error message, including the failed fields and reasons, to correct the request payload.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#error_list ⇒ Array<Types::ValidationExceptionError>
A list of issues that were discovered in the submitted request or the resource state.
- #message ⇒ String
-
#reason ⇒ String
The primary reason for this validation exception to occur.
Instance Attribute Details
#error_list ⇒ Array<Types::ValidationExceptionError>
A list of issues that were discovered in the submitted request or the resource state.
6854 6855 6856 6857 6858 6859 6860 |
# File 'lib/aws-sdk-partnercentralselling/types.rb', line 6854 class ValidationException < Struct.new( :message, :reason, :error_list) SENSITIVE = [] include Aws::Structure end |
#message ⇒ String
6854 6855 6856 6857 6858 6859 6860 |
# File 'lib/aws-sdk-partnercentralselling/types.rb', line 6854 class ValidationException < Struct.new( :message, :reason, :error_list) SENSITIVE = [] include Aws::Structure end |
#reason ⇒ String
The primary reason for this validation exception to occur.
-
REQUEST_VALIDATION_FAILED: The request format is not valid.
Fix: Verify your request payload includes all required fields, uses correct data types and string formats.
-
BUSINESS_VALIDATION_FAILED: The requested change doesn’t pass the business validation rules.
Fix: Check that your change aligns with the business rules defined by AWS Partner Central.
6854 6855 6856 6857 6858 6859 6860 |
# File 'lib/aws-sdk-partnercentralselling/types.rb', line 6854 class ValidationException < Struct.new( :message, :reason, :error_list) SENSITIVE = [] include Aws::Structure end |