Class: Aws::SESV2::Types::PutDedicatedIpPoolScalingAttributesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SESV2::Types::PutDedicatedIpPoolScalingAttributesRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sesv2/types.rb
Overview
A request to convert a dedicated IP pool to a different scaling mode.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#pool_name ⇒ String
The name of the dedicated IP pool.
-
#scaling_mode ⇒ String
The scaling mode to apply to the dedicated IP pool.
Instance Attribute Details
#pool_name ⇒ String
The name of the dedicated IP pool.
6209 6210 6211 6212 6213 6214 |
# File 'lib/aws-sdk-sesv2/types.rb', line 6209 class PutDedicatedIpPoolScalingAttributesRequest < Struct.new( :pool_name, :scaling_mode) SENSITIVE = [] include Aws::Structure end |
#scaling_mode ⇒ String
The scaling mode to apply to the dedicated IP pool.
<note markdown=“1”> Changing the scaling mode from ‘MANAGED` to `STANDARD` is not supported.
</note>
6209 6210 6211 6212 6213 6214 |
# File 'lib/aws-sdk-sesv2/types.rb', line 6209 class PutDedicatedIpPoolScalingAttributesRequest < Struct.new( :pool_name, :scaling_mode) SENSITIVE = [] include Aws::Structure end |