Skip to content

Get Member

inspector2_get_member R Documentation

Gets member information for your organization

Description

Gets member information for your organization.

Usage

inspector2_get_member(accountId)

Arguments

accountId

[required] The Amazon Web Services account ID of the member account to retrieve information on.

Value

A list with the following syntax:

list(
  member = list(
    accountId = "string",
    delegatedAdminAccountId = "string",
    relationshipStatus = "CREATED"|"INVITED"|"DISABLED"|"ENABLED"|"REMOVED"|"RESIGNED"|"DELETED"|"EMAIL_VERIFICATION_IN_PROGRESS"|"EMAIL_VERIFICATION_FAILED"|"REGION_DISABLED"|"ACCOUNT_SUSPENDED"|"CANNOT_CREATE_DETECTOR_IN_ORG_MASTER",
    updatedAt = as.POSIXct(
      "2015-01-01"
    )
  )
)

Request syntax

svc$get_member(
  accountId = "string"
)