Skip to content

Get Members

guardduty_get_members R Documentation

Retrieves GuardDuty member accounts (of the current GuardDuty administrator account) specified by the account IDs

Description

Retrieves GuardDuty member accounts (of the current GuardDuty administrator account) specified by the account IDs.

Usage

guardduty_get_members(DetectorId, AccountIds)

Arguments

DetectorId

[required] The unique ID of the detector of the GuardDuty account whose members you want to retrieve.

AccountIds

[required] A list of account IDs of the GuardDuty member accounts that you want to describe.

Value

A list with the following syntax:

list(
  Members = list(
    list(
      AccountId = "string",
      DetectorId = "string",
      MasterId = "string",
      Email = "string",
      RelationshipStatus = "string",
      InvitedAt = "string",
      UpdatedAt = "string",
      AdministratorId = "string"
    )
  ),
  UnprocessedAccounts = list(
    list(
      AccountId = "string",
      Result = "string"
    )
  )
)

Request syntax

svc$get_members(
  DetectorId = "string",
  AccountIds = list(
    "string"
  )
)