AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
MatchRange.h
1
6#pragma once
7#include <aws/appmesh/AppMesh_EXPORTS.h>
8
9namespace Aws
10{
11namespace Utils
12{
13namespace Json
14{
15 class JsonValue;
16 class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace AppMesh
20{
21namespace Model
22{
23
33 {
34 public:
35 AWS_APPMESH_API MatchRange();
36 AWS_APPMESH_API MatchRange(Aws::Utils::Json::JsonView jsonValue);
37 AWS_APPMESH_API MatchRange& operator=(Aws::Utils::Json::JsonView jsonValue);
38 AWS_APPMESH_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline long long GetEnd() const{ return m_end; }
46 inline bool EndHasBeenSet() const { return m_endHasBeenSet; }
47 inline void SetEnd(long long value) { m_endHasBeenSet = true; m_end = value; }
48 inline MatchRange& WithEnd(long long value) { SetEnd(value); return *this;}
50
52
55 inline long long GetStart() const{ return m_start; }
56 inline bool StartHasBeenSet() const { return m_startHasBeenSet; }
57 inline void SetStart(long long value) { m_startHasBeenSet = true; m_start = value; }
58 inline MatchRange& WithStart(long long value) { SetStart(value); return *this;}
60 private:
61
62 long long m_end;
63 bool m_endHasBeenSet = false;
64
65 long long m_start;
66 bool m_startHasBeenSet = false;
67 };
68
69} // namespace Model
70} // namespace AppMesh
71} // namespace Aws
AWS_APPMESH_API Aws::Utils::Json::JsonValue Jsonize() const
void SetStart(long long value)
Definition MatchRange.h:57
AWS_APPMESH_API MatchRange & operator=(Aws::Utils::Json::JsonView jsonValue)
MatchRange & WithStart(long long value)
Definition MatchRange.h:58
MatchRange & WithEnd(long long value)
Definition MatchRange.h:48
AWS_APPMESH_API MatchRange(Aws::Utils::Json::JsonView jsonValue)
void SetEnd(long long value)
Definition MatchRange.h:47
Aws::Utils::Json::JsonValue JsonValue