Learn R Programming

paws.customer.engagement (version 0.1.12)

pinpointemail_get_dedicated_ip: 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

pinpointemail_get_dedicated_ip(Ip)

Value

A list with the following syntax:

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

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 Pinpoint account.

Request syntax

svc$get_dedicated_ip(
  Ip = "string"
)