Skip to main content

control_domain_insights_by_assessments

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

Overview

Namecontrol_domain_insights_by_assessments
TypeResource
Idaws.auditmanager.control_domain_insights_by_assessments

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
control_domain_insightsarrayThe control domain analytics data that the ListControlDomainInsightsByAssessment API returned.
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
list_control_domain_insights_by_assessmentselectassessmentId, regionnextToken, maxResultsLists analytics data for control domains within a specified active assessment. Audit Manager supports the control domains that are provided by Amazon Web Services Control Catalog. For information about how to find a list of available control domains, see ListDomains in the Amazon Web Services Control Catalog API Reference. A control domain is listed only if at least one of the controls within that domain collected evidence on the lastUpdated date of controlDomainInsights. If this condition isn’t met, no data is listed for that domain.

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
assessmentIdstringThe unique identifier for the active assessment.
regionstringAWS region (default: us-east-1)
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

Lists analytics data for control domains within a specified active assessment. Audit Manager supports the control domains that are provided by Amazon Web Services Control Catalog. For information about how to find a list of available control domains, see ListDomains in the Amazon Web Services Control Catalog API Reference. A control domain is listed only if at least one of the controls within that domain collected evidence on the lastUpdated date of controlDomainInsights. If this condition isn’t met, no data is listed for that domain.

SELECT
control_domain_insights,
next_token
FROM aws.auditmanager.control_domain_insights_by_assessments
WHERE assessmentId = '{{ assessmentId }}' -- required
AND region = '{{ region }}' -- required
AND nextToken = '{{ nextToken }}'
AND maxResults = '{{ maxResults }}'
;