AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DescribeAuditSuppressionRequest.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:
25 AWS_IOT_API DescribeAuditSuppressionRequest() = default;
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 "DescribeAuditSuppression"; }
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 template<typename CheckNameT = Aws::String>
41 void SetCheckName(CheckNameT&& value) { m_checkNameHasBeenSet = true; m_checkName = std::forward<CheckNameT>(value); }
42 template<typename CheckNameT = Aws::String>
43 DescribeAuditSuppressionRequest& WithCheckName(CheckNameT&& value) { SetCheckName(std::forward<CheckNameT>(value)); return *this;}
45
47
48 inline const ResourceIdentifier& GetResourceIdentifier() const { return m_resourceIdentifier; }
49 inline bool ResourceIdentifierHasBeenSet() const { return m_resourceIdentifierHasBeenSet; }
50 template<typename ResourceIdentifierT = ResourceIdentifier>
51 void SetResourceIdentifier(ResourceIdentifierT&& value) { m_resourceIdentifierHasBeenSet = true; m_resourceIdentifier = std::forward<ResourceIdentifierT>(value); }
52 template<typename ResourceIdentifierT = ResourceIdentifier>
53 DescribeAuditSuppressionRequest& WithResourceIdentifier(ResourceIdentifierT&& value) { SetResourceIdentifier(std::forward<ResourceIdentifierT>(value)); return *this;}
55 private:
56
57 Aws::String m_checkName;
58 bool m_checkNameHasBeenSet = false;
59
60 ResourceIdentifier m_resourceIdentifier;
61 bool m_resourceIdentifierHasBeenSet = false;
62 };
63
64} // namespace Model
65} // namespace IoT
66} // namespace Aws
DescribeAuditSuppressionRequest & WithCheckName(CheckNameT &&value)
AWS_IOT_API Aws::String SerializePayload() const override
DescribeAuditSuppressionRequest & WithResourceIdentifier(ResourceIdentifierT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String