AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
KeyValuesPair.h
1
6#pragma once
7#include <aws/batch/Batch_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/memory/stl/AWSVector.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 Batch
23{
24namespace Model
25{
26
36 {
37 public:
38 AWS_BATCH_API KeyValuesPair() = default;
39 AWS_BATCH_API KeyValuesPair(Aws::Utils::Json::JsonView jsonValue);
41 AWS_BATCH_API Aws::Utils::Json::JsonValue Jsonize() const;
42
43
45
48 inline const Aws::String& GetName() const { return m_name; }
49 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
50 template<typename NameT = Aws::String>
51 void SetName(NameT&& value) { m_nameHasBeenSet = true; m_name = std::forward<NameT>(value); }
52 template<typename NameT = Aws::String>
53 KeyValuesPair& WithName(NameT&& value) { SetName(std::forward<NameT>(value)); return *this;}
55
57
60 inline const Aws::Vector<Aws::String>& GetValues() const { return m_values; }
61 inline bool ValuesHasBeenSet() const { return m_valuesHasBeenSet; }
62 template<typename ValuesT = Aws::Vector<Aws::String>>
63 void SetValues(ValuesT&& value) { m_valuesHasBeenSet = true; m_values = std::forward<ValuesT>(value); }
64 template<typename ValuesT = Aws::Vector<Aws::String>>
65 KeyValuesPair& WithValues(ValuesT&& value) { SetValues(std::forward<ValuesT>(value)); return *this;}
66 template<typename ValuesT = Aws::String>
67 KeyValuesPair& AddValues(ValuesT&& value) { m_valuesHasBeenSet = true; m_values.emplace_back(std::forward<ValuesT>(value)); return *this; }
69 private:
70
71 Aws::String m_name;
72 bool m_nameHasBeenSet = false;
73
75 bool m_valuesHasBeenSet = false;
76 };
77
78} // namespace Model
79} // namespace Batch
80} // namespace Aws
KeyValuesPair & AddValues(ValuesT &&value)
AWS_BATCH_API Aws::Utils::Json::JsonValue Jsonize() const
KeyValuesPair & WithValues(ValuesT &&value)
void SetValues(ValuesT &&value)
AWS_BATCH_API KeyValuesPair()=default
AWS_BATCH_API KeyValuesPair(Aws::Utils::Json::JsonView jsonValue)
const Aws::Vector< Aws::String > & GetValues() const
AWS_BATCH_API KeyValuesPair & operator=(Aws::Utils::Json::JsonView jsonValue)
const Aws::String & GetName() const
KeyValuesPair & WithName(NameT &&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