AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
ListIndicatorsResult.h
1
6#pragma once
7#include <aws/detective/Detective_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/detective/model/Indicator.h>
11#include <utility>
12
13namespace Aws
14{
15template<typename RESULT_TYPE>
16class AmazonWebServiceResult;
17
18namespace Utils
19{
20namespace Json
21{
22 class JsonValue;
23} // namespace Json
24} // namespace Utils
25namespace Detective
26{
27namespace Model
28{
30 {
31 public:
32 AWS_DETECTIVE_API ListIndicatorsResult() = default;
35
36
38
41 inline const Aws::String& GetGraphArn() const { return m_graphArn; }
42 template<typename GraphArnT = Aws::String>
43 void SetGraphArn(GraphArnT&& value) { m_graphArnHasBeenSet = true; m_graphArn = std::forward<GraphArnT>(value); }
44 template<typename GraphArnT = Aws::String>
45 ListIndicatorsResult& WithGraphArn(GraphArnT&& value) { SetGraphArn(std::forward<GraphArnT>(value)); return *this;}
47
49
52 inline const Aws::String& GetInvestigationId() const { return m_investigationId; }
53 template<typename InvestigationIdT = Aws::String>
54 void SetInvestigationId(InvestigationIdT&& value) { m_investigationIdHasBeenSet = true; m_investigationId = std::forward<InvestigationIdT>(value); }
55 template<typename InvestigationIdT = Aws::String>
56 ListIndicatorsResult& WithInvestigationId(InvestigationIdT&& value) { SetInvestigationId(std::forward<InvestigationIdT>(value)); return *this;}
58
60
67 inline const Aws::String& GetNextToken() const { return m_nextToken; }
68 template<typename NextTokenT = Aws::String>
69 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
70 template<typename NextTokenT = Aws::String>
71 ListIndicatorsResult& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
73
75
78 inline const Aws::Vector<Indicator>& GetIndicators() const { return m_indicators; }
79 template<typename IndicatorsT = Aws::Vector<Indicator>>
80 void SetIndicators(IndicatorsT&& value) { m_indicatorsHasBeenSet = true; m_indicators = std::forward<IndicatorsT>(value); }
81 template<typename IndicatorsT = Aws::Vector<Indicator>>
82 ListIndicatorsResult& WithIndicators(IndicatorsT&& value) { SetIndicators(std::forward<IndicatorsT>(value)); return *this;}
83 template<typename IndicatorsT = Indicator>
84 ListIndicatorsResult& AddIndicators(IndicatorsT&& value) { m_indicatorsHasBeenSet = true; m_indicators.emplace_back(std::forward<IndicatorsT>(value)); return *this; }
86
88
89 inline const Aws::String& GetRequestId() const { return m_requestId; }
90 template<typename RequestIdT = Aws::String>
91 void SetRequestId(RequestIdT&& value) { m_requestIdHasBeenSet = true; m_requestId = std::forward<RequestIdT>(value); }
92 template<typename RequestIdT = Aws::String>
93 ListIndicatorsResult& WithRequestId(RequestIdT&& value) { SetRequestId(std::forward<RequestIdT>(value)); return *this;}
95 private:
96
97 Aws::String m_graphArn;
98 bool m_graphArnHasBeenSet = false;
99
100 Aws::String m_investigationId;
101 bool m_investigationIdHasBeenSet = false;
102
103 Aws::String m_nextToken;
104 bool m_nextTokenHasBeenSet = false;
105
106 Aws::Vector<Indicator> m_indicators;
107 bool m_indicatorsHasBeenSet = false;
108
109 Aws::String m_requestId;
110 bool m_requestIdHasBeenSet = false;
111 };
112
113} // namespace Model
114} // namespace Detective
115} // namespace Aws
const Aws::Vector< Indicator > & GetIndicators() const
ListIndicatorsResult & WithIndicators(IndicatorsT &&value)
AWS_DETECTIVE_API ListIndicatorsResult()=default
ListIndicatorsResult & WithRequestId(RequestIdT &&value)
AWS_DETECTIVE_API ListIndicatorsResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
AWS_DETECTIVE_API ListIndicatorsResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
ListIndicatorsResult & WithInvestigationId(InvestigationIdT &&value)
void SetInvestigationId(InvestigationIdT &&value)
ListIndicatorsResult & WithGraphArn(GraphArnT &&value)
ListIndicatorsResult & AddIndicators(IndicatorsT &&value)
ListIndicatorsResult & WithNextToken(NextTokenT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue