Learn R Programming

paws.security.identity (version 0.1.11)

securityhub_get_members: Returns the details for the Security Hub member accounts for the specified account IDs

Description

Returns the details for the Security Hub member accounts for the specified account IDs.

A master account can be either a delegated Security Hub administrator account for an organization or a master account that enabled Security Hub manually.

The results include both member accounts that are in an organization and accounts that were invited manually.

Usage

securityhub_get_members(AccountIds)

Arguments

AccountIds

[required] The list of account IDs for the Security Hub member accounts to return the details for.

Value

A list with the following syntax:

list(
  Members = list(
    list(
      AccountId = "string",
      Email = "string",
      MasterId = "string",
      MemberStatus = "string",
      InvitedAt = as.POSIXct(
        "2015-01-01"
      ),
      UpdatedAt = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  UnprocessedAccounts = list(
    list(
      AccountId = "string",
      ProcessingResult = "string"
    )
  )
)

Request syntax

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