AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
UpdateAttributeGroupRequest.h
1
6#pragma once
7#include <aws/servicecatalog-appregistry/AppRegistry_EXPORTS.h>
8#include <aws/servicecatalog-appregistry/AppRegistryRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace AppRegistry
15{
16namespace Model
17{
18
22 {
23 public:
24 AWS_APPREGISTRY_API UpdateAttributeGroupRequest();
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 "UpdateAttributeGroup"; }
31
32 AWS_APPREGISTRY_API Aws::String SerializePayload() const override;
33
34
36
40 inline const Aws::String& GetAttributeGroup() const{ return m_attributeGroup; }
41 inline bool AttributeGroupHasBeenSet() const { return m_attributeGroupHasBeenSet; }
42 inline void SetAttributeGroup(const Aws::String& value) { m_attributeGroupHasBeenSet = true; m_attributeGroup = value; }
43 inline void SetAttributeGroup(Aws::String&& value) { m_attributeGroupHasBeenSet = true; m_attributeGroup = std::move(value); }
44 inline void SetAttributeGroup(const char* value) { m_attributeGroupHasBeenSet = true; m_attributeGroup.assign(value); }
45 inline UpdateAttributeGroupRequest& WithAttributeGroup(const Aws::String& value) { SetAttributeGroup(value); return *this;}
46 inline UpdateAttributeGroupRequest& WithAttributeGroup(Aws::String&& value) { SetAttributeGroup(std::move(value)); return *this;}
47 inline UpdateAttributeGroupRequest& WithAttributeGroup(const char* value) { SetAttributeGroup(value); return *this;}
49
51
54 inline const Aws::String& GetDescription() const{ return m_description; }
55 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
56 inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; }
57 inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); }
58 inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); }
59 inline UpdateAttributeGroupRequest& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
60 inline UpdateAttributeGroupRequest& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
61 inline UpdateAttributeGroupRequest& WithDescription(const char* value) { SetDescription(value); return *this;}
63
65
69 inline const Aws::String& GetAttributes() const{ return m_attributes; }
70 inline bool AttributesHasBeenSet() const { return m_attributesHasBeenSet; }
71 inline void SetAttributes(const Aws::String& value) { m_attributesHasBeenSet = true; m_attributes = value; }
72 inline void SetAttributes(Aws::String&& value) { m_attributesHasBeenSet = true; m_attributes = std::move(value); }
73 inline void SetAttributes(const char* value) { m_attributesHasBeenSet = true; m_attributes.assign(value); }
74 inline UpdateAttributeGroupRequest& WithAttributes(const Aws::String& value) { SetAttributes(value); return *this;}
75 inline UpdateAttributeGroupRequest& WithAttributes(Aws::String&& value) { SetAttributes(std::move(value)); return *this;}
76 inline UpdateAttributeGroupRequest& WithAttributes(const char* value) { SetAttributes(value); return *this;}
78 private:
79
80 Aws::String m_attributeGroup;
81 bool m_attributeGroupHasBeenSet = false;
82
83 Aws::String m_description;
84 bool m_descriptionHasBeenSet = false;
85
86 Aws::String m_attributes;
87 bool m_attributesHasBeenSet = false;
88 };
89
90} // namespace Model
91} // namespace AppRegistry
92} // namespace Aws
UpdateAttributeGroupRequest & WithAttributes(const char *value)
UpdateAttributeGroupRequest & WithAttributeGroup(Aws::String &&value)
UpdateAttributeGroupRequest & WithDescription(const Aws::String &value)
UpdateAttributeGroupRequest & WithDescription(const char *value)
UpdateAttributeGroupRequest & WithAttributes(Aws::String &&value)
UpdateAttributeGroupRequest & WithDescription(Aws::String &&value)
UpdateAttributeGroupRequest & WithAttributes(const Aws::String &value)
UpdateAttributeGroupRequest & WithAttributeGroup(const char *value)
UpdateAttributeGroupRequest & WithAttributeGroup(const Aws::String &value)
AWS_APPREGISTRY_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String