AWS SDK for C++

AWS SDK for C++ Version 1.11.751

Loading...
Searching...
No Matches
DeleteThreatIntelSetRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/guardduty/GuardDutyRequest.h>
9#include <aws/guardduty/GuardDuty_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace GuardDuty {
15namespace Model {
16
20 public:
21 AWS_GUARDDUTY_API DeleteThreatIntelSetRequest() = default;
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 "DeleteThreatIntelSet"; }
28
29 AWS_GUARDDUTY_API Aws::String SerializePayload() const override;
30
32
39 inline const Aws::String& GetDetectorId() const { return m_detectorId; }
40 inline bool DetectorIdHasBeenSet() const { return m_detectorIdHasBeenSet; }
41 template <typename DetectorIdT = Aws::String>
42 void SetDetectorId(DetectorIdT&& value) {
43 m_detectorIdHasBeenSet = true;
44 m_detectorId = std::forward<DetectorIdT>(value);
45 }
46 template <typename DetectorIdT = Aws::String>
48 SetDetectorId(std::forward<DetectorIdT>(value));
49 return *this;
50 }
52
54
57 inline const Aws::String& GetThreatIntelSetId() const { return m_threatIntelSetId; }
58 inline bool ThreatIntelSetIdHasBeenSet() const { return m_threatIntelSetIdHasBeenSet; }
59 template <typename ThreatIntelSetIdT = Aws::String>
60 void SetThreatIntelSetId(ThreatIntelSetIdT&& value) {
61 m_threatIntelSetIdHasBeenSet = true;
62 m_threatIntelSetId = std::forward<ThreatIntelSetIdT>(value);
63 }
64 template <typename ThreatIntelSetIdT = Aws::String>
66 SetThreatIntelSetId(std::forward<ThreatIntelSetIdT>(value));
67 return *this;
68 }
70 private:
71 Aws::String m_detectorId;
72
73 Aws::String m_threatIntelSetId;
74 bool m_detectorIdHasBeenSet = false;
75 bool m_threatIntelSetIdHasBeenSet = false;
76};
77
78} // namespace Model
79} // namespace GuardDuty
80} // namespace Aws
virtual const char * GetServiceRequestName() const override
AWS_GUARDDUTY_API DeleteThreatIntelSetRequest()=default
DeleteThreatIntelSetRequest & WithThreatIntelSetId(ThreatIntelSetIdT &&value)
DeleteThreatIntelSetRequest & WithDetectorId(DetectorIdT &&value)
AWS_GUARDDUTY_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String