AWS SDK for C++

AWS SDK for C++ Version 1.11.756

Loading...
Searching...
No Matches
CreateKeySigningKeyResult.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/route53/Route53_EXPORTS.h>
9#include <aws/route53/model/ChangeInfo.h>
10#include <aws/route53/model/KeySigningKey.h>
11
12#include <utility>
13
14namespace Aws {
15template <typename RESULT_TYPE>
16class AmazonWebServiceResult;
17
18namespace Utils {
19namespace Xml {
20class XmlDocument;
21} // namespace Xml
22} // namespace Utils
23namespace Route53 {
24namespace Model {
26 public:
27 AWS_ROUTE53_API CreateKeySigningKeyResult() = default;
30
32
33 inline const ChangeInfo& GetChangeInfo() const { return m_changeInfo; }
34 template <typename ChangeInfoT = ChangeInfo>
35 void SetChangeInfo(ChangeInfoT&& value) {
36 m_changeInfoHasBeenSet = true;
37 m_changeInfo = std::forward<ChangeInfoT>(value);
38 }
39 template <typename ChangeInfoT = ChangeInfo>
41 SetChangeInfo(std::forward<ChangeInfoT>(value));
42 return *this;
43 }
45
47
50 inline const KeySigningKey& GetKeySigningKey() const { return m_keySigningKey; }
51 template <typename KeySigningKeyT = KeySigningKey>
52 void SetKeySigningKey(KeySigningKeyT&& value) {
53 m_keySigningKeyHasBeenSet = true;
54 m_keySigningKey = std::forward<KeySigningKeyT>(value);
55 }
56 template <typename KeySigningKeyT = KeySigningKey>
58 SetKeySigningKey(std::forward<KeySigningKeyT>(value));
59 return *this;
60 }
62
64
67 inline const Aws::String& GetLocation() const { return m_location; }
68 template <typename LocationT = Aws::String>
69 void SetLocation(LocationT&& value) {
70 m_locationHasBeenSet = true;
71 m_location = std::forward<LocationT>(value);
72 }
73 template <typename LocationT = Aws::String>
75 SetLocation(std::forward<LocationT>(value));
76 return *this;
77 }
79
81
82 inline const Aws::String& GetRequestId() const { return m_requestId; }
83 template <typename RequestIdT = Aws::String>
84 void SetRequestId(RequestIdT&& value) {
85 m_requestIdHasBeenSet = true;
86 m_requestId = std::forward<RequestIdT>(value);
87 }
88 template <typename RequestIdT = Aws::String>
90 SetRequestId(std::forward<RequestIdT>(value));
91 return *this;
92 }
94 private:
95 ChangeInfo m_changeInfo;
96
97 KeySigningKey m_keySigningKey;
98
99 Aws::String m_location;
100
101 Aws::String m_requestId;
102 bool m_changeInfoHasBeenSet = false;
103 bool m_keySigningKeyHasBeenSet = false;
104 bool m_locationHasBeenSet = false;
105 bool m_requestIdHasBeenSet = false;
106};
107
108} // namespace Model
109} // namespace Route53
110} // namespace Aws
CreateKeySigningKeyResult & WithKeySigningKey(KeySigningKeyT &&value)
AWS_ROUTE53_API CreateKeySigningKeyResult()=default
CreateKeySigningKeyResult & WithRequestId(RequestIdT &&value)
CreateKeySigningKeyResult & WithChangeInfo(ChangeInfoT &&value)
CreateKeySigningKeyResult & WithLocation(LocationT &&value)
AWS_ROUTE53_API CreateKeySigningKeyResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
AWS_ROUTE53_API CreateKeySigningKeyResult(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Xml::XmlDocument XmlDocument