FSx / Client / exceptions / IncompatibleParameterError

IncompatibleParameterError#

class FSx.Client.exceptions.IncompatibleParameterError#

The error returned when a second request is received with the same client request token but different parameters settings. A client request token should always uniquely identify a single request.

Example

try:
  ...
except client.exceptions.IncompatibleParameterError 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

{
    'Parameter': 'string',
    'Message': 'string',
    'Error': {
        'Code': 'string',
        'Message': 'string'
    }
}

Structure

  • (dict) –

    The error returned when a second request is received with the same client request token but different parameters settings. A client request token should always uniquely identify a single request.

    • Parameter (string) –

      A parameter that is incompatible with the earlier request.

    • Message (string) –

      A detailed error message.

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