AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
FailureException.h
1
6#pragma once
7#include <aws/dynamodb/DynamoDB_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace DynamoDB
22{
23namespace Model
24{
25
33 {
34 public:
35 AWS_DYNAMODB_API FailureException();
36 AWS_DYNAMODB_API FailureException(Aws::Utils::Json::JsonView jsonValue);
38 AWS_DYNAMODB_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline const Aws::String& GetExceptionName() const{ return m_exceptionName; }
46 inline bool ExceptionNameHasBeenSet() const { return m_exceptionNameHasBeenSet; }
47 inline void SetExceptionName(const Aws::String& value) { m_exceptionNameHasBeenSet = true; m_exceptionName = value; }
48 inline void SetExceptionName(Aws::String&& value) { m_exceptionNameHasBeenSet = true; m_exceptionName = std::move(value); }
49 inline void SetExceptionName(const char* value) { m_exceptionNameHasBeenSet = true; m_exceptionName.assign(value); }
50 inline FailureException& WithExceptionName(const Aws::String& value) { SetExceptionName(value); return *this;}
51 inline FailureException& WithExceptionName(Aws::String&& value) { SetExceptionName(std::move(value)); return *this;}
52 inline FailureException& WithExceptionName(const char* value) { SetExceptionName(value); return *this;}
54
56
59 inline const Aws::String& GetExceptionDescription() const{ return m_exceptionDescription; }
60 inline bool ExceptionDescriptionHasBeenSet() const { return m_exceptionDescriptionHasBeenSet; }
61 inline void SetExceptionDescription(const Aws::String& value) { m_exceptionDescriptionHasBeenSet = true; m_exceptionDescription = value; }
62 inline void SetExceptionDescription(Aws::String&& value) { m_exceptionDescriptionHasBeenSet = true; m_exceptionDescription = std::move(value); }
63 inline void SetExceptionDescription(const char* value) { m_exceptionDescriptionHasBeenSet = true; m_exceptionDescription.assign(value); }
65 inline FailureException& WithExceptionDescription(Aws::String&& value) { SetExceptionDescription(std::move(value)); return *this;}
66 inline FailureException& WithExceptionDescription(const char* value) { SetExceptionDescription(value); return *this;}
68 private:
69
70 Aws::String m_exceptionName;
71 bool m_exceptionNameHasBeenSet = false;
72
73 Aws::String m_exceptionDescription;
74 bool m_exceptionDescriptionHasBeenSet = false;
75 };
76
77} // namespace Model
78} // namespace DynamoDB
79} // namespace Aws
FailureException & WithExceptionName(const char *value)
FailureException & WithExceptionName(Aws::String &&value)
FailureException & WithExceptionDescription(const char *value)
FailureException & WithExceptionDescription(Aws::String &&value)
const Aws::String & GetExceptionDescription() const
void SetExceptionDescription(const char *value)
void SetExceptionName(const Aws::String &value)
void SetExceptionName(Aws::String &&value)
AWS_DYNAMODB_API FailureException(Aws::Utils::Json::JsonView jsonValue)
void SetExceptionDescription(const Aws::String &value)
FailureException & WithExceptionDescription(const Aws::String &value)
AWS_DYNAMODB_API FailureException & operator=(Aws::Utils::Json::JsonView jsonValue)
void SetExceptionDescription(Aws::String &&value)
const Aws::String & GetExceptionName() const
FailureException & WithExceptionName(const Aws::String &value)
AWS_DYNAMODB_API Aws::Utils::Json::JsonValue Jsonize() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue