AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
AttributeGroupDetails.h
1
6#pragma once
7#include <aws/servicecatalog-appregistry/AppRegistry_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 AppRegistry
22{
23namespace Model
24{
25
33 {
34 public:
35 AWS_APPREGISTRY_API AttributeGroupDetails();
36 AWS_APPREGISTRY_API AttributeGroupDetails(Aws::Utils::Json::JsonView jsonValue);
38 AWS_APPREGISTRY_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline const Aws::String& GetId() const{ return m_id; }
46 inline bool IdHasBeenSet() const { return m_idHasBeenSet; }
47 inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; }
48 inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); }
49 inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); }
50 inline AttributeGroupDetails& WithId(const Aws::String& value) { SetId(value); return *this;}
51 inline AttributeGroupDetails& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;}
52 inline AttributeGroupDetails& WithId(const char* value) { SetId(value); return *this;}
54
56
59 inline const Aws::String& GetArn() const{ return m_arn; }
60 inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; }
61 inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; }
62 inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); }
63 inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); }
64 inline AttributeGroupDetails& WithArn(const Aws::String& value) { SetArn(value); return *this;}
65 inline AttributeGroupDetails& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;}
66 inline AttributeGroupDetails& WithArn(const char* value) { SetArn(value); return *this;}
68
70
75 inline const Aws::String& GetName() const{ return m_name; }
76 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
77 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
78 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
79 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
80 inline AttributeGroupDetails& WithName(const Aws::String& value) { SetName(value); return *this;}
81 inline AttributeGroupDetails& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
82 inline AttributeGroupDetails& WithName(const char* value) { SetName(value); return *this;}
84
86
89 inline const Aws::String& GetCreatedBy() const{ return m_createdBy; }
90 inline bool CreatedByHasBeenSet() const { return m_createdByHasBeenSet; }
91 inline void SetCreatedBy(const Aws::String& value) { m_createdByHasBeenSet = true; m_createdBy = value; }
92 inline void SetCreatedBy(Aws::String&& value) { m_createdByHasBeenSet = true; m_createdBy = std::move(value); }
93 inline void SetCreatedBy(const char* value) { m_createdByHasBeenSet = true; m_createdBy.assign(value); }
94 inline AttributeGroupDetails& WithCreatedBy(const Aws::String& value) { SetCreatedBy(value); return *this;}
95 inline AttributeGroupDetails& WithCreatedBy(Aws::String&& value) { SetCreatedBy(std::move(value)); return *this;}
96 inline AttributeGroupDetails& WithCreatedBy(const char* value) { SetCreatedBy(value); return *this;}
98 private:
99
100 Aws::String m_id;
101 bool m_idHasBeenSet = false;
102
103 Aws::String m_arn;
104 bool m_arnHasBeenSet = false;
105
106 Aws::String m_name;
107 bool m_nameHasBeenSet = false;
108
109 Aws::String m_createdBy;
110 bool m_createdByHasBeenSet = false;
111 };
112
113} // namespace Model
114} // namespace AppRegistry
115} // namespace Aws
AttributeGroupDetails & WithArn(Aws::String &&value)
AttributeGroupDetails & WithId(const char *value)
AttributeGroupDetails & WithCreatedBy(Aws::String &&value)
AttributeGroupDetails & WithName(Aws::String &&value)
AWS_APPREGISTRY_API AttributeGroupDetails(Aws::Utils::Json::JsonView jsonValue)
AttributeGroupDetails & WithArn(const Aws::String &value)
AWS_APPREGISTRY_API Aws::Utils::Json::JsonValue Jsonize() const
AttributeGroupDetails & WithArn(const char *value)
AttributeGroupDetails & WithName(const char *value)
AWS_APPREGISTRY_API AttributeGroupDetails & operator=(Aws::Utils::Json::JsonView jsonValue)
AttributeGroupDetails & WithCreatedBy(const Aws::String &value)
AttributeGroupDetails & WithCreatedBy(const char *value)
AttributeGroupDetails & WithId(const Aws::String &value)
AttributeGroupDetails & WithName(const Aws::String &value)
AttributeGroupDetails & WithId(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue