SecurityIncidentResponse / Client / list_case_edits

list_case_edits#

SecurityIncidentResponse.Client.list_case_edits(**kwargs)#

Grants permissions to view the aidt log for edits made to a designated case.

See also: AWS API Documentation

Request Syntax

response = client.list_case_edits(
    nextToken='string',
    maxResults=123,
    caseId='string'
)
Parameters:
  • nextToken (string) – Optional element for a customer provided token.

  • maxResults (integer) – Optional element to identify how many results to obtain. There is a maximum value of 25.

  • caseId (string) –

    [REQUIRED]

    Required element used with ListCaseEdits to identify the case to query.

Return type:

dict

Returns:

Response Syntax

{
    'nextToken': 'string',
    'items': [
        {
            'eventTimestamp': datetime(2015, 1, 1),
            'principal': 'string',
            'action': 'string',
            'message': 'string'
        },
    ],
    'total': 123
}

Response Structure

  • (dict) –

    • nextToken (string) –

      Optional element.

    • items (list) –

      Response element for ListCaseEdits that includes the action, eventtimestamp, message, and principal for the response.

      • (dict) –

        • eventTimestamp (datetime) –

        • principal (string) –

        • action (string) –

        • message (string) –

    • total (integer) –

      Response element for ListCaseEdits that identifies the total number of edits.

Exceptions