Skip to main content

change_logs

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

Overview

Namechange_logs
TypeResource
Idaws.auditmanager.change_logs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
change_logsarrayThe list of user activity for the control.
next_tokenstringThe 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:

NameAccessible byRequired ParamsOptional ParamsDescription
get_change_logsselectassessment_id, regioncontrolSetId, controlId, nextToken, maxResultsGets 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.

NameDatatypeDescription
assessment_idstringThe unique identifier for the assessment.
regionstringAWS region (default: us-east-1)
controlIdstringThe unique identifier for the control.
controlSetIdstringThe unique identifier for the control set.
maxResultsintegerRepresents the maximum number of results on a page or for an API request call.
nextTokenstringThe pagination token that's used to fetch the next set of results.

SELECT examples

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 }}'
;