AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
EksHostPath.h
1
6#pragma once
7#include <aws/batch/Batch_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 Batch
22{
23namespace Model
24{
25
36 {
37 public:
38 AWS_BATCH_API EksHostPath();
39 AWS_BATCH_API EksHostPath(Aws::Utils::Json::JsonView jsonValue);
41 AWS_BATCH_API Aws::Utils::Json::JsonValue Jsonize() const;
42
43
45
49 inline const Aws::String& GetPath() const{ return m_path; }
50 inline bool PathHasBeenSet() const { return m_pathHasBeenSet; }
51 inline void SetPath(const Aws::String& value) { m_pathHasBeenSet = true; m_path = value; }
52 inline void SetPath(Aws::String&& value) { m_pathHasBeenSet = true; m_path = std::move(value); }
53 inline void SetPath(const char* value) { m_pathHasBeenSet = true; m_path.assign(value); }
54 inline EksHostPath& WithPath(const Aws::String& value) { SetPath(value); return *this;}
55 inline EksHostPath& WithPath(Aws::String&& value) { SetPath(std::move(value)); return *this;}
56 inline EksHostPath& WithPath(const char* value) { SetPath(value); return *this;}
58 private:
59
60 Aws::String m_path;
61 bool m_pathHasBeenSet = false;
62 };
63
64} // namespace Model
65} // namespace Batch
66} // namespace Aws
EksHostPath & WithPath(const char *value)
Definition EksHostPath.h:56
void SetPath(const char *value)
Definition EksHostPath.h:53
void SetPath(const Aws::String &value)
Definition EksHostPath.h:51
AWS_BATCH_API EksHostPath & operator=(Aws::Utils::Json::JsonView jsonValue)
EksHostPath & WithPath(Aws::String &&value)
Definition EksHostPath.h:55
AWS_BATCH_API Aws::Utils::Json::JsonValue Jsonize() const
EksHostPath & WithPath(const Aws::String &value)
Definition EksHostPath.h:54
void SetPath(Aws::String &&value)
Definition EksHostPath.h:52
AWS_BATCH_API EksHostPath(Aws::Utils::Json::JsonView jsonValue)
const Aws::String & GetPath() const
Definition EksHostPath.h:49
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue