AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
CreateSampleFindingsRequest.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 CreateSampleFindingsRequest();
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 "CreateSampleFindings"; }
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 CreateSampleFindingsRequest& WithDetectorId(const Aws::String& value) { SetDetectorId(value); return *this;}
46 inline CreateSampleFindingsRequest& WithDetectorId(Aws::String&& value) { SetDetectorId(std::move(value)); return *this;}
47 inline CreateSampleFindingsRequest& WithDetectorId(const char* value) { SetDetectorId(value); return *this;}
49
51
54 inline const Aws::Vector<Aws::String>& GetFindingTypes() const{ return m_findingTypes; }
55 inline bool FindingTypesHasBeenSet() const { return m_findingTypesHasBeenSet; }
56 inline void SetFindingTypes(const Aws::Vector<Aws::String>& value) { m_findingTypesHasBeenSet = true; m_findingTypes = value; }
57 inline void SetFindingTypes(Aws::Vector<Aws::String>&& value) { m_findingTypesHasBeenSet = true; m_findingTypes = std::move(value); }
59 inline CreateSampleFindingsRequest& WithFindingTypes(Aws::Vector<Aws::String>&& value) { SetFindingTypes(std::move(value)); return *this;}
60 inline CreateSampleFindingsRequest& AddFindingTypes(const Aws::String& value) { m_findingTypesHasBeenSet = true; m_findingTypes.push_back(value); return *this; }
61 inline CreateSampleFindingsRequest& AddFindingTypes(Aws::String&& value) { m_findingTypesHasBeenSet = true; m_findingTypes.push_back(std::move(value)); return *this; }
62 inline CreateSampleFindingsRequest& AddFindingTypes(const char* value) { m_findingTypesHasBeenSet = true; m_findingTypes.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_findingTypes;
70 bool m_findingTypesHasBeenSet = false;
71 };
72
73} // namespace Model
74} // namespace GuardDuty
75} // namespace Aws
void SetFindingTypes(Aws::Vector< Aws::String > &&value)
const Aws::Vector< Aws::String > & GetFindingTypes() const
CreateSampleFindingsRequest & AddFindingTypes(const Aws::String &value)
CreateSampleFindingsRequest & WithDetectorId(const char *value)
CreateSampleFindingsRequest & WithDetectorId(const Aws::String &value)
CreateSampleFindingsRequest & WithFindingTypes(const Aws::Vector< Aws::String > &value)
virtual const char * GetServiceRequestName() const override
AWS_GUARDDUTY_API Aws::String SerializePayload() const override
CreateSampleFindingsRequest & AddFindingTypes(const char *value)
CreateSampleFindingsRequest & AddFindingTypes(Aws::String &&value)
CreateSampleFindingsRequest & WithFindingTypes(Aws::Vector< Aws::String > &&value)
void SetFindingTypes(const Aws::Vector< Aws::String > &value)
CreateSampleFindingsRequest & WithDetectorId(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector