AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DeleteUniqueIdError.h
1
6#pragma once
7#include <aws/entityresolution/EntityResolution_EXPORTS.h>
8#include <aws/entityresolution/model/DeleteUniqueIdErrorType.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 EntityResolution
23{
24namespace Model
25{
26
33 {
34 public:
35 AWS_ENTITYRESOLUTION_API DeleteUniqueIdError();
36 AWS_ENTITYRESOLUTION_API DeleteUniqueIdError(Aws::Utils::Json::JsonView jsonValue);
37 AWS_ENTITYRESOLUTION_API DeleteUniqueIdError& operator=(Aws::Utils::Json::JsonView jsonValue);
38 AWS_ENTITYRESOLUTION_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline const DeleteUniqueIdErrorType& GetErrorType() const{ return m_errorType; }
46 inline bool ErrorTypeHasBeenSet() const { return m_errorTypeHasBeenSet; }
47 inline void SetErrorType(const DeleteUniqueIdErrorType& value) { m_errorTypeHasBeenSet = true; m_errorType = value; }
48 inline void SetErrorType(DeleteUniqueIdErrorType&& value) { m_errorTypeHasBeenSet = true; m_errorType = std::move(value); }
49 inline DeleteUniqueIdError& WithErrorType(const DeleteUniqueIdErrorType& value) { SetErrorType(value); return *this;}
50 inline DeleteUniqueIdError& WithErrorType(DeleteUniqueIdErrorType&& value) { SetErrorType(std::move(value)); return *this;}
52
54
57 inline const Aws::String& GetUniqueId() const{ return m_uniqueId; }
58 inline bool UniqueIdHasBeenSet() const { return m_uniqueIdHasBeenSet; }
59 inline void SetUniqueId(const Aws::String& value) { m_uniqueIdHasBeenSet = true; m_uniqueId = value; }
60 inline void SetUniqueId(Aws::String&& value) { m_uniqueIdHasBeenSet = true; m_uniqueId = std::move(value); }
61 inline void SetUniqueId(const char* value) { m_uniqueIdHasBeenSet = true; m_uniqueId.assign(value); }
62 inline DeleteUniqueIdError& WithUniqueId(const Aws::String& value) { SetUniqueId(value); return *this;}
63 inline DeleteUniqueIdError& WithUniqueId(Aws::String&& value) { SetUniqueId(std::move(value)); return *this;}
64 inline DeleteUniqueIdError& WithUniqueId(const char* value) { SetUniqueId(value); return *this;}
66 private:
67
68 DeleteUniqueIdErrorType m_errorType;
69 bool m_errorTypeHasBeenSet = false;
70
71 Aws::String m_uniqueId;
72 bool m_uniqueIdHasBeenSet = false;
73 };
74
75} // namespace Model
76} // namespace EntityResolution
77} // namespace Aws
void SetErrorType(DeleteUniqueIdErrorType &&value)
const DeleteUniqueIdErrorType & GetErrorType() const
DeleteUniqueIdError & WithErrorType(const DeleteUniqueIdErrorType &value)
AWS_ENTITYRESOLUTION_API Aws::Utils::Json::JsonValue Jsonize() const
DeleteUniqueIdError & WithUniqueId(const Aws::String &value)
AWS_ENTITYRESOLUTION_API DeleteUniqueIdError & operator=(Aws::Utils::Json::JsonView jsonValue)
DeleteUniqueIdError & WithErrorType(DeleteUniqueIdErrorType &&value)
AWS_ENTITYRESOLUTION_API DeleteUniqueIdError(Aws::Utils::Json::JsonView jsonValue)
void SetErrorType(const DeleteUniqueIdErrorType &value)
DeleteUniqueIdError & WithUniqueId(Aws::String &&value)
DeleteUniqueIdError & WithUniqueId(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue