AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
CreateKeySigningKeyResult.h
1
6#pragma once
7#include <aws/route53/Route53_EXPORTS.h>
8#include <aws/route53/model/ChangeInfo.h>
9#include <aws/route53/model/KeySigningKey.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <utility>
12
13namespace Aws
14{
15template<typename RESULT_TYPE>
16class AmazonWebServiceResult;
17
18namespace Utils
19{
20namespace Xml
21{
22 class XmlDocument;
23} // namespace Xml
24} // namespace Utils
25namespace Route53
26{
27namespace Model
28{
30 {
31 public:
32 AWS_ROUTE53_API CreateKeySigningKeyResult();
35
36
38
39 inline const ChangeInfo& GetChangeInfo() const{ return m_changeInfo; }
40 inline void SetChangeInfo(const ChangeInfo& value) { m_changeInfo = value; }
41 inline void SetChangeInfo(ChangeInfo&& value) { m_changeInfo = std::move(value); }
42 inline CreateKeySigningKeyResult& WithChangeInfo(const ChangeInfo& value) { SetChangeInfo(value); return *this;}
43 inline CreateKeySigningKeyResult& WithChangeInfo(ChangeInfo&& value) { SetChangeInfo(std::move(value)); return *this;}
45
47
50 inline const KeySigningKey& GetKeySigningKey() const{ return m_keySigningKey; }
51 inline void SetKeySigningKey(const KeySigningKey& value) { m_keySigningKey = value; }
52 inline void SetKeySigningKey(KeySigningKey&& value) { m_keySigningKey = std::move(value); }
53 inline CreateKeySigningKeyResult& WithKeySigningKey(const KeySigningKey& value) { SetKeySigningKey(value); return *this;}
54 inline CreateKeySigningKeyResult& WithKeySigningKey(KeySigningKey&& value) { SetKeySigningKey(std::move(value)); return *this;}
56
58
61 inline const Aws::String& GetLocation() const{ return m_location; }
62 inline void SetLocation(const Aws::String& value) { m_location = value; }
63 inline void SetLocation(Aws::String&& value) { m_location = std::move(value); }
64 inline void SetLocation(const char* value) { m_location.assign(value); }
65 inline CreateKeySigningKeyResult& WithLocation(const Aws::String& value) { SetLocation(value); return *this;}
66 inline CreateKeySigningKeyResult& WithLocation(Aws::String&& value) { SetLocation(std::move(value)); return *this;}
67 inline CreateKeySigningKeyResult& WithLocation(const char* value) { SetLocation(value); return *this;}
69
71
72 inline const Aws::String& GetRequestId() const{ return m_requestId; }
73 inline void SetRequestId(const Aws::String& value) { m_requestId = value; }
74 inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); }
75 inline void SetRequestId(const char* value) { m_requestId.assign(value); }
76 inline CreateKeySigningKeyResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;}
77 inline CreateKeySigningKeyResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;}
78 inline CreateKeySigningKeyResult& WithRequestId(const char* value) { SetRequestId(value); return *this;}
80 private:
81
82 ChangeInfo m_changeInfo;
83
84 KeySigningKey m_keySigningKey;
85
86 Aws::String m_location;
87
88 Aws::String m_requestId;
89 };
90
91} // namespace Model
92} // namespace Route53
93} // namespace Aws
CreateKeySigningKeyResult & WithChangeInfo(const ChangeInfo &value)
CreateKeySigningKeyResult & WithKeySigningKey(KeySigningKey &&value)
CreateKeySigningKeyResult & WithRequestId(const Aws::String &value)
CreateKeySigningKeyResult & WithLocation(const Aws::String &value)
CreateKeySigningKeyResult & WithLocation(const char *value)
CreateKeySigningKeyResult & WithChangeInfo(ChangeInfo &&value)
CreateKeySigningKeyResult & WithLocation(Aws::String &&value)
CreateKeySigningKeyResult & WithRequestId(Aws::String &&value)
AWS_ROUTE53_API CreateKeySigningKeyResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
CreateKeySigningKeyResult & WithKeySigningKey(const KeySigningKey &value)
AWS_ROUTE53_API CreateKeySigningKeyResult(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
CreateKeySigningKeyResult & WithRequestId(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Xml::XmlDocument XmlDocument