FSx / Client / exceptions / ServiceLimitExceeded

ServiceLimitExceeded#

class FSx.Client.exceptions.ServiceLimitExceeded#

An error indicating that a particular service limit was exceeded. You can increase some service limits by contacting Amazon Web Services Support.

Example

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

{
    'Limit': 'FILE_SYSTEM_COUNT'|'TOTAL_THROUGHPUT_CAPACITY'|'TOTAL_STORAGE'|'TOTAL_USER_INITIATED_BACKUPS'|'TOTAL_USER_TAGS'|'TOTAL_IN_PROGRESS_COPY_BACKUPS'|'STORAGE_VIRTUAL_MACHINES_PER_FILE_SYSTEM'|'VOLUMES_PER_FILE_SYSTEM'|'TOTAL_SSD_IOPS'|'FILE_CACHE_COUNT',
    'Message': 'string',
    'Error': {
        'Code': 'string',
        'Message': 'string'
    }
}

Structure

  • (dict) –

    An error indicating that a particular service limit was exceeded. You can increase some service limits by contacting Amazon Web Services Support.

    • Limit (string) –

      Enumeration of the service limit that was exceeded.

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