AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
QueryTemporalRangeMax.h
1
6#pragma once
7#include <aws/timestream-query/TimestreamQuery_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 TimestreamQuery
22{
23namespace Model
24{
25
33 {
34 public:
35 AWS_TIMESTREAMQUERY_API QueryTemporalRangeMax();
36 AWS_TIMESTREAMQUERY_API QueryTemporalRangeMax(Aws::Utils::Json::JsonView jsonValue);
37 AWS_TIMESTREAMQUERY_API QueryTemporalRangeMax& operator=(Aws::Utils::Json::JsonView jsonValue);
38 AWS_TIMESTREAMQUERY_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
46 inline long long GetValue() const{ return m_value; }
47 inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; }
48 inline void SetValue(long long value) { m_valueHasBeenSet = true; m_value = value; }
49 inline QueryTemporalRangeMax& WithValue(long long value) { SetValue(value); return *this;}
51
53
57 inline const Aws::String& GetTableArn() const{ return m_tableArn; }
58 inline bool TableArnHasBeenSet() const { return m_tableArnHasBeenSet; }
59 inline void SetTableArn(const Aws::String& value) { m_tableArnHasBeenSet = true; m_tableArn = value; }
60 inline void SetTableArn(Aws::String&& value) { m_tableArnHasBeenSet = true; m_tableArn = std::move(value); }
61 inline void SetTableArn(const char* value) { m_tableArnHasBeenSet = true; m_tableArn.assign(value); }
62 inline QueryTemporalRangeMax& WithTableArn(const Aws::String& value) { SetTableArn(value); return *this;}
63 inline QueryTemporalRangeMax& WithTableArn(Aws::String&& value) { SetTableArn(std::move(value)); return *this;}
64 inline QueryTemporalRangeMax& WithTableArn(const char* value) { SetTableArn(value); return *this;}
66 private:
67
68 long long m_value;
69 bool m_valueHasBeenSet = false;
70
71 Aws::String m_tableArn;
72 bool m_tableArnHasBeenSet = false;
73 };
74
75} // namespace Model
76} // namespace TimestreamQuery
77} // namespace Aws
QueryTemporalRangeMax & WithTableArn(const char *value)
AWS_TIMESTREAMQUERY_API QueryTemporalRangeMax(Aws::Utils::Json::JsonView jsonValue)
AWS_TIMESTREAMQUERY_API QueryTemporalRangeMax & operator=(Aws::Utils::Json::JsonView jsonValue)
QueryTemporalRangeMax & WithTableArn(const Aws::String &value)
AWS_TIMESTREAMQUERY_API Aws::Utils::Json::JsonValue Jsonize() const
QueryTemporalRangeMax & WithTableArn(Aws::String &&value)
QueryTemporalRangeMax & WithValue(long long value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue