Skip to content

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 list_multi_region_endpoints to indicate the position in the list of multi-region endpoints (global-endpoints).

PageSize

The number of results to show in a single call to list_multi_region_endpoints. If the number of results is larger than the number you specified in this parameter, the response includes a NextToken element that you can use to retrieve the next page of results.

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
)