LookoutMetrics / Client / exceptions / ValidationException

ValidationException#

class LookoutMetrics.Client.exceptions.ValidationException#

The input fails to satisfy the constraints specified by the AWS service. Check your input values and try again.

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': 'UNKNOWN_OPERATION'|'CANNOT_PARSE'|'FIELD_VALIDATION_FAILED'|'OTHER',
    'Fields': [
        {
            'Name': 'string',
            'Message': 'string'
        },
    ],
    'Error': {
        'Code': 'string',
        'Message': 'string'
    }
}

Structure

  • (dict) –

    The input fails to satisfy the constraints specified by the AWS service. Check your input values and try again.

    • Message (string) –

    • Reason (string) –

      The reason that validation failed.

    • Fields (list) –

      Fields that failed validation.

      • (dict) –

        Contains information about a a field in a validation exception.

        • Name (string) –

          The name of the field.

        • Message (string) –

          The message with more information about the validation exception.

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