/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include
#include
#include
#include
#include
#include
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace ivschat
{
namespace Model
{
/**
* See Also:
AWS
* API Reference
*/
class ValidationException
{
public:
AWS_IVSCHAT_API ValidationException();
AWS_IVSCHAT_API ValidationException(Aws::Utils::Json::JsonView jsonValue);
AWS_IVSCHAT_API ValidationException& operator=(Aws::Utils::Json::JsonView jsonValue);
AWS_IVSCHAT_API Aws::Utils::Json::JsonValue Jsonize() const;
/**
*
*/
inline const Aws::Vector& GetFieldList() const{ return m_fieldList; }
/**
*
*/
inline bool FieldListHasBeenSet() const { return m_fieldListHasBeenSet; }
/**
*
*/
inline void SetFieldList(const Aws::Vector& value) { m_fieldListHasBeenSet = true; m_fieldList = value; }
/**
*
*/
inline void SetFieldList(Aws::Vector&& value) { m_fieldListHasBeenSet = true; m_fieldList = std::move(value); }
/**
*
*/
inline ValidationException& WithFieldList(const Aws::Vector& value) { SetFieldList(value); return *this;}
/**
*
*/
inline ValidationException& WithFieldList(Aws::Vector&& value) { SetFieldList(std::move(value)); return *this;}
/**
*
*/
inline ValidationException& AddFieldList(const ValidationExceptionField& value) { m_fieldListHasBeenSet = true; m_fieldList.push_back(value); return *this; }
/**
*
*/
inline ValidationException& AddFieldList(ValidationExceptionField&& value) { m_fieldListHasBeenSet = true; m_fieldList.push_back(std::move(value)); return *this; }
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 ValidationException& WithMessage(const Aws::String& value) { SetMessage(value); return *this;}
inline ValidationException& WithMessage(Aws::String&& value) { SetMessage(std::move(value)); return *this;}
inline ValidationException& WithMessage(const char* value) { SetMessage(value); return *this;}
/**
*
*/
inline const ValidationExceptionReason& GetReason() const{ return m_reason; }
/**
*
*/
inline bool ReasonHasBeenSet() const { return m_reasonHasBeenSet; }
/**
*
*/
inline void SetReason(const ValidationExceptionReason& value) { m_reasonHasBeenSet = true; m_reason = value; }
/**
*
*/
inline void SetReason(ValidationExceptionReason&& value) { m_reasonHasBeenSet = true; m_reason = std::move(value); }
/**
*
*/
inline ValidationException& WithReason(const ValidationExceptionReason& value) { SetReason(value); return *this;}
/**
*
*/
inline ValidationException& WithReason(ValidationExceptionReason&& value) { SetReason(std::move(value)); return *this;}
private:
Aws::Vector m_fieldList;
bool m_fieldListHasBeenSet = false;
Aws::String m_message;
bool m_messageHasBeenSet = false;
ValidationExceptionReason m_reason;
bool m_reasonHasBeenSet = false;
};
} // namespace Model
} // namespace ivschat
} // namespace Aws