AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
Cell.h
1
6#pragma once
7#include <aws/macie2/Macie2_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace Macie2
22{
23namespace Model
24{
25
32 class Cell
33 {
34 public:
35 AWS_MACIE2_API Cell();
36 AWS_MACIE2_API Cell(Aws::Utils::Json::JsonView jsonValue);
37 AWS_MACIE2_API Cell& operator=(Aws::Utils::Json::JsonView jsonValue);
38 AWS_MACIE2_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
47 inline const Aws::String& GetCellReference() const{ return m_cellReference; }
48 inline bool CellReferenceHasBeenSet() const { return m_cellReferenceHasBeenSet; }
49 inline void SetCellReference(const Aws::String& value) { m_cellReferenceHasBeenSet = true; m_cellReference = value; }
50 inline void SetCellReference(Aws::String&& value) { m_cellReferenceHasBeenSet = true; m_cellReference = std::move(value); }
51 inline void SetCellReference(const char* value) { m_cellReferenceHasBeenSet = true; m_cellReference.assign(value); }
52 inline Cell& WithCellReference(const Aws::String& value) { SetCellReference(value); return *this;}
53 inline Cell& WithCellReference(Aws::String&& value) { SetCellReference(std::move(value)); return *this;}
54 inline Cell& WithCellReference(const char* value) { SetCellReference(value); return *this;}
56
58
64 inline long long GetColumn() const{ return m_column; }
65 inline bool ColumnHasBeenSet() const { return m_columnHasBeenSet; }
66 inline void SetColumn(long long value) { m_columnHasBeenSet = true; m_column = value; }
67 inline Cell& WithColumn(long long value) { SetColumn(value); return *this;}
69
71
74 inline const Aws::String& GetColumnName() const{ return m_columnName; }
75 inline bool ColumnNameHasBeenSet() const { return m_columnNameHasBeenSet; }
76 inline void SetColumnName(const Aws::String& value) { m_columnNameHasBeenSet = true; m_columnName = value; }
77 inline void SetColumnName(Aws::String&& value) { m_columnNameHasBeenSet = true; m_columnName = std::move(value); }
78 inline void SetColumnName(const char* value) { m_columnNameHasBeenSet = true; m_columnName.assign(value); }
79 inline Cell& WithColumnName(const Aws::String& value) { SetColumnName(value); return *this;}
80 inline Cell& WithColumnName(Aws::String&& value) { SetColumnName(std::move(value)); return *this;}
81 inline Cell& WithColumnName(const char* value) { SetColumnName(value); return *this;}
83
85
88 inline long long GetRow() const{ return m_row; }
89 inline bool RowHasBeenSet() const { return m_rowHasBeenSet; }
90 inline void SetRow(long long value) { m_rowHasBeenSet = true; m_row = value; }
91 inline Cell& WithRow(long long value) { SetRow(value); return *this;}
93 private:
94
95 Aws::String m_cellReference;
96 bool m_cellReferenceHasBeenSet = false;
97
98 long long m_column;
99 bool m_columnHasBeenSet = false;
100
101 Aws::String m_columnName;
102 bool m_columnNameHasBeenSet = false;
103
104 long long m_row;
105 bool m_rowHasBeenSet = false;
106 };
107
108} // namespace Model
109} // namespace Macie2
110} // namespace Aws
bool ColumnNameHasBeenSet() const
Definition Cell.h:75
void SetColumn(long long value)
Definition Cell.h:66
AWS_MACIE2_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_MACIE2_API Cell(Aws::Utils::Json::JsonView jsonValue)
AWS_MACIE2_API Cell()
long long GetRow() const
Definition Cell.h:88
void SetCellReference(const Aws::String &value)
Definition Cell.h:49
bool CellReferenceHasBeenSet() const
Definition Cell.h:48
void SetColumnName(Aws::String &&value)
Definition Cell.h:77
void SetCellReference(Aws::String &&value)
Definition Cell.h:50
AWS_MACIE2_API Cell & operator=(Aws::Utils::Json::JsonView jsonValue)
Cell & WithRow(long long value)
Definition Cell.h:91
void SetRow(long long value)
Definition Cell.h:90
Cell & WithCellReference(const char *value)
Definition Cell.h:54
Cell & WithColumn(long long value)
Definition Cell.h:67
bool RowHasBeenSet() const
Definition Cell.h:89
void SetColumnName(const Aws::String &value)
Definition Cell.h:76
long long GetColumn() const
Definition Cell.h:64
bool ColumnHasBeenSet() const
Definition Cell.h:65
Cell & WithColumnName(const Aws::String &value)
Definition Cell.h:79
Cell & WithColumnName(Aws::String &&value)
Definition Cell.h:80
Cell & WithCellReference(Aws::String &&value)
Definition Cell.h:53
Cell & WithCellReference(const Aws::String &value)
Definition Cell.h:52
const Aws::String & GetColumnName() const
Definition Cell.h:74
Cell & WithColumnName(const char *value)
Definition Cell.h:81
void SetCellReference(const char *value)
Definition Cell.h:51
const Aws::String & GetCellReference() const
Definition Cell.h:47
void SetColumnName(const char *value)
Definition Cell.h:78
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue