Outposts / Client / exceptions / ConflictException
ConflictException#
- class Outposts.Client.exceptions.ConflictException#
Updating or deleting this resource can cause an inconsistent state.
Example
try: ... except client.exceptions.ConflictException 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', 'ResourceId': 'string', 'ResourceType': 'OUTPOST'|'ORDER', 'Error': { 'Code': 'string', 'Message': 'string' } }
Structure
(dict) –
Updating or deleting this resource can cause an inconsistent state.
Message (string) –
ResourceId (string) –
The ID of the resource causing the conflict.
ResourceType (string) –
The type of the resource causing the conflict.
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.