List Tenants
| sesv2_list_tenants | R Documentation |
List all tenants associated with your account in the current Amazon Web Services Region¶
Description¶
List all tenants associated with your account in the current Amazon Web Services Region.
This operation returns basic information about each tenant, such as tenant name, ID, ARN, and creation timestamp.
Usage¶
sesv2_list_tenants(NextToken, PageSize)
Arguments¶
NextToken |
A token returned from a previous call to
|
PageSize |
The number of results to show in a single call to
|
Value¶
A list with the following syntax:
list(
Tenants = list(
list(
TenantName = "string",
TenantId = "string",
TenantArn = "string",
CreatedTimestamp = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)
Request syntax¶
svc$list_tenants(
NextToken = "string",
PageSize = 123
)