Class: Aws::SESV2::Types::DedicatedIpPool

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

Overview

Contains information about a dedicated IP pool.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#pool_nameString

The name of the dedicated IP pool.

Returns:

  • (String)


1387
1388
1389
1390
1391
1392
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 1387

class DedicatedIpPool < Struct.new(
  :pool_name,
  :scaling_mode)
  SENSITIVE = []
  include Aws::Structure
end

#scaling_modeString

The type of the dedicated IP pool.

  • STANDARD – A dedicated IP pool where you can control which IPs are part of the pool.

  • MANAGED – A dedicated IP pool where the reputation and number of IPs are automatically managed by Amazon SES.

Returns:

  • (String)


1387
1388
1389
1390
1391
1392
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 1387

class DedicatedIpPool < Struct.new(
  :pool_name,
  :scaling_mode)
  SENSITIVE = []
  include Aws::Structure
end