AWS SDK for C++

AWS SDK for C++ Version 1.11.686

Loading...
Searching...
No Matches
CreateKeysAndCertificateRequest.h
1
6#pragma once
7#include <aws/iot/IoTRequest.h>
8#include <aws/iot/IoT_EXPORTS.h>
9
10namespace Aws {
11namespace Http {
12class URI;
13} // namespace Http
14namespace IoT {
15namespace Model {
16
26 public:
27 AWS_IOT_API CreateKeysAndCertificateRequest() = default;
28
29 // Service request name is the Operation name which will send this request out,
30 // each operation should has unique request name, so that we can get operation's name from this request.
31 // Note: this is not true for response, multiple operations may have the same response name,
32 // so we can not get operation's name from response.
33 inline virtual const char* GetServiceRequestName() const override { return "CreateKeysAndCertificate"; }
34
35 AWS_IOT_API Aws::String SerializePayload() const override;
36
37 AWS_IOT_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
38
40
43 inline bool GetSetAsActive() const { return m_setAsActive; }
44 inline bool SetAsActiveHasBeenSet() const { return m_setAsActiveHasBeenSet; }
45 inline void SetSetAsActive(bool value) {
46 m_setAsActiveHasBeenSet = true;
47 m_setAsActive = value;
48 }
50 SetSetAsActive(value);
51 return *this;
52 }
54 private:
55 bool m_setAsActive{false};
56 bool m_setAsActiveHasBeenSet = false;
57};
58
59} // namespace Model
60} // namespace IoT
61} // namespace Aws
CreateKeysAndCertificateRequest & WithSetAsActive(bool value)
AWS_IOT_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
AWS_IOT_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String