AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
ListExplainabilitiesRequest.h
1
6#pragma once
7#include <aws/forecast/ForecastService_EXPORTS.h>
8#include <aws/forecast/ForecastServiceRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/memory/stl/AWSVector.h>
11#include <aws/forecast/model/Filter.h>
12#include <utility>
13
14namespace Aws
15{
16namespace ForecastService
17{
18namespace Model
19{
20
24 {
25 public:
26 AWS_FORECASTSERVICE_API ListExplainabilitiesRequest() = default;
27
28 // Service request name is the Operation name which will send this request out,
29 // each operation should has unique request name, so that we can get operation's name from this request.
30 // Note: this is not true for response, multiple operations may have the same response name,
31 // so we can not get operation's name from response.
32 inline virtual const char* GetServiceRequestName() const override { return "ListExplainabilities"; }
33
34 AWS_FORECASTSERVICE_API Aws::String SerializePayload() const override;
35
36 AWS_FORECASTSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
37
38
40
45 inline const Aws::String& GetNextToken() const { return m_nextToken; }
46 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
47 template<typename NextTokenT = Aws::String>
48 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
49 template<typename NextTokenT = Aws::String>
50 ListExplainabilitiesRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
52
54
57 inline int GetMaxResults() const { return m_maxResults; }
58 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
59 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
60 inline ListExplainabilitiesRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
62
64
76 inline const Aws::Vector<Filter>& GetFilters() const { return m_filters; }
77 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
78 template<typename FiltersT = Aws::Vector<Filter>>
79 void SetFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters = std::forward<FiltersT>(value); }
80 template<typename FiltersT = Aws::Vector<Filter>>
81 ListExplainabilitiesRequest& WithFilters(FiltersT&& value) { SetFilters(std::forward<FiltersT>(value)); return *this;}
82 template<typename FiltersT = Filter>
83 ListExplainabilitiesRequest& AddFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters.emplace_back(std::forward<FiltersT>(value)); return *this; }
85 private:
86
87 Aws::String m_nextToken;
88 bool m_nextTokenHasBeenSet = false;
89
90 int m_maxResults{0};
91 bool m_maxResultsHasBeenSet = false;
92
93 Aws::Vector<Filter> m_filters;
94 bool m_filtersHasBeenSet = false;
95 };
96
97} // namespace Model
98} // namespace ForecastService
99} // namespace Aws
ListExplainabilitiesRequest & AddFilters(FiltersT &&value)
AWS_FORECASTSERVICE_API ListExplainabilitiesRequest()=default
ListExplainabilitiesRequest & WithNextToken(NextTokenT &&value)
AWS_FORECASTSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
ListExplainabilitiesRequest & WithFilters(FiltersT &&value)
AWS_FORECASTSERVICE_API Aws::String SerializePayload() const override
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector