Class: Aws::PinpointEmail::Types::PutDedicatedIpInPoolRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::PinpointEmail::Types::PutDedicatedIpInPoolRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpointemail/types.rb
Overview
A request to move a dedicated IP address to a dedicated IP pool.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#destination_pool_name ⇒ String
The name of the IP pool that you want to add the dedicated IP address to.
-
#ip ⇒ String
The IP address that you want to move to the dedicated IP pool.
Instance Attribute Details
#destination_pool_name ⇒ String
The name of the IP pool that you want to add the dedicated IP address to. You have to specify an IP pool that already exists.
2483 2484 2485 2486 2487 2488 |
# File 'lib/aws-sdk-pinpointemail/types.rb', line 2483 class PutDedicatedIpInPoolRequest < Struct.new( :ip, :destination_pool_name) SENSITIVE = [] include Aws::Structure end |
#ip ⇒ String
The IP address that you want to move to the dedicated IP pool. The value you specify has to be a dedicated IP address that’s associated with your Amazon Pinpoint account.
2483 2484 2485 2486 2487 2488 |
# File 'lib/aws-sdk-pinpointemail/types.rb', line 2483 class PutDedicatedIpInPoolRequest < Struct.new( :ip, :destination_pool_name) SENSITIVE = [] include Aws::Structure end |