AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
EksContainerVolumeMount.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
35 {
36 public:
37 AWS_BATCH_API EksContainerVolumeMount();
40 AWS_BATCH_API Aws::Utils::Json::JsonValue Jsonize() const;
41
42
44
48 inline const Aws::String& GetName() const{ return m_name; }
49 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
50 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
51 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
52 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
53 inline EksContainerVolumeMount& WithName(const Aws::String& value) { SetName(value); return *this;}
54 inline EksContainerVolumeMount& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
55 inline EksContainerVolumeMount& WithName(const char* value) { SetName(value); return *this;}
57
59
62 inline const Aws::String& GetMountPath() const{ return m_mountPath; }
63 inline bool MountPathHasBeenSet() const { return m_mountPathHasBeenSet; }
64 inline void SetMountPath(const Aws::String& value) { m_mountPathHasBeenSet = true; m_mountPath = value; }
65 inline void SetMountPath(Aws::String&& value) { m_mountPathHasBeenSet = true; m_mountPath = std::move(value); }
66 inline void SetMountPath(const char* value) { m_mountPathHasBeenSet = true; m_mountPath.assign(value); }
67 inline EksContainerVolumeMount& WithMountPath(const Aws::String& value) { SetMountPath(value); return *this;}
68 inline EksContainerVolumeMount& WithMountPath(Aws::String&& value) { SetMountPath(std::move(value)); return *this;}
69 inline EksContainerVolumeMount& WithMountPath(const char* value) { SetMountPath(value); return *this;}
71
73
78 inline bool GetReadOnly() const{ return m_readOnly; }
79 inline bool ReadOnlyHasBeenSet() const { return m_readOnlyHasBeenSet; }
80 inline void SetReadOnly(bool value) { m_readOnlyHasBeenSet = true; m_readOnly = value; }
81 inline EksContainerVolumeMount& WithReadOnly(bool value) { SetReadOnly(value); return *this;}
83 private:
84
85 Aws::String m_name;
86 bool m_nameHasBeenSet = false;
87
88 Aws::String m_mountPath;
89 bool m_mountPathHasBeenSet = false;
90
91 bool m_readOnly;
92 bool m_readOnlyHasBeenSet = false;
93 };
94
95} // namespace Model
96} // namespace Batch
97} // namespace Aws
EksContainerVolumeMount & WithMountPath(Aws::String &&value)
EksContainerVolumeMount & WithName(Aws::String &&value)
AWS_BATCH_API EksContainerVolumeMount(Aws::Utils::Json::JsonView jsonValue)
EksContainerVolumeMount & WithMountPath(const char *value)
EksContainerVolumeMount & WithReadOnly(bool value)
EksContainerVolumeMount & WithName(const char *value)
EksContainerVolumeMount & WithMountPath(const Aws::String &value)
AWS_BATCH_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_BATCH_API EksContainerVolumeMount & operator=(Aws::Utils::Json::JsonView jsonValue)
EksContainerVolumeMount & WithName(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue