/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A specified entity does not existSee Also:
AWS
* API Reference
A message describing the problem.
*/ inline const Aws::String& GetMessage() const{ return m_message; } /** *A message describing the problem.
*/ inline bool MessageHasBeenSet() const { return m_messageHasBeenSet; } /** *A message describing the problem.
*/ inline void SetMessage(const Aws::String& value) { m_messageHasBeenSet = true; m_message = value; } /** *A message describing the problem.
*/ inline void SetMessage(Aws::String&& value) { m_messageHasBeenSet = true; m_message = std::move(value); } /** *A message describing the problem.
*/ inline void SetMessage(const char* value) { m_messageHasBeenSet = true; m_message.assign(value); } /** *A message describing the problem.
*/ inline EntityNotFoundException& WithMessage(const Aws::String& value) { SetMessage(value); return *this;} /** *A message describing the problem.
*/ inline EntityNotFoundException& WithMessage(Aws::String&& value) { SetMessage(std::move(value)); return *this;} /** *A message describing the problem.
*/ inline EntityNotFoundException& WithMessage(const char* value) { SetMessage(value); return *this;} /** *Indicates whether or not the exception relates to a federated source.
*/ inline bool GetFromFederationSource() const{ return m_fromFederationSource; } /** *Indicates whether or not the exception relates to a federated source.
*/ inline bool FromFederationSourceHasBeenSet() const { return m_fromFederationSourceHasBeenSet; } /** *Indicates whether or not the exception relates to a federated source.
*/ inline void SetFromFederationSource(bool value) { m_fromFederationSourceHasBeenSet = true; m_fromFederationSource = value; } /** *Indicates whether or not the exception relates to a federated source.
*/ inline EntityNotFoundException& WithFromFederationSource(bool value) { SetFromFederationSource(value); return *this;} private: Aws::String m_message; bool m_messageHasBeenSet = false; bool m_fromFederationSource; bool m_fromFederationSourceHasBeenSet = false; }; } // namespace Model } // namespace Glue } // namespace Aws