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

{
    'FieldList': [
        {
            'Message': 'string',
            'Name': 'string'
        },
    ],
    'Message': 'string',
    'Reason': 'UnknownOperation'|'Missing'|'CannotParse'|'FieldValidationFailed'|'Other',
    'Error': {
        'Code': 'string',
        'Message': 'string'
    }
}

Structure

  • (dict) –

    The input failed to meet the constraints specified by the AWS service.

    • 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.

        • Message (string) –

          A message with the reason for the validation exception error.

        • Name (string) –

          The field name where the invalid entry was detected.

    • Message (string) –

    • Reason (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.