AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
AcceptCertificateTransferRequest.h
1
6#pragma once
7#include <aws/iot/IoT_EXPORTS.h>
8#include <aws/iot/IoTRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Http
15{
16 class URI;
17} //namespace Http
18namespace IoT
19{
20namespace Model
21{
22
30 {
31 public:
32 AWS_IOT_API AcceptCertificateTransferRequest() = default;
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 "AcceptCertificateTransfer"; }
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
50 inline const Aws::String& GetCertificateId() const { return m_certificateId; }
51 inline bool CertificateIdHasBeenSet() const { return m_certificateIdHasBeenSet; }
52 template<typename CertificateIdT = Aws::String>
53 void SetCertificateId(CertificateIdT&& value) { m_certificateIdHasBeenSet = true; m_certificateId = std::forward<CertificateIdT>(value); }
54 template<typename CertificateIdT = Aws::String>
55 AcceptCertificateTransferRequest& WithCertificateId(CertificateIdT&& value) { SetCertificateId(std::forward<CertificateIdT>(value)); return *this;}
57
59
62 inline bool GetSetAsActive() const { return m_setAsActive; }
63 inline bool SetAsActiveHasBeenSet() const { return m_setAsActiveHasBeenSet; }
64 inline void SetSetAsActive(bool value) { m_setAsActiveHasBeenSet = true; m_setAsActive = value; }
65 inline AcceptCertificateTransferRequest& WithSetAsActive(bool value) { SetSetAsActive(value); return *this;}
67 private:
68
69 Aws::String m_certificateId;
70 bool m_certificateIdHasBeenSet = false;
71
72 bool m_setAsActive{false};
73 bool m_setAsActiveHasBeenSet = false;
74 };
75
76} // namespace Model
77} // namespace IoT
78} // namespace Aws
AWS_IOT_API Aws::String SerializePayload() const override
AcceptCertificateTransferRequest & WithSetAsActive(bool value)
AcceptCertificateTransferRequest & WithCertificateId(CertificateIdT &&value)
AWS_IOT_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String