Skip to main content

indicators

Creates, updates, deletes, gets or lists an indicators resource.

Overview

Nameindicators
TypeResource
Idaws.detective.indicators

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
graph_arnstringThe Amazon Resource Name (ARN) of the behavior graph. (pattern: <code>^arn:aws[-\w]{0,10}?:detective:[-\w]{2,20}?:\d{12}?:graph:[abcdef\d]{32}?$</code>)
indicatorsarrayLists the indicators of compromise.
investigation_idstringThe investigation ID of the investigation report. (pattern: <code>^[0-9]+$</code>)
next_tokenstringLists if there are more results available. The value of nextToken is a unique pagination token for each page. Repeat the call using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return a Validation Exception error.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_indicatorsselectregionGets the indicators from an investigation. You can use the information from the indicators to determine if an IAM user and/or IAM role is involved in an unusual activity that could indicate malicious behavior and its impact.

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

Gets the indicators from an investigation. You can use the information from the indicators to determine if an IAM user and/or IAM role is involved in an unusual activity that could indicate malicious behavior and its impact.

SELECT
graph_arn,
indicators,
investigation_id,
next_token
FROM aws.detective.indicators
WHERE region = '{{ region }}' -- required
;