AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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();
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 inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; }
50 inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); }
51 inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); }
52 inline FileSystemConfig& WithArn(const Aws::String& value) { SetArn(value); return *this;}
53 inline FileSystemConfig& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;}
54 inline FileSystemConfig& WithArn(const char* value) { SetArn(value); return *this;}
56
58
62 inline const Aws::String& GetLocalMountPath() const{ return m_localMountPath; }
63 inline bool LocalMountPathHasBeenSet() const { return m_localMountPathHasBeenSet; }
64 inline void SetLocalMountPath(const Aws::String& value) { m_localMountPathHasBeenSet = true; m_localMountPath = value; }
65 inline void SetLocalMountPath(Aws::String&& value) { m_localMountPathHasBeenSet = true; m_localMountPath = std::move(value); }
66 inline void SetLocalMountPath(const char* value) { m_localMountPathHasBeenSet = true; m_localMountPath.assign(value); }
67 inline FileSystemConfig& WithLocalMountPath(const Aws::String& value) { SetLocalMountPath(value); return *this;}
68 inline FileSystemConfig& WithLocalMountPath(Aws::String&& value) { SetLocalMountPath(std::move(value)); return *this;}
69 inline FileSystemConfig& WithLocalMountPath(const char* value) { SetLocalMountPath(value); return *this;}
71 private:
72
73 Aws::String m_arn;
74 bool m_arnHasBeenSet = false;
75
76 Aws::String m_localMountPath;
77 bool m_localMountPathHasBeenSet = false;
78 };
79
80} // namespace Model
81} // namespace Lambda
82} // namespace Aws
void SetLocalMountPath(const char *value)
FileSystemConfig & WithLocalMountPath(Aws::String &&value)
AWS_LAMBDA_API FileSystemConfig(Aws::Utils::Json::JsonView jsonValue)
FileSystemConfig & WithArn(const char *value)
FileSystemConfig & WithLocalMountPath(const Aws::String &value)
void SetLocalMountPath(Aws::String &&value)
FileSystemConfig & WithArn(Aws::String &&value)
AWS_LAMBDA_API FileSystemConfig & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_LAMBDA_API Aws::Utils::Json::JsonValue Jsonize() const
const Aws::String & GetLocalMountPath() const
void SetArn(const Aws::String &value)
void SetLocalMountPath(const Aws::String &value)
FileSystemConfig & WithArn(const Aws::String &value)
FileSystemConfig & WithLocalMountPath(const char *value)
const Aws::String & GetArn() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue