VPCLattice / Client / exceptions / ValidationException
ValidationException#
- class VPCLattice.Client.exceptions.ValidationException#
The input does not satisfy the constraints specified by an Amazon Web Services 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'|'cannotParse'|'fieldValidationFailed'|'other', 'Error': { 'Code': 'string', 'Message': 'string' } }
Structure
(dict) –
The input does not satisfy the constraints specified by an Amazon Web Services service.
fieldList (list) –
The fields that failed validation.
(dict) –
Describes a validation failure.
message (string) –
Additional information about why the validation failed.
name (string) –
The name of the validation exception.
message (string) –
reason (string) –
The reason.
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.