AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
BatchCreateChannelMembershipError.h
1
6#pragma once
7#include <aws/chime/Chime_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/chime/model/ErrorCode.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 Chime
23{
24namespace Model
25{
26
34 {
35 public:
39 AWS_CHIME_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const Aws::String& GetMemberArn() const{ return m_memberArn; }
47 inline bool MemberArnHasBeenSet() const { return m_memberArnHasBeenSet; }
48 inline void SetMemberArn(const Aws::String& value) { m_memberArnHasBeenSet = true; m_memberArn = value; }
49 inline void SetMemberArn(Aws::String&& value) { m_memberArnHasBeenSet = true; m_memberArn = std::move(value); }
50 inline void SetMemberArn(const char* value) { m_memberArnHasBeenSet = true; m_memberArn.assign(value); }
51 inline BatchCreateChannelMembershipError& WithMemberArn(const Aws::String& value) { SetMemberArn(value); return *this;}
52 inline BatchCreateChannelMembershipError& WithMemberArn(Aws::String&& value) { SetMemberArn(std::move(value)); return *this;}
53 inline BatchCreateChannelMembershipError& WithMemberArn(const char* value) { SetMemberArn(value); return *this;}
55
57
60 inline const ErrorCode& GetErrorCode() const{ return m_errorCode; }
61 inline bool ErrorCodeHasBeenSet() const { return m_errorCodeHasBeenSet; }
62 inline void SetErrorCode(const ErrorCode& value) { m_errorCodeHasBeenSet = true; m_errorCode = value; }
63 inline void SetErrorCode(ErrorCode&& value) { m_errorCodeHasBeenSet = true; m_errorCode = std::move(value); }
64 inline BatchCreateChannelMembershipError& WithErrorCode(const ErrorCode& value) { SetErrorCode(value); return *this;}
65 inline BatchCreateChannelMembershipError& WithErrorCode(ErrorCode&& value) { SetErrorCode(std::move(value)); return *this;}
67
69
72 inline const Aws::String& GetErrorMessage() const{ return m_errorMessage; }
73 inline bool ErrorMessageHasBeenSet() const { return m_errorMessageHasBeenSet; }
74 inline void SetErrorMessage(const Aws::String& value) { m_errorMessageHasBeenSet = true; m_errorMessage = value; }
75 inline void SetErrorMessage(Aws::String&& value) { m_errorMessageHasBeenSet = true; m_errorMessage = std::move(value); }
76 inline void SetErrorMessage(const char* value) { m_errorMessageHasBeenSet = true; m_errorMessage.assign(value); }
78 inline BatchCreateChannelMembershipError& WithErrorMessage(Aws::String&& value) { SetErrorMessage(std::move(value)); return *this;}
79 inline BatchCreateChannelMembershipError& WithErrorMessage(const char* value) { SetErrorMessage(value); return *this;}
81 private:
82
83 Aws::String m_memberArn;
84 bool m_memberArnHasBeenSet = false;
85
86 ErrorCode m_errorCode;
87 bool m_errorCodeHasBeenSet = false;
88
89 Aws::String m_errorMessage;
90 bool m_errorMessageHasBeenSet = false;
91 };
92
93} // namespace Model
94} // namespace Chime
95} // namespace Aws
BatchCreateChannelMembershipError & WithMemberArn(const Aws::String &value)
BatchCreateChannelMembershipError & WithErrorMessage(const Aws::String &value)
BatchCreateChannelMembershipError & WithErrorCode(const ErrorCode &value)
BatchCreateChannelMembershipError & WithErrorMessage(const char *value)
BatchCreateChannelMembershipError & WithMemberArn(Aws::String &&value)
AWS_CHIME_API BatchCreateChannelMembershipError & operator=(Aws::Utils::Json::JsonView jsonValue)
BatchCreateChannelMembershipError & WithErrorCode(ErrorCode &&value)
BatchCreateChannelMembershipError & WithMemberArn(const char *value)
BatchCreateChannelMembershipError & WithErrorMessage(Aws::String &&value)
AWS_CHIME_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_CHIME_API BatchCreateChannelMembershipError(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue