AWS SDK for C++

AWS SDK for C++ Version 1.11.686

Loading...
Searching...
No Matches
DeleteAuditSuppressionRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/iot/IoTRequest.h>
9#include <aws/iot/IoT_EXPORTS.h>
10#include <aws/iot/model/ResourceIdentifier.h>
11
12#include <utility>
13
14namespace Aws {
15namespace IoT {
16namespace Model {
17
21 public:
22 AWS_IOT_API DeleteAuditSuppressionRequest() = default;
23
24 // Service request name is the Operation name which will send this request out,
25 // each operation should has unique request name, so that we can get operation's name from this request.
26 // Note: this is not true for response, multiple operations may have the same response name,
27 // so we can not get operation's name from response.
28 inline virtual const char* GetServiceRequestName() const override { return "DeleteAuditSuppression"; }
29
30 AWS_IOT_API Aws::String SerializePayload() const override;
31
33
34 inline const Aws::String& GetCheckName() const { return m_checkName; }
35 inline bool CheckNameHasBeenSet() const { return m_checkNameHasBeenSet; }
36 template <typename CheckNameT = Aws::String>
37 void SetCheckName(CheckNameT&& value) {
38 m_checkNameHasBeenSet = true;
39 m_checkName = std::forward<CheckNameT>(value);
40 }
41 template <typename CheckNameT = Aws::String>
43 SetCheckName(std::forward<CheckNameT>(value));
44 return *this;
45 }
47
49
50 inline const ResourceIdentifier& GetResourceIdentifier() const { return m_resourceIdentifier; }
51 inline bool ResourceIdentifierHasBeenSet() const { return m_resourceIdentifierHasBeenSet; }
52 template <typename ResourceIdentifierT = ResourceIdentifier>
53 void SetResourceIdentifier(ResourceIdentifierT&& value) {
54 m_resourceIdentifierHasBeenSet = true;
55 m_resourceIdentifier = std::forward<ResourceIdentifierT>(value);
56 }
57 template <typename ResourceIdentifierT = ResourceIdentifier>
59 SetResourceIdentifier(std::forward<ResourceIdentifierT>(value));
60 return *this;
61 }
63 private:
64 Aws::String m_checkName;
65 bool m_checkNameHasBeenSet = false;
66
67 ResourceIdentifier m_resourceIdentifier;
68 bool m_resourceIdentifierHasBeenSet = false;
69};
70
71} // namespace Model
72} // namespace IoT
73} // namespace Aws
DeleteAuditSuppressionRequest & WithCheckName(CheckNameT &&value)
AWS_IOT_API Aws::String SerializePayload() const override
DeleteAuditSuppressionRequest & WithResourceIdentifier(ResourceIdentifierT &&value)
virtual const char * GetServiceRequestName() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String