AWS SDK for C++
AWS SDK for C++
Loading...
Searching...
No Matches
GetScheduleGroupRequest.h
Go to the documentation of this file.
1
6#pragma once
10#include <utility>
11
12namespace Aws
13{
14namespace Scheduler
15{
16namespace Model
17{
18
22 {
23 public:
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "GetScheduleGroup"; }
31
33
34
38 inline const Aws::String& GetName() const{ return m_name; }
39
43 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
44
48 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
49
53 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
54
58 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
59
63 inline GetScheduleGroupRequest& WithName(const Aws::String& value) { SetName(value); return *this;}
64
68 inline GetScheduleGroupRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
69
73 inline GetScheduleGroupRequest& WithName(const char* value) { SetName(value); return *this;}
74
75 private:
76
77 Aws::String m_name;
78 bool m_nameHasBeenSet = false;
79 };
80
81} // namespace Model
82} // namespace Scheduler
83} // namespace Aws
#define AWS_SCHEDULER_API
GetScheduleGroupRequest & WithName(Aws::String &&value)
AWS_SCHEDULER_API Aws::String SerializePayload() const override
virtual const char * GetServiceRequestName() const override
GetScheduleGroupRequest & WithName(const Aws::String &value)
GetScheduleGroupRequest & WithName(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String