Get Dedicated Ips
| sesv2_get_dedicated_ips | R Documentation |
List the dedicated IP addresses that are associated with your Amazon Web Services account¶
Description¶
List the dedicated IP addresses that are associated with your Amazon Web Services account.
Usage¶
Arguments¶
PoolNameThe name of the IP pool that the dedicated IP address is associated with.
NextTokenA token returned from a previous call to
get_dedicated_ipsto indicate the position of the dedicated IP pool in the list of IP pools.PageSizeThe number of results to show in a single call to
GetDedicatedIpsRequest. If the number of results is larger than the number you specified in this parameter, then the response includes aNextTokenelement, which you can use to obtain additional results.
Value¶
A list with the following syntax:
list(
DedicatedIps = list(
list(
Ip = "string",
WarmupStatus = "IN_PROGRESS"|"DONE",
WarmupPercentage = 123,
PoolName = "string"
)
),
NextToken = "string"
)