AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DeleteAuditSuppressionRequest.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 <aws/iot/model/ResourceIdentifier.h>
11#include <utility>
12
13namespace Aws
14{
15namespace IoT
16{
17namespace Model
18{
19
23 {
24 public:
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "DeleteAuditSuppression"; }
32
33 AWS_IOT_API Aws::String SerializePayload() const override;
34
35
37
38 inline const Aws::String& GetCheckName() const{ return m_checkName; }
39 inline bool CheckNameHasBeenSet() const { return m_checkNameHasBeenSet; }
40 inline void SetCheckName(const Aws::String& value) { m_checkNameHasBeenSet = true; m_checkName = value; }
41 inline void SetCheckName(Aws::String&& value) { m_checkNameHasBeenSet = true; m_checkName = std::move(value); }
42 inline void SetCheckName(const char* value) { m_checkNameHasBeenSet = true; m_checkName.assign(value); }
43 inline DeleteAuditSuppressionRequest& WithCheckName(const Aws::String& value) { SetCheckName(value); return *this;}
44 inline DeleteAuditSuppressionRequest& WithCheckName(Aws::String&& value) { SetCheckName(std::move(value)); return *this;}
45 inline DeleteAuditSuppressionRequest& WithCheckName(const char* value) { SetCheckName(value); return *this;}
47
49
50 inline const ResourceIdentifier& GetResourceIdentifier() const{ return m_resourceIdentifier; }
51 inline bool ResourceIdentifierHasBeenSet() const { return m_resourceIdentifierHasBeenSet; }
52 inline void SetResourceIdentifier(const ResourceIdentifier& value) { m_resourceIdentifierHasBeenSet = true; m_resourceIdentifier = value; }
53 inline void SetResourceIdentifier(ResourceIdentifier&& value) { m_resourceIdentifierHasBeenSet = true; m_resourceIdentifier = std::move(value); }
57 private:
58
59 Aws::String m_checkName;
60 bool m_checkNameHasBeenSet = false;
61
62 ResourceIdentifier m_resourceIdentifier;
63 bool m_resourceIdentifierHasBeenSet = false;
64 };
65
66} // namespace Model
67} // namespace IoT
68} // namespace Aws
AWS_IOT_API Aws::String SerializePayload() const override
DeleteAuditSuppressionRequest & WithResourceIdentifier(const ResourceIdentifier &value)
DeleteAuditSuppressionRequest & WithResourceIdentifier(ResourceIdentifier &&value)
DeleteAuditSuppressionRequest & WithCheckName(const char *value)
DeleteAuditSuppressionRequest & WithCheckName(Aws::String &&value)
virtual const char * GetServiceRequestName() const override
DeleteAuditSuppressionRequest & WithCheckName(const Aws::String &value)
void SetResourceIdentifier(const ResourceIdentifier &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String