Get Dedicated Ips
| pinpointemail_get_dedicated_ips | R Documentation | 
List the dedicated IP addresses that are associated with your Amazon Pinpoint account¶
Description¶
List the dedicated IP addresses that are associated with your Amazon Pinpoint account.
Usage¶
pinpointemail_get_dedicated_ips(PoolName, NextToken, PageSize)
Arguments¶
| PoolName | The name of the IP pool that the dedicated IP address is associated with. | 
| 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(
  DedicatedIps = list(
    list(
      Ip = "string",
      WarmupStatus = "IN_PROGRESS"|"DONE",
      WarmupPercentage = 123,
      PoolName = "string"
    )
  ),
  NextToken = "string"
)
Request syntax¶
svc$get_dedicated_ips(
  PoolName = "string",
  NextToken = "string",
  PageSize = 123
)