AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
SetPermissionRequest.h
1
6#pragma once
7#include <aws/opsworks/OpsWorks_EXPORTS.h>
8#include <aws/opsworks/OpsWorksRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace OpsWorks
15{
16namespace Model
17{
18
22 {
23 public:
24 AWS_OPSWORKS_API SetPermissionRequest();
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "SetPermission"; }
31
32 AWS_OPSWORKS_API Aws::String SerializePayload() const override;
33
35
36
38
41 inline const Aws::String& GetStackId() const{ return m_stackId; }
42 inline bool StackIdHasBeenSet() const { return m_stackIdHasBeenSet; }
43 inline void SetStackId(const Aws::String& value) { m_stackIdHasBeenSet = true; m_stackId = value; }
44 inline void SetStackId(Aws::String&& value) { m_stackIdHasBeenSet = true; m_stackId = std::move(value); }
45 inline void SetStackId(const char* value) { m_stackIdHasBeenSet = true; m_stackId.assign(value); }
46 inline SetPermissionRequest& WithStackId(const Aws::String& value) { SetStackId(value); return *this;}
47 inline SetPermissionRequest& WithStackId(Aws::String&& value) { SetStackId(std::move(value)); return *this;}
48 inline SetPermissionRequest& WithStackId(const char* value) { SetStackId(value); return *this;}
50
52
55 inline const Aws::String& GetIamUserArn() const{ return m_iamUserArn; }
56 inline bool IamUserArnHasBeenSet() const { return m_iamUserArnHasBeenSet; }
57 inline void SetIamUserArn(const Aws::String& value) { m_iamUserArnHasBeenSet = true; m_iamUserArn = value; }
58 inline void SetIamUserArn(Aws::String&& value) { m_iamUserArnHasBeenSet = true; m_iamUserArn = std::move(value); }
59 inline void SetIamUserArn(const char* value) { m_iamUserArnHasBeenSet = true; m_iamUserArn.assign(value); }
60 inline SetPermissionRequest& WithIamUserArn(const Aws::String& value) { SetIamUserArn(value); return *this;}
61 inline SetPermissionRequest& WithIamUserArn(Aws::String&& value) { SetIamUserArn(std::move(value)); return *this;}
62 inline SetPermissionRequest& WithIamUserArn(const char* value) { SetIamUserArn(value); return *this;}
64
66
69 inline bool GetAllowSsh() const{ return m_allowSsh; }
70 inline bool AllowSshHasBeenSet() const { return m_allowSshHasBeenSet; }
71 inline void SetAllowSsh(bool value) { m_allowSshHasBeenSet = true; m_allowSsh = value; }
72 inline SetPermissionRequest& WithAllowSsh(bool value) { SetAllowSsh(value); return *this;}
74
76
79 inline bool GetAllowSudo() const{ return m_allowSudo; }
80 inline bool AllowSudoHasBeenSet() const { return m_allowSudoHasBeenSet; }
81 inline void SetAllowSudo(bool value) { m_allowSudoHasBeenSet = true; m_allowSudo = value; }
82 inline SetPermissionRequest& WithAllowSudo(bool value) { SetAllowSudo(value); return *this;}
84
86
96 inline const Aws::String& GetLevel() const{ return m_level; }
97 inline bool LevelHasBeenSet() const { return m_levelHasBeenSet; }
98 inline void SetLevel(const Aws::String& value) { m_levelHasBeenSet = true; m_level = value; }
99 inline void SetLevel(Aws::String&& value) { m_levelHasBeenSet = true; m_level = std::move(value); }
100 inline void SetLevel(const char* value) { m_levelHasBeenSet = true; m_level.assign(value); }
101 inline SetPermissionRequest& WithLevel(const Aws::String& value) { SetLevel(value); return *this;}
102 inline SetPermissionRequest& WithLevel(Aws::String&& value) { SetLevel(std::move(value)); return *this;}
103 inline SetPermissionRequest& WithLevel(const char* value) { SetLevel(value); return *this;}
105 private:
106
107 Aws::String m_stackId;
108 bool m_stackIdHasBeenSet = false;
109
110 Aws::String m_iamUserArn;
111 bool m_iamUserArnHasBeenSet = false;
112
113 bool m_allowSsh;
114 bool m_allowSshHasBeenSet = false;
115
116 bool m_allowSudo;
117 bool m_allowSudoHasBeenSet = false;
118
119 Aws::String m_level;
120 bool m_levelHasBeenSet = false;
121 };
122
123} // namespace Model
124} // namespace OpsWorks
125} // namespace Aws
SetPermissionRequest & WithIamUserArn(const Aws::String &value)
AWS_OPSWORKS_API Aws::String SerializePayload() const override
AWS_OPSWORKS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
void SetIamUserArn(const Aws::String &value)
SetPermissionRequest & WithStackId(const Aws::String &value)
SetPermissionRequest & WithStackId(const char *value)
SetPermissionRequest & WithAllowSudo(bool value)
SetPermissionRequest & WithLevel(Aws::String &&value)
SetPermissionRequest & WithLevel(const Aws::String &value)
SetPermissionRequest & WithIamUserArn(const char *value)
virtual const char * GetServiceRequestName() const override
SetPermissionRequest & WithAllowSsh(bool value)
SetPermissionRequest & WithLevel(const char *value)
SetPermissionRequest & WithStackId(Aws::String &&value)
SetPermissionRequest & WithIamUserArn(Aws::String &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String