Skip to content

Disassociate Members

securityhub_disassociate_members R Documentation

Disassociates the specified member accounts from the associated administrator account

Description

Disassociates the specified member accounts from the associated administrator account.

Can be used to disassociate both accounts that are managed using Organizations and accounts that were invited manually.

Usage

securityhub_disassociate_members(AccountIds)

Arguments

AccountIds

[required] The account IDs of the member accounts to disassociate from the administrator account.

Value

An empty list.

Request syntax

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

Examples

## Not run: 
# The following example dissociates the specified member accounts from the
# associated administrator account.
svc$disassociate_members(
  AccountIds = list(
    "123456789012",
    "111122223333"
  )
)

## End(Not run)