AWS SDK for C++

AWS SDK for C++ Version 1.11.685

Loading...
Searching...
No Matches
InventoryRetrievalJobInput.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/glacier/Glacier_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace Glacier {
20namespace Model {
21
29 public:
30 AWS_GLACIER_API InventoryRetrievalJobInput() = default;
33 AWS_GLACIER_API Aws::Utils::Json::JsonValue Jsonize() const;
34
36
41 inline const Aws::String& GetStartDate() const { return m_startDate; }
42 inline bool StartDateHasBeenSet() const { return m_startDateHasBeenSet; }
43 template <typename StartDateT = Aws::String>
44 void SetStartDate(StartDateT&& value) {
45 m_startDateHasBeenSet = true;
46 m_startDate = std::forward<StartDateT>(value);
47 }
48 template <typename StartDateT = Aws::String>
50 SetStartDate(std::forward<StartDateT>(value));
51 return *this;
52 }
54
56
61 inline const Aws::String& GetEndDate() const { return m_endDate; }
62 inline bool EndDateHasBeenSet() const { return m_endDateHasBeenSet; }
63 template <typename EndDateT = Aws::String>
64 void SetEndDate(EndDateT&& value) {
65 m_endDateHasBeenSet = true;
66 m_endDate = std::forward<EndDateT>(value);
67 }
68 template <typename EndDateT = Aws::String>
70 SetEndDate(std::forward<EndDateT>(value));
71 return *this;
72 }
74
76
80 inline const Aws::String& GetLimit() const { return m_limit; }
81 inline bool LimitHasBeenSet() const { return m_limitHasBeenSet; }
82 template <typename LimitT = Aws::String>
83 void SetLimit(LimitT&& value) {
84 m_limitHasBeenSet = true;
85 m_limit = std::forward<LimitT>(value);
86 }
87 template <typename LimitT = Aws::String>
89 SetLimit(std::forward<LimitT>(value));
90 return *this;
91 }
93
95
101 inline const Aws::String& GetMarker() const { return m_marker; }
102 inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; }
103 template <typename MarkerT = Aws::String>
104 void SetMarker(MarkerT&& value) {
105 m_markerHasBeenSet = true;
106 m_marker = std::forward<MarkerT>(value);
107 }
108 template <typename MarkerT = Aws::String>
110 SetMarker(std::forward<MarkerT>(value));
111 return *this;
112 }
114 private:
115 Aws::String m_startDate;
116 bool m_startDateHasBeenSet = false;
117
118 Aws::String m_endDate;
119 bool m_endDateHasBeenSet = false;
120
121 Aws::String m_limit;
122 bool m_limitHasBeenSet = false;
123
124 Aws::String m_marker;
125 bool m_markerHasBeenSet = false;
126};
127
128} // namespace Model
129} // namespace Glacier
130} // namespace Aws
AWS_GLACIER_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_GLACIER_API InventoryRetrievalJobInput()=default
InventoryRetrievalJobInput & WithStartDate(StartDateT &&value)
AWS_GLACIER_API InventoryRetrievalJobInput & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_GLACIER_API InventoryRetrievalJobInput(Aws::Utils::Json::JsonView jsonValue)
InventoryRetrievalJobInput & WithEndDate(EndDateT &&value)
InventoryRetrievalJobInput & WithMarker(MarkerT &&value)
InventoryRetrievalJobInput & WithLimit(LimitT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue