SecretsManager / Client / exceptions / InvalidRequestException

InvalidRequestException#

class SecretsManager.Client.exceptions.InvalidRequestException#

A parameter value is not valid for the current state of the resource.

Possible causes:

  • The secret is scheduled for deletion.

  • You tried to enable rotation on a secret that doesn’t already have a Lambda function ARN configured and you didn’t include such an ARN as a parameter in this call.

  • The secret is managed by another service, and you must use that service to update it. For more information, see Secrets managed by other Amazon Web Services services.

Example

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

Structure

  • (dict) –

    A parameter value is not valid for the current state of the resource.

    Possible causes:

    • The secret is scheduled for deletion.

    • You tried to enable rotation on a secret that doesn’t already have a Lambda function ARN configured and you didn’t include such an ARN as a parameter in this call.

    • The secret is managed by another service, and you must use that service to update it. For more information, see Secrets managed by other Amazon Web Services services.

    • Message (string) –

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