AWS SDK for C++

AWS SDK for C++ Version 1.11.719

Loading...
Searching...
No Matches
DescribeStateMachineAliasResult.h
1
6#pragma once
7#include <aws/core/utils/DateTime.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/states/SFN_EXPORTS.h>
11#include <aws/states/model/RoutingConfigurationListItem.h>
12
13#include <utility>
14
15namespace Aws {
16template <typename RESULT_TYPE>
17class AmazonWebServiceResult;
18
19namespace Utils {
20namespace Json {
21class JsonValue;
22} // namespace Json
23} // namespace Utils
24namespace SFN {
25namespace Model {
27 public:
28 AWS_SFN_API DescribeStateMachineAliasResult() = default;
31
33
36 inline const Aws::String& GetStateMachineAliasArn() const { return m_stateMachineAliasArn; }
37 template <typename StateMachineAliasArnT = Aws::String>
38 void SetStateMachineAliasArn(StateMachineAliasArnT&& value) {
39 m_stateMachineAliasArnHasBeenSet = true;
40 m_stateMachineAliasArn = std::forward<StateMachineAliasArnT>(value);
41 }
42 template <typename StateMachineAliasArnT = Aws::String>
44 SetStateMachineAliasArn(std::forward<StateMachineAliasArnT>(value));
45 return *this;
46 }
48
50
53 inline const Aws::String& GetName() const { return m_name; }
54 template <typename NameT = Aws::String>
55 void SetName(NameT&& value) {
56 m_nameHasBeenSet = true;
57 m_name = std::forward<NameT>(value);
58 }
59 template <typename NameT = Aws::String>
61 SetName(std::forward<NameT>(value));
62 return *this;
63 }
65
67
70 inline const Aws::String& GetDescription() const { return m_description; }
71 template <typename DescriptionT = Aws::String>
72 void SetDescription(DescriptionT&& value) {
73 m_descriptionHasBeenSet = true;
74 m_description = std::forward<DescriptionT>(value);
75 }
76 template <typename DescriptionT = Aws::String>
78 SetDescription(std::forward<DescriptionT>(value));
79 return *this;
80 }
82
84
87 inline const Aws::Vector<RoutingConfigurationListItem>& GetRoutingConfiguration() const { return m_routingConfiguration; }
88 template <typename RoutingConfigurationT = Aws::Vector<RoutingConfigurationListItem>>
89 void SetRoutingConfiguration(RoutingConfigurationT&& value) {
90 m_routingConfigurationHasBeenSet = true;
91 m_routingConfiguration = std::forward<RoutingConfigurationT>(value);
92 }
93 template <typename RoutingConfigurationT = Aws::Vector<RoutingConfigurationListItem>>
95 SetRoutingConfiguration(std::forward<RoutingConfigurationT>(value));
96 return *this;
97 }
98 template <typename RoutingConfigurationT = RoutingConfigurationListItem>
100 m_routingConfigurationHasBeenSet = true;
101 m_routingConfiguration.emplace_back(std::forward<RoutingConfigurationT>(value));
102 return *this;
103 }
105
107
110 inline const Aws::Utils::DateTime& GetCreationDate() const { return m_creationDate; }
111 template <typename CreationDateT = Aws::Utils::DateTime>
112 void SetCreationDate(CreationDateT&& value) {
113 m_creationDateHasBeenSet = true;
114 m_creationDate = std::forward<CreationDateT>(value);
115 }
116 template <typename CreationDateT = Aws::Utils::DateTime>
118 SetCreationDate(std::forward<CreationDateT>(value));
119 return *this;
120 }
122
124
128 inline const Aws::Utils::DateTime& GetUpdateDate() const { return m_updateDate; }
129 template <typename UpdateDateT = Aws::Utils::DateTime>
130 void SetUpdateDate(UpdateDateT&& value) {
131 m_updateDateHasBeenSet = true;
132 m_updateDate = std::forward<UpdateDateT>(value);
133 }
134 template <typename UpdateDateT = Aws::Utils::DateTime>
136 SetUpdateDate(std::forward<UpdateDateT>(value));
137 return *this;
138 }
140
142
143 inline const Aws::String& GetRequestId() const { return m_requestId; }
144 template <typename RequestIdT = Aws::String>
145 void SetRequestId(RequestIdT&& value) {
146 m_requestIdHasBeenSet = true;
147 m_requestId = std::forward<RequestIdT>(value);
148 }
149 template <typename RequestIdT = Aws::String>
151 SetRequestId(std::forward<RequestIdT>(value));
152 return *this;
153 }
155 private:
156 Aws::String m_stateMachineAliasArn;
157
158 Aws::String m_name;
159
160 Aws::String m_description;
161
162 Aws::Vector<RoutingConfigurationListItem> m_routingConfiguration;
163
164 Aws::Utils::DateTime m_creationDate{};
165
166 Aws::Utils::DateTime m_updateDate{};
167
168 Aws::String m_requestId;
169 bool m_stateMachineAliasArnHasBeenSet = false;
170 bool m_nameHasBeenSet = false;
171 bool m_descriptionHasBeenSet = false;
172 bool m_routingConfigurationHasBeenSet = false;
173 bool m_creationDateHasBeenSet = false;
174 bool m_updateDateHasBeenSet = false;
175 bool m_requestIdHasBeenSet = false;
176};
177
178} // namespace Model
179} // namespace SFN
180} // namespace Aws
DescribeStateMachineAliasResult & WithRoutingConfiguration(RoutingConfigurationT &&value)
DescribeStateMachineAliasResult & WithRequestId(RequestIdT &&value)
DescribeStateMachineAliasResult & WithDescription(DescriptionT &&value)
AWS_SFN_API DescribeStateMachineAliasResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
DescribeStateMachineAliasResult & AddRoutingConfiguration(RoutingConfigurationT &&value)
DescribeStateMachineAliasResult & WithName(NameT &&value)
const Aws::Vector< RoutingConfigurationListItem > & GetRoutingConfiguration() const
AWS_SFN_API DescribeStateMachineAliasResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
DescribeStateMachineAliasResult & WithUpdateDate(UpdateDateT &&value)
DescribeStateMachineAliasResult & WithCreationDate(CreationDateT &&value)
DescribeStateMachineAliasResult & WithStateMachineAliasArn(StateMachineAliasArnT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue