Skip to content

GetMembers

Source: src/AWS/Detective/GetMembers.ts

Runtime binding for detective:GetMembers.

Reads the membership details of specific accounts in the behavior graph — status, volume usage, and per-package ingest states. Unknown accounts come back in UnprocessedAccounts. The graph ARN is injected from the bound Graph. Provide the implementation with Effect.provide(AWS.Detective.GetMembersHttp).

// init
const getMembers = yield* AWS.Detective.GetMembers(graph);
// runtime
const { MemberDetails } = yield* getMembers({
AccountIds: ["111122223333"],
});