AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
FileSystemConfig.h
1
6#pragma once
7#include <aws/lambda/Lambda_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace Lambda
22{
23namespace Model
24{
25
34 {
35 public:
36 AWS_LAMBDA_API FileSystemConfig() = default;
39 AWS_LAMBDA_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
47 inline const Aws::String& GetArn() const { return m_arn; }
48 inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; }
49 template<typename ArnT = Aws::String>
50 void SetArn(ArnT&& value) { m_arnHasBeenSet = true; m_arn = std::forward<ArnT>(value); }
51 template<typename ArnT = Aws::String>
52 FileSystemConfig& WithArn(ArnT&& value) { SetArn(std::forward<ArnT>(value)); return *this;}
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) { m_localMountPathHasBeenSet = true; m_localMountPath = std::forward<LocalMountPathT>(value); }
64 template<typename LocalMountPathT = Aws::String>
65 FileSystemConfig& WithLocalMountPath(LocalMountPathT&& value) { SetLocalMountPath(std::forward<LocalMountPathT>(value)); return *this;}
67 private:
68
69 Aws::String m_arn;
70 bool m_arnHasBeenSet = false;
71
72 Aws::String m_localMountPath;
73 bool m_localMountPathHasBeenSet = false;
74 };
75
76} // namespace Model
77} // namespace Lambda
78} // 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