AWS SDK for C++

AWS SDK for C++ Version 1.11.751

Loading...
Searching...
No Matches
DeleteAccountAuditConfigurationRequest.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
20 public:
22
23 // Service request name is the Operation name which will send this request out,
24 // each operation should has unique request name, so that we can get operation's name from this request.
25 // Note: this is not true for response, multiple operations may have the same response name,
26 // so we can not get operation's name from response.
27 inline virtual const char* GetServiceRequestName() const override { return "DeleteAccountAuditConfiguration"; }
28
29 AWS_IOT_API Aws::String SerializePayload() const override;
30
31 AWS_IOT_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
32
34
37 inline bool GetDeleteScheduledAudits() const { return m_deleteScheduledAudits; }
38 inline bool DeleteScheduledAuditsHasBeenSet() const { return m_deleteScheduledAuditsHasBeenSet; }
39 inline void SetDeleteScheduledAudits(bool value) {
40 m_deleteScheduledAuditsHasBeenSet = true;
41 m_deleteScheduledAudits = value;
42 }
45 return *this;
46 }
48 private:
49 bool m_deleteScheduledAudits{false};
50 bool m_deleteScheduledAuditsHasBeenSet = false;
51};
52
53} // namespace Model
54} // namespace IoT
55} // namespace Aws
AWS_IOT_API Aws::String SerializePayload() const override
AWS_IOT_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
DeleteAccountAuditConfigurationRequest & WithDeleteScheduledAudits(bool value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String