AWS SDK for C++

AWS SDK for C++ Version 1.11.816

Loading...
Searching...
No Matches
S3FilesVolumeConfiguration.h
1
6#pragma once
7#include <aws/batch/Batch_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace Batch {
20namespace Model {
21
29 public:
30 AWS_BATCH_API S3FilesVolumeConfiguration() = default;
33 AWS_BATCH_API Aws::Utils::Json::JsonValue Jsonize() const;
34
36
39 inline const Aws::String& GetFileSystemArn() const { return m_fileSystemArn; }
40 inline bool FileSystemArnHasBeenSet() const { return m_fileSystemArnHasBeenSet; }
41 template <typename FileSystemArnT = Aws::String>
42 void SetFileSystemArn(FileSystemArnT&& value) {
43 m_fileSystemArnHasBeenSet = true;
44 m_fileSystemArn = std::forward<FileSystemArnT>(value);
45 }
46 template <typename FileSystemArnT = Aws::String>
48 SetFileSystemArn(std::forward<FileSystemArnT>(value));
49 return *this;
50 }
52
54
58 inline const Aws::String& GetRootDirectory() const { return m_rootDirectory; }
59 inline bool RootDirectoryHasBeenSet() const { return m_rootDirectoryHasBeenSet; }
60 template <typename RootDirectoryT = Aws::String>
61 void SetRootDirectory(RootDirectoryT&& value) {
62 m_rootDirectoryHasBeenSet = true;
63 m_rootDirectory = std::forward<RootDirectoryT>(value);
64 }
65 template <typename RootDirectoryT = Aws::String>
67 SetRootDirectory(std::forward<RootDirectoryT>(value));
68 return *this;
69 }
71
73
77 inline int GetTransitEncryptionPort() const { return m_transitEncryptionPort; }
78 inline bool TransitEncryptionPortHasBeenSet() const { return m_transitEncryptionPortHasBeenSet; }
79 inline void SetTransitEncryptionPort(int value) {
80 m_transitEncryptionPortHasBeenSet = true;
81 m_transitEncryptionPort = value;
82 }
85 return *this;
86 }
88
90
93 inline const Aws::String& GetAccessPointArn() const { return m_accessPointArn; }
94 inline bool AccessPointArnHasBeenSet() const { return m_accessPointArnHasBeenSet; }
95 template <typename AccessPointArnT = Aws::String>
96 void SetAccessPointArn(AccessPointArnT&& value) {
97 m_accessPointArnHasBeenSet = true;
98 m_accessPointArn = std::forward<AccessPointArnT>(value);
99 }
100 template <typename AccessPointArnT = Aws::String>
102 SetAccessPointArn(std::forward<AccessPointArnT>(value));
103 return *this;
104 }
106 private:
107 Aws::String m_fileSystemArn;
108
109 Aws::String m_rootDirectory;
110
111 int m_transitEncryptionPort{0};
112
113 Aws::String m_accessPointArn;
114 bool m_fileSystemArnHasBeenSet = false;
115 bool m_rootDirectoryHasBeenSet = false;
116 bool m_transitEncryptionPortHasBeenSet = false;
117 bool m_accessPointArnHasBeenSet = false;
118};
119
120} // namespace Model
121} // namespace Batch
122} // namespace Aws
AWS_BATCH_API S3FilesVolumeConfiguration()=default
S3FilesVolumeConfiguration & WithAccessPointArn(AccessPointArnT &&value)
S3FilesVolumeConfiguration & WithTransitEncryptionPort(int value)
AWS_BATCH_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_BATCH_API S3FilesVolumeConfiguration & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_BATCH_API S3FilesVolumeConfiguration(Aws::Utils::Json::JsonView jsonValue)
S3FilesVolumeConfiguration & WithFileSystemArn(FileSystemArnT &&value)
S3FilesVolumeConfiguration & WithRootDirectory(RootDirectoryT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue