AWS SDK for C++

AWS SDK for C++ Version 1.11.719

Loading...
Searching...
No Matches
CreateActivationResult.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/ssm/SSM_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13template <typename RESULT_TYPE>
14class AmazonWebServiceResult;
15
16namespace Utils {
17namespace Json {
18class JsonValue;
19} // namespace Json
20} // namespace Utils
21namespace SSM {
22namespace Model {
24 public:
25 AWS_SSM_API CreateActivationResult() = default;
28
30
34 inline const Aws::String& GetActivationId() const { return m_activationId; }
35 template <typename ActivationIdT = Aws::String>
36 void SetActivationId(ActivationIdT&& value) {
37 m_activationIdHasBeenSet = true;
38 m_activationId = std::forward<ActivationIdT>(value);
39 }
40 template <typename ActivationIdT = Aws::String>
41 CreateActivationResult& WithActivationId(ActivationIdT&& value) {
42 SetActivationId(std::forward<ActivationIdT>(value));
43 return *this;
44 }
46
48
52 inline const Aws::String& GetActivationCode() const { return m_activationCode; }
53 template <typename ActivationCodeT = Aws::String>
54 void SetActivationCode(ActivationCodeT&& value) {
55 m_activationCodeHasBeenSet = true;
56 m_activationCode = std::forward<ActivationCodeT>(value);
57 }
58 template <typename ActivationCodeT = Aws::String>
59 CreateActivationResult& WithActivationCode(ActivationCodeT&& value) {
60 SetActivationCode(std::forward<ActivationCodeT>(value));
61 return *this;
62 }
64
66
67 inline const Aws::String& GetRequestId() const { return m_requestId; }
68 template <typename RequestIdT = Aws::String>
69 void SetRequestId(RequestIdT&& value) {
70 m_requestIdHasBeenSet = true;
71 m_requestId = std::forward<RequestIdT>(value);
72 }
73 template <typename RequestIdT = Aws::String>
75 SetRequestId(std::forward<RequestIdT>(value));
76 return *this;
77 }
79 private:
80 Aws::String m_activationId;
81
82 Aws::String m_activationCode;
83
84 Aws::String m_requestId;
85 bool m_activationIdHasBeenSet = false;
86 bool m_activationCodeHasBeenSet = false;
87 bool m_requestIdHasBeenSet = false;
88};
89
90} // namespace Model
91} // namespace SSM
92} // namespace Aws
AWS_SSM_API CreateActivationResult()=default
CreateActivationResult & WithActivationId(ActivationIdT &&value)
CreateActivationResult & WithActivationCode(ActivationCodeT &&value)
AWS_SSM_API CreateActivationResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
void SetActivationCode(ActivationCodeT &&value)
CreateActivationResult & WithRequestId(RequestIdT &&value)
AWS_SSM_API CreateActivationResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue