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

A warning returned by the document service when an issue is discovered while * processing an upload request.

See Also:

AWS * API Reference

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

The description for a warning returned by the document service.

*/ inline const Aws::String& GetMessage() const{ return m_message; } /** *

The description for a warning returned by the document service.

*/ inline bool MessageHasBeenSet() const { return m_messageHasBeenSet; } /** *

The description for a warning returned by the document service.

*/ inline void SetMessage(const Aws::String& value) { m_messageHasBeenSet = true; m_message = value; } /** *

The description for a warning returned by the document service.

*/ inline void SetMessage(Aws::String&& value) { m_messageHasBeenSet = true; m_message = std::move(value); } /** *

The description for a warning returned by the document service.

*/ inline void SetMessage(const char* value) { m_messageHasBeenSet = true; m_message.assign(value); } /** *

The description for a warning returned by the document service.

*/ inline DocumentServiceWarning& WithMessage(const Aws::String& value) { SetMessage(value); return *this;} /** *

The description for a warning returned by the document service.

*/ inline DocumentServiceWarning& WithMessage(Aws::String&& value) { SetMessage(std::move(value)); return *this;} /** *

The description for a warning returned by the document service.

*/ inline DocumentServiceWarning& WithMessage(const char* value) { SetMessage(value); return *this;} private: Aws::String m_message; bool m_messageHasBeenSet = false; }; } // namespace Model } // namespace CloudSearchDomain } // namespace Aws