/** * 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 the suppressed email address.

See Also:

AWS * API Reference

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

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;} private: SuppressedDestination m_suppressedDestination; }; } // namespace Model } // namespace SESV2 } // namespace Aws