ElastiCache / Client / exceptions / SnapshotFeatureNotSupportedFault

SnapshotFeatureNotSupportedFault#

class ElastiCache.Client.exceptions.SnapshotFeatureNotSupportedFault#

You attempted one of the following operations:

  • Creating a snapshot of a Redis cluster running on a cache.t1.micro cache node.

  • Creating a snapshot of a cluster that is running Memcached rather than Redis.

Neither of these are supported by ElastiCache.

Example

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

{}

Structure

  • (dict) –

    You attempted one of the following operations:

    • Creating a snapshot of a Redis cluster running on a cache.t1.micro cache node.

    • Creating a snapshot of a cluster that is running Memcached rather than Redis.

    Neither of these are supported by ElastiCache.

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