/** * 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 SageMakerGeospatial { namespace Model { /** *

The request processing has failed because of an unknown error, exception, or * failure.

See Also:

AWS * API Reference

*/ class InternalServerException { public: AWS_SAGEMAKERGEOSPATIAL_API InternalServerException(); AWS_SAGEMAKERGEOSPATIAL_API InternalServerException(Aws::Utils::Json::JsonView jsonValue); AWS_SAGEMAKERGEOSPATIAL_API InternalServerException& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_SAGEMAKERGEOSPATIAL_API Aws::Utils::Json::JsonValue Jsonize() const; inline const Aws::String& GetMessage() const{ return m_message; } inline bool MessageHasBeenSet() const { return m_messageHasBeenSet; } inline void SetMessage(const Aws::String& value) { m_messageHasBeenSet = true; m_message = value; } inline void SetMessage(Aws::String&& value) { m_messageHasBeenSet = true; m_message = std::move(value); } inline void SetMessage(const char* value) { m_messageHasBeenSet = true; m_message.assign(value); } inline InternalServerException& WithMessage(const Aws::String& value) { SetMessage(value); return *this;} inline InternalServerException& WithMessage(Aws::String&& value) { SetMessage(std::move(value)); return *this;} inline InternalServerException& WithMessage(const char* value) { SetMessage(value); return *this;} /** *

*/ inline const Aws::String& GetResourceId() const{ return m_resourceId; } /** *

*/ inline bool ResourceIdHasBeenSet() const { return m_resourceIdHasBeenSet; } /** *

*/ inline void SetResourceId(const Aws::String& value) { m_resourceIdHasBeenSet = true; m_resourceId = value; } /** *

*/ inline void SetResourceId(Aws::String&& value) { m_resourceIdHasBeenSet = true; m_resourceId = std::move(value); } /** *

*/ inline void SetResourceId(const char* value) { m_resourceIdHasBeenSet = true; m_resourceId.assign(value); } /** *

*/ inline InternalServerException& WithResourceId(const Aws::String& value) { SetResourceId(value); return *this;} /** *

*/ inline InternalServerException& WithResourceId(Aws::String&& value) { SetResourceId(std::move(value)); return *this;} /** *

*/ inline InternalServerException& WithResourceId(const char* value) { SetResourceId(value); return *this;} private: Aws::String m_message; bool m_messageHasBeenSet = false; Aws::String m_resourceId; bool m_resourceIdHasBeenSet = false; }; } // namespace Model } // namespace SageMakerGeospatial } // namespace Aws