Class: Aws::SESV2::Types::DedicatedIpPool
- Inherits:
-
Struct
- Object
- Struct
- Aws::SESV2::Types::DedicatedIpPool
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sesv2/types.rb
Overview
Contains information about a dedicated IP pool.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#pool_name ⇒ String
The name of the dedicated IP pool.
-
#scaling_mode ⇒ String
The type of the dedicated IP pool.
Instance Attribute Details
#pool_name ⇒ String
The name of the dedicated IP pool.
1387 1388 1389 1390 1391 1392 |
# File 'lib/aws-sdk-sesv2/types.rb', line 1387 class DedicatedIpPool < Struct.new( :pool_name, :scaling_mode) SENSITIVE = [] include Aws::Structure end |
#scaling_mode ⇒ String
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.
1387 1388 1389 1390 1391 1392 |
# File 'lib/aws-sdk-sesv2/types.rb', line 1387 class DedicatedIpPool < Struct.new( :pool_name, :scaling_mode) SENSITIVE = [] include Aws::Structure end |