AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
UnarchiveFindingsRequest.h
1
6#pragma once
7#include <aws/guardduty/GuardDuty_EXPORTS.h>
8#include <aws/guardduty/GuardDutyRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/memory/stl/AWSVector.h>
11#include <utility>
12
13namespace Aws
14{
15namespace GuardDuty
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_GUARDDUTY_API UnarchiveFindingsRequest();
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 "UnarchiveFindings"; }
32
33 AWS_GUARDDUTY_API Aws::String SerializePayload() const override;
34
35
37
40 inline const Aws::String& GetDetectorId() const{ return m_detectorId; }
41 inline bool DetectorIdHasBeenSet() const { return m_detectorIdHasBeenSet; }
42 inline void SetDetectorId(const Aws::String& value) { m_detectorIdHasBeenSet = true; m_detectorId = value; }
43 inline void SetDetectorId(Aws::String&& value) { m_detectorIdHasBeenSet = true; m_detectorId = std::move(value); }
44 inline void SetDetectorId(const char* value) { m_detectorIdHasBeenSet = true; m_detectorId.assign(value); }
45 inline UnarchiveFindingsRequest& WithDetectorId(const Aws::String& value) { SetDetectorId(value); return *this;}
46 inline UnarchiveFindingsRequest& WithDetectorId(Aws::String&& value) { SetDetectorId(std::move(value)); return *this;}
47 inline UnarchiveFindingsRequest& WithDetectorId(const char* value) { SetDetectorId(value); return *this;}
49
51
54 inline const Aws::Vector<Aws::String>& GetFindingIds() const{ return m_findingIds; }
55 inline bool FindingIdsHasBeenSet() const { return m_findingIdsHasBeenSet; }
56 inline void SetFindingIds(const Aws::Vector<Aws::String>& value) { m_findingIdsHasBeenSet = true; m_findingIds = value; }
57 inline void SetFindingIds(Aws::Vector<Aws::String>&& value) { m_findingIdsHasBeenSet = true; m_findingIds = std::move(value); }
59 inline UnarchiveFindingsRequest& WithFindingIds(Aws::Vector<Aws::String>&& value) { SetFindingIds(std::move(value)); return *this;}
60 inline UnarchiveFindingsRequest& AddFindingIds(const Aws::String& value) { m_findingIdsHasBeenSet = true; m_findingIds.push_back(value); return *this; }
61 inline UnarchiveFindingsRequest& AddFindingIds(Aws::String&& value) { m_findingIdsHasBeenSet = true; m_findingIds.push_back(std::move(value)); return *this; }
62 inline UnarchiveFindingsRequest& AddFindingIds(const char* value) { m_findingIdsHasBeenSet = true; m_findingIds.push_back(value); return *this; }
64 private:
65
66 Aws::String m_detectorId;
67 bool m_detectorIdHasBeenSet = false;
68
69 Aws::Vector<Aws::String> m_findingIds;
70 bool m_findingIdsHasBeenSet = false;
71 };
72
73} // namespace Model
74} // namespace GuardDuty
75} // namespace Aws
UnarchiveFindingsRequest & AddFindingIds(const char *value)
UnarchiveFindingsRequest & WithDetectorId(const Aws::String &value)
UnarchiveFindingsRequest & WithDetectorId(Aws::String &&value)
UnarchiveFindingsRequest & AddFindingIds(Aws::String &&value)
void SetFindingIds(const Aws::Vector< Aws::String > &value)
UnarchiveFindingsRequest & WithDetectorId(const char *value)
void SetFindingIds(Aws::Vector< Aws::String > &&value)
UnarchiveFindingsRequest & WithFindingIds(const Aws::Vector< Aws::String > &value)
AWS_GUARDDUTY_API Aws::String SerializePayload() const override
UnarchiveFindingsRequest & AddFindingIds(const Aws::String &value)
UnarchiveFindingsRequest & WithFindingIds(Aws::Vector< Aws::String > &&value)
virtual const char * GetServiceRequestName() const override
const Aws::Vector< Aws::String > & GetFindingIds() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector