Skip to content

Get Dedicated Ip

sesv2_get_dedicated_ip R Documentation

Get information about a dedicated IP address, including the name of the dedicated IP pool that it's associated with, as well information about the automatic warm-up process for the address

Description

Get information about a dedicated IP address, including the name of the dedicated IP pool that it's associated with, as well information about the automatic warm-up process for the address.

Usage

sesv2_get_dedicated_ip(Ip)

Arguments

Ip

[required] The IP address that you want to obtain more information about. The value you specify has to be a dedicated IP address that's assocaited with your Amazon Web Services account.

Value

A list with the following syntax:

list(
  DedicatedIp = list(
    Ip = "string",
    WarmupStatus = "IN_PROGRESS"|"DONE",
    WarmupPercentage = 123,
    PoolName = "string"
  )
)

Request syntax

svc$get_dedicated_ip(
  Ip = "string"
)