/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains informations about errors.See Also:
AWS
* API Reference
The ID of the message that caused the error. See the value corresponding to
* the messageId
key in the message object.
The ID of the message that caused the error. See the value corresponding to
* the messageId
key in the message object.
The ID of the message that caused the error. See the value corresponding to
* the messageId
key in the message object.
The ID of the message that caused the error. See the value corresponding to
* the messageId
key in the message object.
The ID of the message that caused the error. See the value corresponding to
* the messageId
key in the message object.
The ID of the message that caused the error. See the value corresponding to
* the messageId
key in the message object.
The ID of the message that caused the error. See the value corresponding to
* the messageId
key in the message object.
The ID of the message that caused the error. See the value corresponding to
* the messageId
key in the message object.
The code associated with the error.
*/ inline const Aws::String& GetErrorCode() const{ return m_errorCode; } /** *The code associated with the error.
*/ inline bool ErrorCodeHasBeenSet() const { return m_errorCodeHasBeenSet; } /** *The code associated with the error.
*/ inline void SetErrorCode(const Aws::String& value) { m_errorCodeHasBeenSet = true; m_errorCode = value; } /** *The code associated with the error.
*/ inline void SetErrorCode(Aws::String&& value) { m_errorCodeHasBeenSet = true; m_errorCode = std::move(value); } /** *The code associated with the error.
*/ inline void SetErrorCode(const char* value) { m_errorCodeHasBeenSet = true; m_errorCode.assign(value); } /** *The code associated with the error.
*/ inline BatchPutMessageErrorEntry& WithErrorCode(const Aws::String& value) { SetErrorCode(value); return *this;} /** *The code associated with the error.
*/ inline BatchPutMessageErrorEntry& WithErrorCode(Aws::String&& value) { SetErrorCode(std::move(value)); return *this;} /** *The code associated with the error.
*/ inline BatchPutMessageErrorEntry& WithErrorCode(const char* value) { SetErrorCode(value); return *this;} /** *The message associated with the error.
*/ inline const Aws::String& GetErrorMessage() const{ return m_errorMessage; } /** *The message associated with the error.
*/ inline bool ErrorMessageHasBeenSet() const { return m_errorMessageHasBeenSet; } /** *The message associated with the error.
*/ inline void SetErrorMessage(const Aws::String& value) { m_errorMessageHasBeenSet = true; m_errorMessage = value; } /** *The message associated with the error.
*/ inline void SetErrorMessage(Aws::String&& value) { m_errorMessageHasBeenSet = true; m_errorMessage = std::move(value); } /** *The message associated with the error.
*/ inline void SetErrorMessage(const char* value) { m_errorMessageHasBeenSet = true; m_errorMessage.assign(value); } /** *The message associated with the error.
*/ inline BatchPutMessageErrorEntry& WithErrorMessage(const Aws::String& value) { SetErrorMessage(value); return *this;} /** *The message associated with the error.
*/ inline BatchPutMessageErrorEntry& WithErrorMessage(Aws::String&& value) { SetErrorMessage(std::move(value)); return *this;} /** *The message associated with the error.
*/ inline BatchPutMessageErrorEntry& WithErrorMessage(const char* value) { SetErrorMessage(value); return *this;} private: Aws::String m_messageId; bool m_messageIdHasBeenSet = false; Aws::String m_errorCode; bool m_errorCodeHasBeenSet = false; Aws::String m_errorMessage; bool m_errorMessageHasBeenSet = false; }; } // namespace Model } // namespace IoTAnalytics } // namespace Aws