Lists all Security Hub membership invitations that were sent to the current AWS account.
This operation is only used by accounts that do not belong to an organization. Organization accounts do not receive invitations.
securityhub_list_invitations(MaxResults, NextToken)
A list with the following syntax:
list(
Invitations = list(
list(
AccountId = "string",
InvitationId = "string",
InvitedAt = as.POSIXct(
"2015-01-01"
),
MemberStatus = "string"
)
),
NextToken = "string"
)
The maximum number of items to return in the response.
The token that is required for pagination. On your first call to the
list_invitations
operation, set the
value of this parameter to NULL
.
For subsequent calls to the operation, to continue listing data, set the value of this parameter to the value returned from the previous response.
svc$list_invitations(
MaxResults = 123,
NextToken = "string"
)