List Organizations
workmail_list_organizations | R Documentation |
Returns summaries of the customer's organizations¶
Description¶
Returns summaries of the customer's organizations.
Usage¶
workmail_list_organizations(NextToken, MaxResults)
Arguments¶
NextToken |
The token to use to retrieve the next page of results. The first call does not contain any tokens. |
MaxResults |
The maximum number of results to return in a single call. |
Value¶
A list with the following syntax:
list(
OrganizationSummaries = list(
list(
OrganizationId = "string",
Alias = "string",
DefaultMailDomain = "string",
ErrorMessage = "string",
State = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$list_organizations(
NextToken = "string",
MaxResults = 123
)