LocationService / Client / exceptions / ValidationException
ValidationException#
- class LocationService.Client.exceptions.ValidationException#
The input failed to meet the constraints specified by the AWS service.
Example
try: ... except client.exceptions.ValidationException as e: print(e.response)
- response#
The parsed error response. All exceptions have a top level
Error
key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.Syntax
{ 'Message': 'string', 'Reason': 'UnknownOperation'|'Missing'|'CannotParse'|'FieldValidationFailed'|'Other', 'FieldList': [ { 'Name': 'string', 'Message': 'string' }, ], 'Error': { 'Code': 'string', 'Message': 'string' } }
Structure
(dict) –
The input failed to meet the constraints specified by the AWS service.
Message (string) –
Reason (string) –
A message with the reason for the validation exception error.
FieldList (list) –
The field where the invalid entry was detected.
(dict) –
The input failed to meet the constraints specified by the AWS service in a specified field.
Name (string) –
The field name where the invalid entry was detected.
Message (string) –
A message with the reason for the validation exception error.
Error (dict) – Normalized access to common exception attributes.
Code (string) – An identifier specifying the exception type.
Message (string) – A descriptive message explaining why the exception occured.