AWS SDK for C++

AWS SDK for C++ Version 1.11.785

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
32 public:
33 AWS_LAMBDA_API FileSystemConfig() = default;
36 AWS_LAMBDA_API Aws::Utils::Json::JsonValue Jsonize() const;
37
39
43 inline const Aws::String& GetArn() const { return m_arn; }
44 inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; }
45 template <typename ArnT = Aws::String>
46 void SetArn(ArnT&& value) {
47 m_arnHasBeenSet = true;
48 m_arn = std::forward<ArnT>(value);
49 }
50 template <typename ArnT = Aws::String>
51 FileSystemConfig& WithArn(ArnT&& value) {
52 SetArn(std::forward<ArnT>(value));
53 return *this;
54 }
56
58
62 inline const Aws::String& GetLocalMountPath() const { return m_localMountPath; }
63 inline bool LocalMountPathHasBeenSet() const { return m_localMountPathHasBeenSet; }
64 template <typename LocalMountPathT = Aws::String>
65 void SetLocalMountPath(LocalMountPathT&& value) {
66 m_localMountPathHasBeenSet = true;
67 m_localMountPath = std::forward<LocalMountPathT>(value);
68 }
69 template <typename LocalMountPathT = Aws::String>
70 FileSystemConfig& WithLocalMountPath(LocalMountPathT&& value) {
71 SetLocalMountPath(std::forward<LocalMountPathT>(value));
72 return *this;
73 }
75 private:
76 Aws::String m_arn;
77
78 Aws::String m_localMountPath;
79 bool m_arnHasBeenSet = false;
80 bool m_localMountPathHasBeenSet = false;
81};
82
83} // namespace Model
84} // namespace Lambda
85} // 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