Inspector / Client / exceptions / NoSuchEntityException

NoSuchEntityException#

class Inspector.Client.exceptions.NoSuchEntityException#

The request was rejected because it referenced an entity that does not exist. The error code describes the entity.

Example

try:
  ...
except client.exceptions.NoSuchEntityException 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',
    'errorCode': 'ASSESSMENT_TARGET_DOES_NOT_EXIST'|'ASSESSMENT_TEMPLATE_DOES_NOT_EXIST'|'ASSESSMENT_RUN_DOES_NOT_EXIST'|'FINDING_DOES_NOT_EXIST'|'RESOURCE_GROUP_DOES_NOT_EXIST'|'RULES_PACKAGE_DOES_NOT_EXIST'|'SNS_TOPIC_DOES_NOT_EXIST'|'IAM_ROLE_DOES_NOT_EXIST',
    'canRetry': True|False,
    'Error': {
        'Code': 'string',
        'Message': 'string'
    }
}

Structure

  • (dict) –

    The request was rejected because it referenced an entity that does not exist. The error code describes the entity.

    • message (string) –

      Details of the exception error.

    • errorCode (string) –

      Code that indicates the type of error that is generated.

    • canRetry (boolean) –

      You can immediately retry your request.

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