List Multi Region Endpoints
sesv2_list_multi_region_endpoints | R Documentation |
List the multi-region endpoints (global-endpoints)¶
Description¶
List the multi-region endpoints (global-endpoints).
Only multi-region endpoints (global-endpoints) whose primary region is the AWS-Region where operation is executed will be listed.
Usage¶
sesv2_list_multi_region_endpoints(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(
MultiRegionEndpoints = list(
list(
EndpointName = "string",
Status = "CREATING"|"READY"|"FAILED"|"DELETING",
EndpointId = "string",
Regions = list(
"string"
),
CreatedTimestamp = as.POSIXct(
"2015-01-01"
),
LastUpdatedTimestamp = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)
Request syntax¶
svc$list_multi_region_endpoints(
NextToken = "string",
PageSize = 123
)