ConnectCases / Client / exceptions / ResourceNotFoundException

ResourceNotFoundException

class ConnectCases.Client.exceptions.ResourceNotFoundException

We couldn’t find the requested resource. Check that your resources exists and were created in the same Amazon Web Services Region as your request, and try your request again.

Example

try:
  ...
except client.exceptions.ResourceNotFoundException 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': 'string',
    'Error': {
        'Code': 'string',
        'Message': 'string'
    }
}

Structure

  • (dict) –

    We couldn’t find the requested resource. Check that your resources exists and were created in the same Amazon Web Services Region as your request, and try your request again.

    • message (string) –

    • resourceId (string) –

      Unique identifier of the resource affected.

    • resourceType (string) –

      Type of the resource affected.

    • 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.