SecurityLake / Client / list_data_lake_exceptions

list_data_lake_exceptions#

SecurityLake.Client.list_data_lake_exceptions(**kwargs)#

Lists the Amazon Security Lake exceptions that you can use to find the source of problems and fix them.

See also: AWS API Documentation

Request Syntax

response = client.list_data_lake_exceptions(
    maxResults=123,
    nextToken='string',
    regions=[
        'string',
    ]
)
Parameters:
  • maxResults (integer) – List the maximum number of failures in Security Lake.

  • nextToken (string) –

    List if there are more results available. The value of nextToken is a unique pagination token for each page. Repeat the call using the returned token to retrieve the next page. Keep all other arguments unchanged.

    Each pagination token expires after 24 hours. Using an expired pagination token will return an HTTP 400 InvalidToken error.

  • regions (list) –

    The Amazon Web Services Regions from which exceptions are retrieved.

    • (string) –

Return type:

dict

Returns:

Response Syntax

{
    'exceptions': [
        {
            'exception': 'string',
            'region': 'string',
            'remediation': 'string',
            'timestamp': datetime(2015, 1, 1)
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) –

    • exceptions (list) –

      Lists the failures that cannot be retried in the current Region.

      • (dict) –

        The details for an Amazon Security Lake exception.

        • exception (string) –

          The underlying exception of a Security Lake exception.

        • region (string) –

          The Amazon Web Services Regions where the exception occurred.

        • remediation (string) –

          List of all remediation steps for a Security Lake exception.

        • timestamp (datetime) –

          This error can occur if you configure the wrong timestamp format, or if the subset of entries used for validation had errors or missing values.

    • nextToken (string) –

      List if there are more results available. The value of nextToken is a unique pagination token for each page. Repeat the call using the returned token to retrieve the next page. Keep all other arguments unchanged.

      Each pagination token expires after 24 hours. Using an expired pagination token will return an HTTP 400 InvalidToken error.

Exceptions