/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A request to move a dedicated IP address to a dedicated IP
* pool.See Also:
AWS
* API Reference
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 Web * Services account.
*/ inline const Aws::String& GetIp() const{ return m_ip; } /** *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 Web * Services account.
*/ inline bool IpHasBeenSet() const { return m_ipHasBeenSet; } /** *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 Web * Services account.
*/ inline void SetIp(const Aws::String& value) { m_ipHasBeenSet = true; m_ip = value; } /** *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 Web * Services account.
*/ inline void SetIp(Aws::String&& value) { m_ipHasBeenSet = true; m_ip = std::move(value); } /** *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 Web * Services account.
*/ inline void SetIp(const char* value) { m_ipHasBeenSet = true; m_ip.assign(value); } /** *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 Web * Services account.
*/ inline PutDedicatedIpInPoolRequest& WithIp(const Aws::String& value) { SetIp(value); return *this;} /** *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 Web * Services account.
*/ inline PutDedicatedIpInPoolRequest& WithIp(Aws::String&& value) { SetIp(std::move(value)); return *this;} /** *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 Web * Services account.
*/ inline PutDedicatedIpInPoolRequest& WithIp(const char* value) { SetIp(value); return *this;} /** *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.
*/ inline const Aws::String& GetDestinationPoolName() const{ return m_destinationPoolName; } /** *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.
*/ inline bool DestinationPoolNameHasBeenSet() const { return m_destinationPoolNameHasBeenSet; } /** *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.
*/ inline void SetDestinationPoolName(const Aws::String& value) { m_destinationPoolNameHasBeenSet = true; m_destinationPoolName = value; } /** *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.
*/ inline void SetDestinationPoolName(Aws::String&& value) { m_destinationPoolNameHasBeenSet = true; m_destinationPoolName = std::move(value); } /** *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.
*/ inline void SetDestinationPoolName(const char* value) { m_destinationPoolNameHasBeenSet = true; m_destinationPoolName.assign(value); } /** *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.
*/ inline PutDedicatedIpInPoolRequest& WithDestinationPoolName(const Aws::String& value) { SetDestinationPoolName(value); return *this;} /** *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.
*/ inline PutDedicatedIpInPoolRequest& WithDestinationPoolName(Aws::String&& value) { SetDestinationPoolName(std::move(value)); return *this;} /** *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.
*/ inline PutDedicatedIpInPoolRequest& WithDestinationPoolName(const char* value) { SetDestinationPoolName(value); return *this;} private: Aws::String m_ip; bool m_ipHasBeenSet = false; Aws::String m_destinationPoolName; bool m_destinationPoolNameHasBeenSet = false; }; } // namespace Model } // namespace SESV2 } // namespace Aws