Skip to main content

case_edits

Creates, updates, deletes, gets or lists a case_edits resource.

Overview

Namecase_edits
TypeResource
Idaws.security_ir.case_edits

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
actionstring
event_timestampstring (date-time)
messagestring
principalstring

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_case_editsselectcase_id, regionViews the case history for edits made to a designated case.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
case_idstringRequired element used with ListCaseEdits to identify the case to query.
regionstringAWS region (default: us-east-1)

SELECT examples

Views the case history for edits made to a designated case.

SELECT
action,
event_timestamp,
message,
principal
FROM aws.security_ir.case_edits
WHERE case_id = '{{ case_id }}' -- required
AND region = '{{ region }}' -- required
;