/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about the suppressed email address.See Also:
AWS
* API Reference
An object containing information about the suppressed email address.
*/ inline const SuppressedDestination& GetSuppressedDestination() const{ return m_suppressedDestination; } /** *An object containing information about the suppressed email address.
*/ inline void SetSuppressedDestination(const SuppressedDestination& value) { m_suppressedDestination = value; } /** *An object containing information about the suppressed email address.
*/ inline void SetSuppressedDestination(SuppressedDestination&& value) { m_suppressedDestination = std::move(value); } /** *An object containing information about the suppressed email address.
*/ inline GetSuppressedDestinationResult& WithSuppressedDestination(const SuppressedDestination& value) { SetSuppressedDestination(value); return *this;} /** *An object containing information about the suppressed email address.
*/ inline GetSuppressedDestinationResult& WithSuppressedDestination(SuppressedDestination&& value) { SetSuppressedDestination(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 GetSuppressedDestinationResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetSuppressedDestinationResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetSuppressedDestinationResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: SuppressedDestination m_suppressedDestination; Aws::String m_requestId; }; } // namespace Model } // namespace SESV2 } // namespace Aws