AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
EdgeStructure.h
1
6#pragma once
7#include <aws/neptune-graph/NeptuneGraph_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/core/utils/memory/stl/AWSString.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 NeptuneGraph
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_NEPTUNEGRAPH_API EdgeStructure();
37 AWS_NEPTUNEGRAPH_API EdgeStructure(Aws::Utils::Json::JsonView jsonValue);
38 AWS_NEPTUNEGRAPH_API EdgeStructure& operator=(Aws::Utils::Json::JsonView jsonValue);
39 AWS_NEPTUNEGRAPH_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline long long GetCount() const{ return m_count; }
47 inline bool CountHasBeenSet() const { return m_countHasBeenSet; }
48 inline void SetCount(long long value) { m_countHasBeenSet = true; m_count = value; }
49 inline EdgeStructure& WithCount(long long value) { SetCount(value); return *this;}
51
53
56 inline const Aws::Vector<Aws::String>& GetEdgeProperties() const{ return m_edgeProperties; }
57 inline bool EdgePropertiesHasBeenSet() const { return m_edgePropertiesHasBeenSet; }
58 inline void SetEdgeProperties(const Aws::Vector<Aws::String>& value) { m_edgePropertiesHasBeenSet = true; m_edgeProperties = value; }
59 inline void SetEdgeProperties(Aws::Vector<Aws::String>&& value) { m_edgePropertiesHasBeenSet = true; m_edgeProperties = std::move(value); }
60 inline EdgeStructure& WithEdgeProperties(const Aws::Vector<Aws::String>& value) { SetEdgeProperties(value); return *this;}
61 inline EdgeStructure& WithEdgeProperties(Aws::Vector<Aws::String>&& value) { SetEdgeProperties(std::move(value)); return *this;}
62 inline EdgeStructure& AddEdgeProperties(const Aws::String& value) { m_edgePropertiesHasBeenSet = true; m_edgeProperties.push_back(value); return *this; }
63 inline EdgeStructure& AddEdgeProperties(Aws::String&& value) { m_edgePropertiesHasBeenSet = true; m_edgeProperties.push_back(std::move(value)); return *this; }
64 inline EdgeStructure& AddEdgeProperties(const char* value) { m_edgePropertiesHasBeenSet = true; m_edgeProperties.push_back(value); return *this; }
66 private:
67
68 long long m_count;
69 bool m_countHasBeenSet = false;
70
71 Aws::Vector<Aws::String> m_edgeProperties;
72 bool m_edgePropertiesHasBeenSet = false;
73 };
74
75} // namespace Model
76} // namespace NeptuneGraph
77} // namespace Aws
EdgeStructure & AddEdgeProperties(Aws::String &&value)
EdgeStructure & AddEdgeProperties(const Aws::String &value)
EdgeStructure & WithCount(long long value)
AWS_NEPTUNEGRAPH_API EdgeStructure()
const Aws::Vector< Aws::String > & GetEdgeProperties() const
void SetEdgeProperties(const Aws::Vector< Aws::String > &value)
AWS_NEPTUNEGRAPH_API EdgeStructure & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_NEPTUNEGRAPH_API EdgeStructure(Aws::Utils::Json::JsonView jsonValue)
AWS_NEPTUNEGRAPH_API Aws::Utils::Json::JsonValue Jsonize() const
void SetEdgeProperties(Aws::Vector< Aws::String > &&value)
EdgeStructure & WithEdgeProperties(Aws::Vector< Aws::String > &&value)
EdgeStructure & WithEdgeProperties(const Aws::Vector< Aws::String > &value)
EdgeStructure & AddEdgeProperties(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue