AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
BatchReadException.h
1
6#pragma once
7#include <aws/clouddirectory/CloudDirectory_EXPORTS.h>
8#include <aws/clouddirectory/model/BatchReadExceptionType.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace CloudDirectory
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_CLOUDDIRECTORY_API BatchReadException();
37 AWS_CLOUDDIRECTORY_API BatchReadException(Aws::Utils::Json::JsonView jsonValue);
38 AWS_CLOUDDIRECTORY_API BatchReadException& operator=(Aws::Utils::Json::JsonView jsonValue);
39 AWS_CLOUDDIRECTORY_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const BatchReadExceptionType& GetType() const{ return m_type; }
47 inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; }
48 inline void SetType(const BatchReadExceptionType& value) { m_typeHasBeenSet = true; m_type = value; }
49 inline void SetType(BatchReadExceptionType&& value) { m_typeHasBeenSet = true; m_type = std::move(value); }
50 inline BatchReadException& WithType(const BatchReadExceptionType& value) { SetType(value); return *this;}
51 inline BatchReadException& WithType(BatchReadExceptionType&& value) { SetType(std::move(value)); return *this;}
53
55
58 inline const Aws::String& GetMessage() const{ return m_message; }
59 inline bool MessageHasBeenSet() const { return m_messageHasBeenSet; }
60 inline void SetMessage(const Aws::String& value) { m_messageHasBeenSet = true; m_message = value; }
61 inline void SetMessage(Aws::String&& value) { m_messageHasBeenSet = true; m_message = std::move(value); }
62 inline void SetMessage(const char* value) { m_messageHasBeenSet = true; m_message.assign(value); }
63 inline BatchReadException& WithMessage(const Aws::String& value) { SetMessage(value); return *this;}
64 inline BatchReadException& WithMessage(Aws::String&& value) { SetMessage(std::move(value)); return *this;}
65 inline BatchReadException& WithMessage(const char* value) { SetMessage(value); return *this;}
67 private:
68
70 bool m_typeHasBeenSet = false;
71
72 Aws::String m_message;
73 bool m_messageHasBeenSet = false;
74 };
75
76} // namespace Model
77} // namespace CloudDirectory
78} // namespace Aws
void SetType(const BatchReadExceptionType &value)
BatchReadException & WithMessage(Aws::String &&value)
AWS_CLOUDDIRECTORY_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_CLOUDDIRECTORY_API BatchReadException & operator=(Aws::Utils::Json::JsonView jsonValue)
const BatchReadExceptionType & GetType() const
BatchReadException & WithMessage(const char *value)
BatchReadException & WithMessage(const Aws::String &value)
void SetType(BatchReadExceptionType &&value)
AWS_CLOUDDIRECTORY_API BatchReadException(Aws::Utils::Json::JsonView jsonValue)
BatchReadException & WithType(const BatchReadExceptionType &value)
BatchReadException & WithType(BatchReadExceptionType &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue