/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about a dedicated IP address.See Also:
AWS
* API Reference
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