AWS SDK for C++
AWS SDK for C++
Loading...
Searching...
No Matches
SqsParameters.h
Go to the documentation of this file.
1
6#pragma once
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 Scheduler
22{
23namespace Model
24{
25
40 {
41 public:
46
47
51 inline const Aws::String& GetMessageGroupId() const{ return m_messageGroupId; }
52
56 inline bool MessageGroupIdHasBeenSet() const { return m_messageGroupIdHasBeenSet; }
57
61 inline void SetMessageGroupId(const Aws::String& value) { m_messageGroupIdHasBeenSet = true; m_messageGroupId = value; }
62
66 inline void SetMessageGroupId(Aws::String&& value) { m_messageGroupIdHasBeenSet = true; m_messageGroupId = std::move(value); }
67
71 inline void SetMessageGroupId(const char* value) { m_messageGroupIdHasBeenSet = true; m_messageGroupId.assign(value); }
72
76 inline SqsParameters& WithMessageGroupId(const Aws::String& value) { SetMessageGroupId(value); return *this;}
77
81 inline SqsParameters& WithMessageGroupId(Aws::String&& value) { SetMessageGroupId(std::move(value)); return *this;}
82
86 inline SqsParameters& WithMessageGroupId(const char* value) { SetMessageGroupId(value); return *this;}
87
88 private:
89
90 Aws::String m_messageGroupId;
91 bool m_messageGroupIdHasBeenSet = false;
92 };
93
94} // namespace Model
95} // namespace Scheduler
96} // namespace Aws
#define AWS_SCHEDULER_API
void SetMessageGroupId(const char *value)
Definition: SqsParameters.h:71
void SetMessageGroupId(const Aws::String &value)
Definition: SqsParameters.h:61
void SetMessageGroupId(Aws::String &&value)
Definition: SqsParameters.h:66
SqsParameters & WithMessageGroupId(const Aws::String &value)
Definition: SqsParameters.h:76
AWS_SCHEDULER_API Aws::Utils::Json::JsonValue Jsonize() const
SqsParameters & WithMessageGroupId(const char *value)
Definition: SqsParameters.h:86
SqsParameters & WithMessageGroupId(Aws::String &&value)
Definition: SqsParameters.h:81
AWS_SCHEDULER_API SqsParameters & operator=(Aws::Utils::Json::JsonView jsonValue)
const Aws::String & GetMessageGroupId() const
Definition: SqsParameters.h:51
AWS_SCHEDULER_API SqsParameters(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String