AWS SDK for C++

AWS SDK for C++ Version 1.11.764

Loading...
Searching...
No Matches
ClusterFsxLustreConfig.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/sagemaker/SageMaker_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace SageMaker {
20namespace Model {
21
30 public:
31 AWS_SAGEMAKER_API ClusterFsxLustreConfig() = default;
34 AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const;
35
37
40 inline const Aws::String& GetDnsName() const { return m_dnsName; }
41 inline bool DnsNameHasBeenSet() const { return m_dnsNameHasBeenSet; }
42 template <typename DnsNameT = Aws::String>
43 void SetDnsName(DnsNameT&& value) {
44 m_dnsNameHasBeenSet = true;
45 m_dnsName = std::forward<DnsNameT>(value);
46 }
47 template <typename DnsNameT = Aws::String>
49 SetDnsName(std::forward<DnsNameT>(value));
50 return *this;
51 }
53
55
58 inline const Aws::String& GetMountName() const { return m_mountName; }
59 inline bool MountNameHasBeenSet() const { return m_mountNameHasBeenSet; }
60 template <typename MountNameT = Aws::String>
61 void SetMountName(MountNameT&& value) {
62 m_mountNameHasBeenSet = true;
63 m_mountName = std::forward<MountNameT>(value);
64 }
65 template <typename MountNameT = Aws::String>
67 SetMountName(std::forward<MountNameT>(value));
68 return *this;
69 }
71
73
77 inline const Aws::String& GetMountPath() const { return m_mountPath; }
78 inline bool MountPathHasBeenSet() const { return m_mountPathHasBeenSet; }
79 template <typename MountPathT = Aws::String>
80 void SetMountPath(MountPathT&& value) {
81 m_mountPathHasBeenSet = true;
82 m_mountPath = std::forward<MountPathT>(value);
83 }
84 template <typename MountPathT = Aws::String>
86 SetMountPath(std::forward<MountPathT>(value));
87 return *this;
88 }
90 private:
91 Aws::String m_dnsName;
92
93 Aws::String m_mountName;
94
95 Aws::String m_mountPath;
96 bool m_dnsNameHasBeenSet = false;
97 bool m_mountNameHasBeenSet = false;
98 bool m_mountPathHasBeenSet = false;
99};
100
101} // namespace Model
102} // namespace SageMaker
103} // namespace Aws
ClusterFsxLustreConfig & WithMountName(MountNameT &&value)
AWS_SAGEMAKER_API ClusterFsxLustreConfig()=default
AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const
ClusterFsxLustreConfig & WithDnsName(DnsNameT &&value)
AWS_SAGEMAKER_API ClusterFsxLustreConfig & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_SAGEMAKER_API ClusterFsxLustreConfig(Aws::Utils::Json::JsonView jsonValue)
ClusterFsxLustreConfig & WithMountPath(MountPathT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue