AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DescribeScheduledActionsResult.h
1
6#pragma once
7#include <aws/autoscaling/AutoScaling_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/autoscaling/model/ResponseMetadata.h>
11#include <aws/autoscaling/model/ScheduledUpdateGroupAction.h>
12#include <utility>
13
14namespace Aws
15{
16template<typename RESULT_TYPE>
17class AmazonWebServiceResult;
18
19namespace Utils
20{
21namespace Xml
22{
23 class XmlDocument;
24} // namespace Xml
25} // namespace Utils
26namespace AutoScaling
27{
28namespace Model
29{
31 {
32 public:
33 AWS_AUTOSCALING_API DescribeScheduledActionsResult();
36
37
39
42 inline const Aws::Vector<ScheduledUpdateGroupAction>& GetScheduledUpdateGroupActions() const{ return m_scheduledUpdateGroupActions; }
43 inline void SetScheduledUpdateGroupActions(const Aws::Vector<ScheduledUpdateGroupAction>& value) { m_scheduledUpdateGroupActions = value; }
44 inline void SetScheduledUpdateGroupActions(Aws::Vector<ScheduledUpdateGroupAction>&& value) { m_scheduledUpdateGroupActions = std::move(value); }
47 inline DescribeScheduledActionsResult& AddScheduledUpdateGroupActions(const ScheduledUpdateGroupAction& value) { m_scheduledUpdateGroupActions.push_back(value); return *this; }
48 inline DescribeScheduledActionsResult& AddScheduledUpdateGroupActions(ScheduledUpdateGroupAction&& value) { m_scheduledUpdateGroupActions.push_back(std::move(value)); return *this; }
50
52
58 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
59 inline void SetNextToken(const Aws::String& value) { m_nextToken = value; }
60 inline void SetNextToken(Aws::String&& value) { m_nextToken = std::move(value); }
61 inline void SetNextToken(const char* value) { m_nextToken.assign(value); }
62 inline DescribeScheduledActionsResult& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
63 inline DescribeScheduledActionsResult& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
64 inline DescribeScheduledActionsResult& WithNextToken(const char* value) { SetNextToken(value); return *this;}
66
68
69 inline const ResponseMetadata& GetResponseMetadata() const{ return m_responseMetadata; }
70 inline void SetResponseMetadata(const ResponseMetadata& value) { m_responseMetadata = value; }
71 inline void SetResponseMetadata(ResponseMetadata&& value) { m_responseMetadata = std::move(value); }
75 private:
76
77 Aws::Vector<ScheduledUpdateGroupAction> m_scheduledUpdateGroupActions;
78
79 Aws::String m_nextToken;
80
81 ResponseMetadata m_responseMetadata;
82 };
83
84} // namespace Model
85} // namespace AutoScaling
86} // namespace Aws
void SetScheduledUpdateGroupActions(Aws::Vector< ScheduledUpdateGroupAction > &&value)
DescribeScheduledActionsResult & WithNextToken(const Aws::String &value)
DescribeScheduledActionsResult & AddScheduledUpdateGroupActions(ScheduledUpdateGroupAction &&value)
DescribeScheduledActionsResult & AddScheduledUpdateGroupActions(const ScheduledUpdateGroupAction &value)
DescribeScheduledActionsResult & WithScheduledUpdateGroupActions(Aws::Vector< ScheduledUpdateGroupAction > &&value)
DescribeScheduledActionsResult & WithNextToken(Aws::String &&value)
DescribeScheduledActionsResult & WithNextToken(const char *value)
AWS_AUTOSCALING_API DescribeScheduledActionsResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
DescribeScheduledActionsResult & WithResponseMetadata(const ResponseMetadata &value)
const Aws::Vector< ScheduledUpdateGroupAction > & GetScheduledUpdateGroupActions() const
void SetScheduledUpdateGroupActions(const Aws::Vector< ScheduledUpdateGroupAction > &value)
AWS_AUTOSCALING_API DescribeScheduledActionsResult(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
DescribeScheduledActionsResult & WithScheduledUpdateGroupActions(const Aws::Vector< ScheduledUpdateGroupAction > &value)
DescribeScheduledActionsResult & WithResponseMetadata(ResponseMetadata &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Xml::XmlDocument XmlDocument