Class: Aws::SESV2::Types::DedicatedIp

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb

Overview

Contains information about a dedicated IP address that is associated with your Amazon SES account.

To learn more about requesting dedicated IP addresses, see Requesting and Relinquishing Dedicated IP Addresses in the Amazon SES Developer Guide.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#ipString

An IPv4 address.

Returns:

  • (String)


1609
1610
1611
1612
1613
1614
1615
1616
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 1609

class DedicatedIp < Struct.new(
  :ip,
  :warmup_status,
  :warmup_percentage,
  :pool_name)
  SENSITIVE = []
  include Aws::Structure
end

#pool_nameString

The name of the dedicated IP pool that the IP address is associated with.

Returns:

  • (String)


1609
1610
1611
1612
1613
1614
1615
1616
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 1609

class DedicatedIp < Struct.new(
  :ip,
  :warmup_status,
  :warmup_percentage,
  :pool_name)
  SENSITIVE = []
  include Aws::Structure
end

#warmup_percentageInteger

Indicates the progress of your dedicated IP warm-up:

  • 0-100 – For standard dedicated IP addresses, this shows the warm-up completion percentage. A value of 100 means the IP address is fully warmed up and ready for use.

  • -1 – Appears for IP addresses in managed dedicated pools where Amazon SES automatically handles the warm-up process, making the percentage not applicable.

Returns:

  • (Integer)


1609
1610
1611
1612
1613
1614
1615
1616
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 1609

class DedicatedIp < Struct.new(
  :ip,
  :warmup_status,
  :warmup_percentage,
  :pool_name)
  SENSITIVE = []
  include Aws::Structure
end

#warmup_statusString

The warm-up status of a dedicated IP address. The status can have one of the following values:

  • IN_PROGRESS – The IP address isn't ready to use because the dedicated IP warm-up process is ongoing.

  • DONE – The dedicated IP warm-up process is complete, and the IP address is ready to use.

  • NOT_APPLICABLE – The warm-up status doesn't apply to this IP address. This status is used for IP addresses in managed dedicated IP pools, where Amazon SES automatically handles the warm-up process.

Returns:

  • (String)


1609
1610
1611
1612
1613
1614
1615
1616
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 1609

class DedicatedIp < Struct.new(
  :ip,
  :warmup_status,
  :warmup_percentage,
  :pool_name)
  SENSITIVE = []
  include Aws::Structure
end