/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace SESV2 { namespace Model { /** *

Information about a dedicated IP address.

See Also:

AWS * API Reference

*/ class AWS_SESV2_API GetDedicatedIpResult { public: GetDedicatedIpResult(); GetDedicatedIpResult(const Aws::AmazonWebServiceResult& result); GetDedicatedIpResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

An object that contains information about a dedicated IP address.

*/ inline const DedicatedIp& GetDedicatedIp() const{ return m_dedicatedIp; } /** *

An object that contains information about a dedicated IP address.

*/ inline void SetDedicatedIp(const DedicatedIp& value) { m_dedicatedIp = value; } /** *

An object that contains information about a dedicated IP address.

*/ inline void SetDedicatedIp(DedicatedIp&& value) { m_dedicatedIp = std::move(value); } /** *

An object that contains information about a dedicated IP address.

*/ inline GetDedicatedIpResult& WithDedicatedIp(const DedicatedIp& value) { SetDedicatedIp(value); return *this;} /** *

An object that contains information about a dedicated IP address.

*/ inline GetDedicatedIpResult& WithDedicatedIp(DedicatedIp&& value) { SetDedicatedIp(std::move(value)); return *this;} private: DedicatedIp m_dedicatedIp; }; } // namespace Model } // namespace SESV2 } // namespace Aws