change_logs
Creates, updates, deletes, gets or lists a change_logs resource.
Overview
| Name | change_logs |
| Type | Resource |
| Id | aws.auditmanager.change_logs |
Fields
The following fields are returned by SELECT queries:
- get_change_logs
| Name | Datatype | Description |
|---|---|---|
change_logs | array | The list of user activity for the control. |
next_token | string | The pagination token that's used to fetch the next set of results. (pattern: <code>^[A-Za-z0-9+/=]*$</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_change_logs | select | assessment_id, region | controlSetId, controlId, nextToken, maxResults | Gets a list of changelogs from Audit Manager. |
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 |
|---|---|---|
assessment_id | string | The unique identifier for the assessment. |
region | string | AWS region (default: us-east-1) |
controlId | string | The unique identifier for the control. |
controlSetId | string | The unique identifier for the control set. |
maxResults | integer | Represents the maximum number of results on a page or for an API request call. |
nextToken | string | The pagination token that's used to fetch the next set of results. |
SELECT examples
- get_change_logs
Gets a list of changelogs from Audit Manager.
SELECT
change_logs,
next_token
FROM aws.auditmanager.change_logs
WHERE assessment_id = '{{ assessment_id }}' -- required
AND region = '{{ region }}' -- required
AND controlSetId = '{{ controlSetId }}'
AND controlId = '{{ controlId }}'
AND nextToken = '{{ nextToken }}'
AND maxResults = '{{ maxResults }}'
;