/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace ivsrealtime { namespace Model { /** *

See Also:

AWS * API Reference

*/ class ResourceNotFoundException { public: AWS_IVSREALTIME_API ResourceNotFoundException(); AWS_IVSREALTIME_API ResourceNotFoundException(Aws::Utils::Json::JsonView jsonValue); AWS_IVSREALTIME_API ResourceNotFoundException& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_IVSREALTIME_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

Request references a resource which does not exist.

*/ inline const Aws::String& GetExceptionMessage() const{ return m_exceptionMessage; } /** *

Request references a resource which does not exist.

*/ inline bool ExceptionMessageHasBeenSet() const { return m_exceptionMessageHasBeenSet; } /** *

Request references a resource which does not exist.

*/ inline void SetExceptionMessage(const Aws::String& value) { m_exceptionMessageHasBeenSet = true; m_exceptionMessage = value; } /** *

Request references a resource which does not exist.

*/ inline void SetExceptionMessage(Aws::String&& value) { m_exceptionMessageHasBeenSet = true; m_exceptionMessage = std::move(value); } /** *

Request references a resource which does not exist.

*/ inline void SetExceptionMessage(const char* value) { m_exceptionMessageHasBeenSet = true; m_exceptionMessage.assign(value); } /** *

Request references a resource which does not exist.

*/ inline ResourceNotFoundException& WithExceptionMessage(const Aws::String& value) { SetExceptionMessage(value); return *this;} /** *

Request references a resource which does not exist.

*/ inline ResourceNotFoundException& WithExceptionMessage(Aws::String&& value) { SetExceptionMessage(std::move(value)); return *this;} /** *

Request references a resource which does not exist.

*/ inline ResourceNotFoundException& WithExceptionMessage(const char* value) { SetExceptionMessage(value); return *this;} private: Aws::String m_exceptionMessage; bool m_exceptionMessageHasBeenSet = false; }; } // namespace Model } // namespace ivsrealtime } // namespace Aws