Skip to main content

graph_member_datasources

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

Overview

Namegraph_member_datasources
TypeResource
Idaws.detective.graph_member_datasources

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
member_datasourcesarrayDetails on the status of data source packages for members of the behavior graph.
unprocessed_accountsarrayAccounts that data source package information could not be retrieved for.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
batch_get_graph_member_datasourcesselectregionGets data source package information for the behavior graph.

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 data source package information for the behavior graph.

SELECT
member_datasources,
unprocessed_accounts
FROM aws.detective.graph_member_datasources
WHERE region = '{{ region }}' -- required
;