Create Multi Region Endpoint
sesv2_create_multi_region_endpoint | R Documentation |
Creates a multi-region endpoint (global-endpoint)¶
Description¶
Creates a multi-region endpoint (global-endpoint).
The primary region is going to be the AWS-Region where the operation is executed. The secondary region has to be provided in request's parameters. From the data flow standpoint there is no difference between primary and secondary regions - sending traffic will be split equally between the two. The primary region is the region where the resource has been created and where it can be managed.
Usage¶
sesv2_create_multi_region_endpoint(EndpointName, Details, Tags)
Arguments¶
EndpointName |
[required] The name of the multi-region endpoint (global-endpoint). |
Details |
[required] Contains details of a multi-region endpoint (global-endpoint) being created. |
Tags |
An array of objects that define the tags (keys and values) to associate with the multi-region endpoint (global-endpoint). |
Value¶
A list with the following syntax:
list(
Status = "CREATING"|"READY"|"FAILED"|"DELETING",
EndpointId = "string"
)
Request syntax¶
svc$create_multi_region_endpoint(
EndpointName = "string",
Details = list(
RoutesDetails = list(
list(
Region = "string"
)
)
),
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)