AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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