CloudWatchEvidently / Client / exceptions / ValidationException

ValidationException#

class CloudWatchEvidently.Client.exceptions.ValidationException#

The value of a parameter in the request caused an error.

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'|'cannotParse'|'fieldValidationFailed'|'other',
    'Error': {
        'Code': 'string',
        'Message': 'string'
    }
}

Structure

  • (dict) –

    The value of a parameter in the request caused an error.

    • fieldList (list) –

      The parameter that caused the exception.

      • (dict) –

        A structure containing an error name and message.

        • message (string) –

          The error message.

        • name (string) –

          The error name.

    • message (string) –

    • reason (string) –

      A reason for the 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.