AWS SDK for C++

AWS SDK for C++ Version 1.11.607

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() = default;
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 template<typename GroupOwnerT = Aws::String>
60 void SetGroupOwner(GroupOwnerT&& value) { m_groupOwnerHasBeenSet = true; m_groupOwner = std::forward<GroupOwnerT>(value); }
61 template<typename GroupOwnerT = Aws::String>
62 GroupOwnerSetting& WithGroupOwner(GroupOwnerT&& value) { SetGroupOwner(std::forward<GroupOwnerT>(value)); return *this;}
64 private:
65
66 bool m_autoAddGroupOwner{false};
67 bool m_autoAddGroupOwnerHasBeenSet = false;
68
69 Aws::String m_groupOwner;
70 bool m_groupOwnerHasBeenSet = false;
71 };
72
73} // namespace Model
74} // namespace Greengrass
75} // namespace Aws
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 & WithAutoAddGroupOwner(bool value)
GroupOwnerSetting & WithGroupOwner(GroupOwnerT &&value)
AWS_GREENGRASS_API GroupOwnerSetting()=default
const Aws::String & GetGroupOwner() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue