154 lines
4.7 KiB
C++
154 lines
4.7 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/accessanalyzer/AccessAnalyzer_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSVector.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <aws/accessanalyzer/model/ValidationExceptionReason.h>
|
|
#include <aws/accessanalyzer/model/ValidationExceptionField.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
class JsonView;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace AccessAnalyzer
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p>Validation exception error.</p><p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/accessanalyzer-2019-11-01/ValidationException">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_ACCESSANALYZER_API ValidationException
|
|
{
|
|
public:
|
|
ValidationException();
|
|
ValidationException(Aws::Utils::Json::JsonView jsonValue);
|
|
ValidationException& operator=(Aws::Utils::Json::JsonView jsonValue);
|
|
Aws::Utils::Json::JsonValue Jsonize() const;
|
|
|
|
|
|
/**
|
|
* <p>A list of fields that didn't validate.</p>
|
|
*/
|
|
inline const Aws::Vector<ValidationExceptionField>& GetFieldList() const{ return m_fieldList; }
|
|
|
|
/**
|
|
* <p>A list of fields that didn't validate.</p>
|
|
*/
|
|
inline bool FieldListHasBeenSet() const { return m_fieldListHasBeenSet; }
|
|
|
|
/**
|
|
* <p>A list of fields that didn't validate.</p>
|
|
*/
|
|
inline void SetFieldList(const Aws::Vector<ValidationExceptionField>& value) { m_fieldListHasBeenSet = true; m_fieldList = value; }
|
|
|
|
/**
|
|
* <p>A list of fields that didn't validate.</p>
|
|
*/
|
|
inline void SetFieldList(Aws::Vector<ValidationExceptionField>&& value) { m_fieldListHasBeenSet = true; m_fieldList = std::move(value); }
|
|
|
|
/**
|
|
* <p>A list of fields that didn't validate.</p>
|
|
*/
|
|
inline ValidationException& WithFieldList(const Aws::Vector<ValidationExceptionField>& value) { SetFieldList(value); return *this;}
|
|
|
|
/**
|
|
* <p>A list of fields that didn't validate.</p>
|
|
*/
|
|
inline ValidationException& WithFieldList(Aws::Vector<ValidationExceptionField>&& value) { SetFieldList(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>A list of fields that didn't validate.</p>
|
|
*/
|
|
inline ValidationException& AddFieldList(const ValidationExceptionField& value) { m_fieldListHasBeenSet = true; m_fieldList.push_back(value); return *this; }
|
|
|
|
/**
|
|
* <p>A list of fields that didn't validate.</p>
|
|
*/
|
|
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;}
|
|
|
|
|
|
/**
|
|
* <p>The reason for the exception.</p>
|
|
*/
|
|
inline const ValidationExceptionReason& GetReason() const{ return m_reason; }
|
|
|
|
/**
|
|
* <p>The reason for the exception.</p>
|
|
*/
|
|
inline bool ReasonHasBeenSet() const { return m_reasonHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The reason for the exception.</p>
|
|
*/
|
|
inline void SetReason(const ValidationExceptionReason& value) { m_reasonHasBeenSet = true; m_reason = value; }
|
|
|
|
/**
|
|
* <p>The reason for the exception.</p>
|
|
*/
|
|
inline void SetReason(ValidationExceptionReason&& value) { m_reasonHasBeenSet = true; m_reason = std::move(value); }
|
|
|
|
/**
|
|
* <p>The reason for the exception.</p>
|
|
*/
|
|
inline ValidationException& WithReason(const ValidationExceptionReason& value) { SetReason(value); return *this;}
|
|
|
|
/**
|
|
* <p>The reason for the exception.</p>
|
|
*/
|
|
inline ValidationException& WithReason(ValidationExceptionReason&& value) { SetReason(std::move(value)); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::Vector<ValidationExceptionField> m_fieldList;
|
|
bool m_fieldListHasBeenSet;
|
|
|
|
Aws::String m_message;
|
|
bool m_messageHasBeenSet;
|
|
|
|
ValidationExceptionReason m_reason;
|
|
bool m_reasonHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace AccessAnalyzer
|
|
} // namespace Aws
|