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/accessanalyzer/AccessAnalyzer_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/accessanalyzer/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 AccessAnalyzer
23{
24namespace Model
25{
26
33 {
34 public:
35 AWS_ACCESSANALYZER_API SortCriteria();
36 AWS_ACCESSANALYZER_API SortCriteria(Aws::Utils::Json::JsonView jsonValue);
37 AWS_ACCESSANALYZER_API SortCriteria& operator=(Aws::Utils::Json::JsonView jsonValue);
38 AWS_ACCESSANALYZER_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline const Aws::String& GetAttributeName() const{ return m_attributeName; }
46 inline bool AttributeNameHasBeenSet() const { return m_attributeNameHasBeenSet; }
47 inline void SetAttributeName(const Aws::String& value) { m_attributeNameHasBeenSet = true; m_attributeName = value; }
48 inline void SetAttributeName(Aws::String&& value) { m_attributeNameHasBeenSet = true; m_attributeName = std::move(value); }
49 inline void SetAttributeName(const char* value) { m_attributeNameHasBeenSet = true; m_attributeName.assign(value); }
50 inline SortCriteria& WithAttributeName(const Aws::String& value) { SetAttributeName(value); return *this;}
51 inline SortCriteria& WithAttributeName(Aws::String&& value) { SetAttributeName(std::move(value)); return *this;}
52 inline SortCriteria& WithAttributeName(const char* value) { SetAttributeName(value); return *this;}
54
56
59 inline const OrderBy& GetOrderBy() const{ return m_orderBy; }
60 inline bool OrderByHasBeenSet() const { return m_orderByHasBeenSet; }
61 inline void SetOrderBy(const OrderBy& value) { m_orderByHasBeenSet = true; m_orderBy = value; }
62 inline void SetOrderBy(OrderBy&& value) { m_orderByHasBeenSet = true; m_orderBy = std::move(value); }
63 inline SortCriteria& WithOrderBy(const OrderBy& value) { SetOrderBy(value); return *this;}
64 inline SortCriteria& WithOrderBy(OrderBy&& value) { SetOrderBy(std::move(value)); return *this;}
66 private:
67
68 Aws::String m_attributeName;
69 bool m_attributeNameHasBeenSet = false;
70
71 OrderBy m_orderBy;
72 bool m_orderByHasBeenSet = false;
73 };
74
75} // namespace Model
76} // namespace AccessAnalyzer
77} // namespace Aws
AWS_ACCESSANALYZER_API SortCriteria()
AWS_ACCESSANALYZER_API SortCriteria & operator=(Aws::Utils::Json::JsonView jsonValue)
SortCriteria & WithAttributeName(Aws::String &&value)
AWS_ACCESSANALYZER_API SortCriteria(Aws::Utils::Json::JsonView jsonValue)
SortCriteria & WithOrderBy(OrderBy &&value)
void SetAttributeName(const Aws::String &value)
void SetAttributeName(Aws::String &&value)
void SetAttributeName(const char *value)
SortCriteria & WithAttributeName(const Aws::String &value)
void SetOrderBy(const OrderBy &value)
const Aws::String & GetAttributeName() const
SortCriteria & WithOrderBy(const OrderBy &value)
SortCriteria & WithAttributeName(const char *value)
AWS_ACCESSANALYZER_API Aws::Utils::Json::JsonValue Jsonize() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue