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