Skip to main content

findings

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

Overview

Namefindings
TypeResource
Idaws.macie2.findings

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
findingsarrayAn array of objects, one for each finding that matches the criteria specified in the request.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_findingsselectregionRetrieves the details of one or more findings.
list_findingsselectregionRetrieves a subset of information about one or more findings.
create_sample_findingsinsertregionCreates sample findings.

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
regionstringAWS region (default: us-east-1)

SELECT examples

Retrieves the details of one or more findings.

SELECT
findings
FROM aws.macie2.findings
WHERE region = '{{ region }}' -- required
;

INSERT examples

Creates sample findings.

INSERT INTO aws.macie2.findings (
findingTypes,
region
)
SELECT
'{{ findingTypes }}',
'{{ region }}'
;