AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
PathToObjectIdentifiers.h
1
6#pragma once
7#include <aws/clouddirectory/CloudDirectory_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 CloudDirectory
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_CLOUDDIRECTORY_API PathToObjectIdentifiers();
37 AWS_CLOUDDIRECTORY_API PathToObjectIdentifiers(Aws::Utils::Json::JsonView jsonValue);
39 AWS_CLOUDDIRECTORY_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
47 inline const Aws::String& GetPath() const{ return m_path; }
48 inline bool PathHasBeenSet() const { return m_pathHasBeenSet; }
49 inline void SetPath(const Aws::String& value) { m_pathHasBeenSet = true; m_path = value; }
50 inline void SetPath(Aws::String&& value) { m_pathHasBeenSet = true; m_path = std::move(value); }
51 inline void SetPath(const char* value) { m_pathHasBeenSet = true; m_path.assign(value); }
52 inline PathToObjectIdentifiers& WithPath(const Aws::String& value) { SetPath(value); return *this;}
53 inline PathToObjectIdentifiers& WithPath(Aws::String&& value) { SetPath(std::move(value)); return *this;}
54 inline PathToObjectIdentifiers& WithPath(const char* value) { SetPath(value); return *this;}
56
58
62 inline const Aws::Vector<Aws::String>& GetObjectIdentifiers() const{ return m_objectIdentifiers; }
63 inline bool ObjectIdentifiersHasBeenSet() const { return m_objectIdentifiersHasBeenSet; }
64 inline void SetObjectIdentifiers(const Aws::Vector<Aws::String>& value) { m_objectIdentifiersHasBeenSet = true; m_objectIdentifiers = value; }
65 inline void SetObjectIdentifiers(Aws::Vector<Aws::String>&& value) { m_objectIdentifiersHasBeenSet = true; m_objectIdentifiers = std::move(value); }
68 inline PathToObjectIdentifiers& AddObjectIdentifiers(const Aws::String& value) { m_objectIdentifiersHasBeenSet = true; m_objectIdentifiers.push_back(value); return *this; }
69 inline PathToObjectIdentifiers& AddObjectIdentifiers(Aws::String&& value) { m_objectIdentifiersHasBeenSet = true; m_objectIdentifiers.push_back(std::move(value)); return *this; }
70 inline PathToObjectIdentifiers& AddObjectIdentifiers(const char* value) { m_objectIdentifiersHasBeenSet = true; m_objectIdentifiers.push_back(value); return *this; }
72 private:
73
74 Aws::String m_path;
75 bool m_pathHasBeenSet = false;
76
77 Aws::Vector<Aws::String> m_objectIdentifiers;
78 bool m_objectIdentifiersHasBeenSet = false;
79 };
80
81} // namespace Model
82} // namespace CloudDirectory
83} // namespace Aws
const Aws::Vector< Aws::String > & GetObjectIdentifiers() const
AWS_CLOUDDIRECTORY_API PathToObjectIdentifiers(Aws::Utils::Json::JsonView jsonValue)
PathToObjectIdentifiers & WithPath(const char *value)
AWS_CLOUDDIRECTORY_API PathToObjectIdentifiers & operator=(Aws::Utils::Json::JsonView jsonValue)
PathToObjectIdentifiers & AddObjectIdentifiers(Aws::String &&value)
PathToObjectIdentifiers & WithObjectIdentifiers(Aws::Vector< Aws::String > &&value)
PathToObjectIdentifiers & WithPath(Aws::String &&value)
PathToObjectIdentifiers & AddObjectIdentifiers(const Aws::String &value)
PathToObjectIdentifiers & WithObjectIdentifiers(const Aws::Vector< Aws::String > &value)
AWS_CLOUDDIRECTORY_API Aws::Utils::Json::JsonValue Jsonize() const
PathToObjectIdentifiers & WithPath(const Aws::String &value)
PathToObjectIdentifiers & AddObjectIdentifiers(const char *value)
void SetObjectIdentifiers(const Aws::Vector< Aws::String > &value)
void SetObjectIdentifiers(Aws::Vector< Aws::String > &&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