graph_member_datasources
Creates, updates, deletes, gets or lists a graph_member_datasources resource.
Overview
| Name | graph_member_datasources |
| Type | Resource |
| Id | aws.detective.graph_member_datasources |
Fields
The following fields are returned by SELECT queries:
- batch_get_graph_member_datasources
| Name | Datatype | Description |
|---|---|---|
member_datasources | array | Details on the status of data source packages for members of the behavior graph. |
unprocessed_accounts | array | Accounts that data source package information could not be retrieved for. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
batch_get_graph_member_datasources | select | region | Gets 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- batch_get_graph_member_datasources
Gets data source package information for the behavior graph.
SELECT
member_datasources,
unprocessed_accounts
FROM aws.detective.graph_member_datasources
WHERE region = '{{ region }}' -- required
;