AWS SDK for C++

AWS SDK for C++ Version 1.11.719

Loading...
Searching...
No Matches
FileSystemConfig.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/lambda/Lambda_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace Lambda {
20namespace Model {
21
30 public:
31 AWS_LAMBDA_API FileSystemConfig() = default;
34 AWS_LAMBDA_API Aws::Utils::Json::JsonValue Jsonize() const;
35
37
41 inline const Aws::String& GetArn() const { return m_arn; }
42 inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; }
43 template <typename ArnT = Aws::String>
44 void SetArn(ArnT&& value) {
45 m_arnHasBeenSet = true;
46 m_arn = std::forward<ArnT>(value);
47 }
48 template <typename ArnT = Aws::String>
49 FileSystemConfig& WithArn(ArnT&& value) {
50 SetArn(std::forward<ArnT>(value));
51 return *this;
52 }
54
56
60 inline const Aws::String& GetLocalMountPath() const { return m_localMountPath; }
61 inline bool LocalMountPathHasBeenSet() const { return m_localMountPathHasBeenSet; }
62 template <typename LocalMountPathT = Aws::String>
63 void SetLocalMountPath(LocalMountPathT&& value) {
64 m_localMountPathHasBeenSet = true;
65 m_localMountPath = std::forward<LocalMountPathT>(value);
66 }
67 template <typename LocalMountPathT = Aws::String>
68 FileSystemConfig& WithLocalMountPath(LocalMountPathT&& value) {
69 SetLocalMountPath(std::forward<LocalMountPathT>(value));
70 return *this;
71 }
73 private:
74 Aws::String m_arn;
75
76 Aws::String m_localMountPath;
77 bool m_arnHasBeenSet = false;
78 bool m_localMountPathHasBeenSet = false;
79};
80
81} // namespace Model
82} // namespace Lambda
83} // namespace Aws
void SetLocalMountPath(LocalMountPathT &&value)
AWS_LAMBDA_API FileSystemConfig(Aws::Utils::Json::JsonView jsonValue)
AWS_LAMBDA_API FileSystemConfig()=default
AWS_LAMBDA_API FileSystemConfig & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_LAMBDA_API Aws::Utils::Json::JsonValue Jsonize() const
const Aws::String & GetLocalMountPath() const
FileSystemConfig & WithArn(ArnT &&value)
const Aws::String & GetArn() const
FileSystemConfig & WithLocalMountPath(LocalMountPathT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue