EBS / Client / exceptions / ValidationException

ValidationException#

class EBS.Client.exceptions.ValidationException#

The input fails to satisfy the constraints of the EBS direct APIs.

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': 'INVALID_CUSTOMER_KEY'|'INVALID_PAGE_TOKEN'|'INVALID_BLOCK_TOKEN'|'INVALID_GRANT_TOKEN'|'INVALID_SNAPSHOT_ID'|'UNRELATED_SNAPSHOTS'|'INVALID_BLOCK'|'INVALID_CONTENT_ENCODING'|'INVALID_TAG'|'INVALID_DEPENDENCY_REQUEST'|'INVALID_PARAMETER_VALUE'|'INVALID_VOLUME_SIZE'|'CONFLICTING_BLOCK_UPDATE'|'INVALID_IMAGE_ID'|'WRITE_REQUEST_TIMEOUT',
    'Error': {
        'Code': 'string',
        'Message': 'string'
    }
}

Structure

  • (dict) –

    The input fails to satisfy the constraints of the EBS direct APIs.

    • Message (string) –

    • Reason (string) –

      The reason for 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.