Class: Aws::SESV2::Types::DedicatedIpPool
- Inherits:
-
Struct
- Object
- Struct
- Aws::SESV2::Types::DedicatedIpPool
- 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
-
#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.
1443 1444 1445 1446 1447 1448 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 1443 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.
1443 1444 1445 1446 1447 1448 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 1443 class DedicatedIpPool < Struct.new( :pool_name, :scaling_mode) SENSITIVE = [] include Aws::Structure end |