case_audit_events
Creates, updates, deletes, gets or lists a case_audit_events resource.
Overview
| Name | case_audit_events |
| Type | Resource |
| Id | aws.connectcases.case_audit_events |
Fields
The following fields are returned by SELECT queries:
- get_case_audit_events
| Name | Datatype | Description |
|---|---|---|
audit_events | array | A list of case audits where each represents a particular edit of the case. |
next_token | string | The token for the next set of results. This is null if there are no more results to return. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_case_audit_events | select | case_id, domain_id, region | Returns the audit history about a specific case if it exists. |
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.
| Name | Datatype | Description |
|---|---|---|
case_id | string | A unique identifier of the case. |
domain_id | string | The unique identifier of the Cases domain. |
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_case_audit_events
Returns the audit history about a specific case if it exists.
SELECT
audit_events,
next_token
FROM aws.connectcases.case_audit_events
WHERE case_id = '{{ case_id }}' -- required
AND domain_id = '{{ domain_id }}' -- required
AND region = '{{ region }}' -- required
;