membership_datasources
Creates, updates, deletes, gets or lists a membership_datasources resource.
Overview
| Name | membership_datasources |
| Type | Resource |
| Id | aws.detective.membership_datasources |
Fields
The following fields are returned by SELECT queries:
- batch_get_membership_datasources
| Name | Datatype | Description |
|---|---|---|
membership_datasources | array | Details on the data source package history for an member of the behavior graph. |
unprocessed_graphs | array | Graphs 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_membership_datasources | select | region | Gets information on the data source package history for an account. |
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_membership_datasources
Gets information on the data source package history for an account.
SELECT
membership_datasources,
unprocessed_graphs
FROM aws.detective.membership_datasources
WHERE region = '{{ region }}' -- required
;