AWS SDK for C++

AWS SDK for C++ Version 1.11.716

Loading...
Searching...
No Matches
FsxStorageConfiguration.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/m2/MainframeModernization_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace MainframeModernization {
20namespace Model {
21
29 public:
30 AWS_MAINFRAMEMODERNIZATION_API FsxStorageConfiguration() = default;
31 AWS_MAINFRAMEMODERNIZATION_API FsxStorageConfiguration(Aws::Utils::Json::JsonView jsonValue);
32 AWS_MAINFRAMEMODERNIZATION_API FsxStorageConfiguration& operator=(Aws::Utils::Json::JsonView jsonValue);
33 AWS_MAINFRAMEMODERNIZATION_API Aws::Utils::Json::JsonValue Jsonize() const;
34
36
39 inline const Aws::String& GetFileSystemId() const { return m_fileSystemId; }
40 inline bool FileSystemIdHasBeenSet() const { return m_fileSystemIdHasBeenSet; }
41 template <typename FileSystemIdT = Aws::String>
42 void SetFileSystemId(FileSystemIdT&& value) {
43 m_fileSystemIdHasBeenSet = true;
44 m_fileSystemId = std::forward<FileSystemIdT>(value);
45 }
46 template <typename FileSystemIdT = Aws::String>
47 FsxStorageConfiguration& WithFileSystemId(FileSystemIdT&& value) {
48 SetFileSystemId(std::forward<FileSystemIdT>(value));
49 return *this;
50 }
52
54
57 inline const Aws::String& GetMountPoint() const { return m_mountPoint; }
58 inline bool MountPointHasBeenSet() const { return m_mountPointHasBeenSet; }
59 template <typename MountPointT = Aws::String>
60 void SetMountPoint(MountPointT&& value) {
61 m_mountPointHasBeenSet = true;
62 m_mountPoint = std::forward<MountPointT>(value);
63 }
64 template <typename MountPointT = Aws::String>
66 SetMountPoint(std::forward<MountPointT>(value));
67 return *this;
68 }
70 private:
71 Aws::String m_fileSystemId;
72
73 Aws::String m_mountPoint;
74 bool m_fileSystemIdHasBeenSet = false;
75 bool m_mountPointHasBeenSet = false;
76};
77
78} // namespace Model
79} // namespace MainframeModernization
80} // namespace Aws
AWS_MAINFRAMEMODERNIZATION_API FsxStorageConfiguration(Aws::Utils::Json::JsonView jsonValue)
FsxStorageConfiguration & WithMountPoint(MountPointT &&value)
AWS_MAINFRAMEMODERNIZATION_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_MAINFRAMEMODERNIZATION_API FsxStorageConfiguration()=default
AWS_MAINFRAMEMODERNIZATION_API FsxStorageConfiguration & operator=(Aws::Utils::Json::JsonView jsonValue)
FsxStorageConfiguration & WithFileSystemId(FileSystemIdT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue