AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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();
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 inline void SetAttributeName(const Aws::String& value) { m_attributeNameHasBeenSet = true; m_attributeName = value; }
50 inline void SetAttributeName(Aws::String&& value) { m_attributeNameHasBeenSet = true; m_attributeName = std::move(value); }
51 inline void SetAttributeName(const char* value) { m_attributeNameHasBeenSet = true; m_attributeName.assign(value); }
52 inline SortCriteria& WithAttributeName(const Aws::String& value) { SetAttributeName(value); return *this;}
53 inline SortCriteria& WithAttributeName(Aws::String&& value) { SetAttributeName(std::move(value)); return *this;}
54 inline SortCriteria& WithAttributeName(const char* value) { SetAttributeName(value); return *this;}
56
58
61 inline const OrderBy& GetOrderBy() const{ return m_orderBy; }
62 inline bool OrderByHasBeenSet() const { return m_orderByHasBeenSet; }
63 inline void SetOrderBy(const OrderBy& value) { m_orderByHasBeenSet = true; m_orderBy = value; }
64 inline void SetOrderBy(OrderBy&& value) { m_orderByHasBeenSet = true; m_orderBy = std::move(value); }
65 inline SortCriteria& WithOrderBy(const OrderBy& value) { SetOrderBy(value); return *this;}
66 inline SortCriteria& WithOrderBy(OrderBy&& value) { SetOrderBy(std::move(value)); return *this;}
68 private:
69
70 Aws::String m_attributeName;
71 bool m_attributeNameHasBeenSet = false;
72
73 OrderBy m_orderBy;
74 bool m_orderByHasBeenSet = false;
75 };
76
77} // namespace Model
78} // namespace GuardDuty
79} // namespace Aws
SortCriteria & WithAttributeName(const char *value)
void SetAttributeName(Aws::String &&value)
SortCriteria & WithOrderBy(OrderBy &&value)
const OrderBy & GetOrderBy() const
AWS_GUARDDUTY_API SortCriteria(Aws::Utils::Json::JsonView jsonValue)
SortCriteria & WithOrderBy(const OrderBy &value)
AWS_GUARDDUTY_API SortCriteria & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_GUARDDUTY_API Aws::Utils::Json::JsonValue Jsonize() const
SortCriteria & WithAttributeName(Aws::String &&value)
void SetOrderBy(const OrderBy &value)
void SetAttributeName(const Aws::String &value)
SortCriteria & WithAttributeName(const Aws::String &value)
void SetAttributeName(const char *value)
const Aws::String & GetAttributeName() const
void SetOrderBy(OrderBy &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue