/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The following element is returned by the service.See Also:
* AWS
* API Reference
An object that contains information about a dedicated IP pool.
*/ inline const DedicatedIpPool& GetDedicatedIpPool() const{ return m_dedicatedIpPool; } /** *An object that contains information about a dedicated IP pool.
*/ inline void SetDedicatedIpPool(const DedicatedIpPool& value) { m_dedicatedIpPool = value; } /** *An object that contains information about a dedicated IP pool.
*/ inline void SetDedicatedIpPool(DedicatedIpPool&& value) { m_dedicatedIpPool = std::move(value); } /** *An object that contains information about a dedicated IP pool.
*/ inline GetDedicatedIpPoolResult& WithDedicatedIpPool(const DedicatedIpPool& value) { SetDedicatedIpPool(value); return *this;} /** *An object that contains information about a dedicated IP pool.
*/ inline GetDedicatedIpPoolResult& WithDedicatedIpPool(DedicatedIpPool&& value) { SetDedicatedIpPool(std::move(value)); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline GetDedicatedIpPoolResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetDedicatedIpPoolResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetDedicatedIpPoolResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: DedicatedIpPool m_dedicatedIpPool; Aws::String m_requestId; }; } // namespace Model } // namespace SESV2 } // namespace Aws