AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GroupOwnerSetting.h
1
6#pragma once
7#include <aws/greengrass/Greengrass_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 Greengrass
22{
23namespace Model
24{
25
32 {
33 public:
34 AWS_GREENGRASS_API GroupOwnerSetting();
35 AWS_GREENGRASS_API GroupOwnerSetting(Aws::Utils::Json::JsonView jsonValue);
37 AWS_GREENGRASS_API Aws::Utils::Json::JsonValue Jsonize() const;
38
39
41
46 inline bool GetAutoAddGroupOwner() const{ return m_autoAddGroupOwner; }
47 inline bool AutoAddGroupOwnerHasBeenSet() const { return m_autoAddGroupOwnerHasBeenSet; }
48 inline void SetAutoAddGroupOwner(bool value) { m_autoAddGroupOwnerHasBeenSet = true; m_autoAddGroupOwner = value; }
49 inline GroupOwnerSetting& WithAutoAddGroupOwner(bool value) { SetAutoAddGroupOwner(value); return *this;}
51
53
57 inline const Aws::String& GetGroupOwner() const{ return m_groupOwner; }
58 inline bool GroupOwnerHasBeenSet() const { return m_groupOwnerHasBeenSet; }
59 inline void SetGroupOwner(const Aws::String& value) { m_groupOwnerHasBeenSet = true; m_groupOwner = value; }
60 inline void SetGroupOwner(Aws::String&& value) { m_groupOwnerHasBeenSet = true; m_groupOwner = std::move(value); }
61 inline void SetGroupOwner(const char* value) { m_groupOwnerHasBeenSet = true; m_groupOwner.assign(value); }
62 inline GroupOwnerSetting& WithGroupOwner(const Aws::String& value) { SetGroupOwner(value); return *this;}
63 inline GroupOwnerSetting& WithGroupOwner(Aws::String&& value) { SetGroupOwner(std::move(value)); return *this;}
64 inline GroupOwnerSetting& WithGroupOwner(const char* value) { SetGroupOwner(value); return *this;}
66 private:
67
68 bool m_autoAddGroupOwner;
69 bool m_autoAddGroupOwnerHasBeenSet = false;
70
71 Aws::String m_groupOwner;
72 bool m_groupOwnerHasBeenSet = false;
73 };
74
75} // namespace Model
76} // namespace Greengrass
77} // namespace Aws
GroupOwnerSetting & WithGroupOwner(const Aws::String &value)
void SetGroupOwner(const Aws::String &value)
AWS_GREENGRASS_API GroupOwnerSetting(Aws::Utils::Json::JsonView jsonValue)
AWS_GREENGRASS_API GroupOwnerSetting & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_GREENGRASS_API Aws::Utils::Json::JsonValue Jsonize() const
GroupOwnerSetting & WithGroupOwner(const char *value)
GroupOwnerSetting & WithAutoAddGroupOwner(bool value)
GroupOwnerSetting & WithGroupOwner(Aws::String &&value)
const Aws::String & GetGroupOwner() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue