AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
SortCriteria.h
1
6#pragma once
7#include <aws/guardduty/GuardDuty_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/guardduty/model/OrderBy.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace GuardDuty
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_GUARDDUTY_API SortCriteria() = default;
37 AWS_GUARDDUTY_API SortCriteria(Aws::Utils::Json::JsonView jsonValue);
38 AWS_GUARDDUTY_API SortCriteria& operator=(Aws::Utils::Json::JsonView jsonValue);
39 AWS_GUARDDUTY_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
47 inline const Aws::String& GetAttributeName() const { return m_attributeName; }
48 inline bool AttributeNameHasBeenSet() const { return m_attributeNameHasBeenSet; }
49 template<typename AttributeNameT = Aws::String>
50 void SetAttributeName(AttributeNameT&& value) { m_attributeNameHasBeenSet = true; m_attributeName = std::forward<AttributeNameT>(value); }
51 template<typename AttributeNameT = Aws::String>
52 SortCriteria& WithAttributeName(AttributeNameT&& value) { SetAttributeName(std::forward<AttributeNameT>(value)); return *this;}
54
56
59 inline OrderBy GetOrderBy() const { return m_orderBy; }
60 inline bool OrderByHasBeenSet() const { return m_orderByHasBeenSet; }
61 inline void SetOrderBy(OrderBy value) { m_orderByHasBeenSet = true; m_orderBy = value; }
62 inline SortCriteria& WithOrderBy(OrderBy value) { SetOrderBy(value); return *this;}
64 private:
65
66 Aws::String m_attributeName;
67 bool m_attributeNameHasBeenSet = false;
68
69 OrderBy m_orderBy{OrderBy::NOT_SET};
70 bool m_orderByHasBeenSet = false;
71 };
72
73} // namespace Model
74} // namespace GuardDuty
75} // namespace Aws
AWS_GUARDDUTY_API SortCriteria(Aws::Utils::Json::JsonView jsonValue)
AWS_GUARDDUTY_API SortCriteria & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_GUARDDUTY_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_GUARDDUTY_API SortCriteria()=default
SortCriteria & WithOrderBy(OrderBy value)
SortCriteria & WithAttributeName(AttributeNameT &&value)
const Aws::String & GetAttributeName() const
void SetAttributeName(AttributeNameT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue