Skip to content

Get Multi Region Endpoint

sesv2_get_multi_region_endpoint R Documentation

Displays the multi-region endpoint (global-endpoint) configuration

Description

Displays the multi-region endpoint (global-endpoint) configuration.

Only multi-region endpoints (global-endpoints) whose primary region is the AWS-Region where operation is executed can be displayed.

Usage

sesv2_get_multi_region_endpoint(EndpointName)

Arguments

EndpointName

[required] The name of the multi-region endpoint (global-endpoint).

Value

A list with the following syntax:

list(
  EndpointName = "string",
  EndpointId = "string",
  Routes = list(
    list(
      Region = "string"
    )
  ),
  Status = "CREATING"|"READY"|"FAILED"|"DELETING",
  CreatedTimestamp = as.POSIXct(
    "2015-01-01"
  ),
  LastUpdatedTimestamp = as.POSIXct(
    "2015-01-01"
  )
)

Request syntax

svc$get_multi_region_endpoint(
  EndpointName = "string"
)