/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A request to obtain more information about a dedicated IP
* address.See Also:
AWS
* API Reference
The IP address that you want to obtain more information about. The value you * specify has to be a dedicated IP address that's assocaited with your Amazon Web * Services account.
*/ inline const Aws::String& GetIp() const{ return m_ip; } /** *The IP address that you want to obtain more information about. The value you * specify has to be a dedicated IP address that's assocaited with your Amazon Web * Services account.
*/ inline bool IpHasBeenSet() const { return m_ipHasBeenSet; } /** *The IP address that you want to obtain more information about. The value you * specify has to be a dedicated IP address that's assocaited 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 obtain more information about. The value you * specify has to be a dedicated IP address that's assocaited 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 obtain more information about. The value you * specify has to be a dedicated IP address that's assocaited 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 obtain more information about. The value you * specify has to be a dedicated IP address that's assocaited with your Amazon Web * Services account.
*/ inline GetDedicatedIpRequest& WithIp(const Aws::String& value) { SetIp(value); return *this;} /** *The IP address that you want to obtain more information about. The value you * specify has to be a dedicated IP address that's assocaited with your Amazon Web * Services account.
*/ inline GetDedicatedIpRequest& WithIp(Aws::String&& value) { SetIp(std::move(value)); return *this;} /** *The IP address that you want to obtain more information about. The value you * specify has to be a dedicated IP address that's assocaited with your Amazon Web * Services account.
*/ inline GetDedicatedIpRequest& WithIp(const char* value) { SetIp(value); return *this;} private: Aws::String m_ip; bool m_ipHasBeenSet = false; }; } // namespace Model } // namespace SESV2 } // namespace Aws