CleanRoomsService / Client / exceptions / ConflictException

ConflictException#

class CleanRoomsService.Client.exceptions.ConflictException#

Updating or deleting a 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': 'CONFIGURED_TABLE'|'COLLABORATION'|'MEMBERSHIP'|'CONFIGURED_TABLE_ASSOCIATION',
    'reason': 'ALREADY_EXISTS'|'SUBRESOURCES_EXIST'|'INVALID_STATE',
    'Error': {
        'Code': 'string',
        'Message': 'string'
    }
}

Structure

  • (dict) –

    Updating or deleting a resource can cause an inconsistent state.

    • message (string) –

    • resourceId (string) –

      The ID of the conflicting resource.

    • resourceType (string) –

      The type of the conflicting resource.

    • reason (string) –

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