AWS SDK for C++
AWS SDK for C++
Loading...
Searching...
No Matches
UpdateScheduleResult.h
Go to the documentation of this file.
1
6#pragma once
9#include <utility>
10
11namespace Aws
12{
13template<typename RESULT_TYPE>
14class AmazonWebServiceResult;
15
16namespace Utils
17{
18namespace Json
19{
20 class JsonValue;
21} // namespace Json
22} // namespace Utils
23namespace Scheduler
24{
25namespace Model
26{
28 {
29 public:
33
34
38 inline const Aws::String& GetScheduleArn() const{ return m_scheduleArn; }
39
43 inline void SetScheduleArn(const Aws::String& value) { m_scheduleArn = value; }
44
48 inline void SetScheduleArn(Aws::String&& value) { m_scheduleArn = std::move(value); }
49
53 inline void SetScheduleArn(const char* value) { m_scheduleArn.assign(value); }
54
58 inline UpdateScheduleResult& WithScheduleArn(const Aws::String& value) { SetScheduleArn(value); return *this;}
59
63 inline UpdateScheduleResult& WithScheduleArn(Aws::String&& value) { SetScheduleArn(std::move(value)); return *this;}
64
68 inline UpdateScheduleResult& WithScheduleArn(const char* value) { SetScheduleArn(value); return *this;}
69
70 private:
71
72 Aws::String m_scheduleArn;
73 };
74
75} // namespace Model
76} // namespace Scheduler
77} // namespace Aws
#define AWS_SCHEDULER_API
AWS_SCHEDULER_API UpdateScheduleResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
UpdateScheduleResult & WithScheduleArn(const Aws::String &value)
AWS_SCHEDULER_API UpdateScheduleResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
UpdateScheduleResult & WithScheduleArn(Aws::String &&value)
void SetScheduleArn(const Aws::String &value)
UpdateScheduleResult & WithScheduleArn(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String