AWS SDK for C++

AWS SDK for C++ Version 1.11.899

Loading...
Searching...
No Matches
UpdateAccessProfileRequest.h
1
6#pragma once
7#include <aws/cloudwatchomni/CloudWatchOmniRequest.h>
8#include <aws/cloudwatchomni/CloudWatchOmni_EXPORTS.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10
11#include <utility>
12
13namespace Aws {
14namespace CloudWatchOmni {
15namespace Model {
16
20 public:
21 AWS_CLOUDWATCHOMNI_API UpdateAccessProfileRequest() = default;
22
23 // Service request name is the Operation name which will send this request out,
24 // each operation should has unique request name, so that we can get operation's name from this request.
25 // Note: this is not true for response, multiple operations may have the same response name,
26 // so we can not get operation's name from response.
27 inline virtual const char* GetServiceRequestName() const override { return "UpdateAccessProfile"; }
28
29 AWS_CLOUDWATCHOMNI_API Aws::String SerializePayload() const override;
30
31 AWS_CLOUDWATCHOMNI_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
32
34
37 inline const Aws::String& GetSpaceId() const { return m_spaceId; }
38 inline bool SpaceIdHasBeenSet() const { return m_spaceIdHasBeenSet; }
39 template <typename SpaceIdT = Aws::String>
40 void SetSpaceId(SpaceIdT&& value) {
41 m_spaceIdHasBeenSet = true;
42 m_spaceId = std::forward<SpaceIdT>(value);
43 }
44 template <typename SpaceIdT = Aws::String>
46 SetSpaceId(std::forward<SpaceIdT>(value));
47 return *this;
48 }
50
52
55 inline const Aws::String& GetProfileId() const { return m_profileId; }
56 inline bool ProfileIdHasBeenSet() const { return m_profileIdHasBeenSet; }
57 template <typename ProfileIdT = Aws::String>
58 void SetProfileId(ProfileIdT&& value) {
59 m_profileIdHasBeenSet = true;
60 m_profileId = std::forward<ProfileIdT>(value);
61 }
62 template <typename ProfileIdT = Aws::String>
64 SetProfileId(std::forward<ProfileIdT>(value));
65 return *this;
66 }
68
70
73 inline const Aws::String& GetName() const { return m_name; }
74 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
75 template <typename NameT = Aws::String>
76 void SetName(NameT&& value) {
77 m_nameHasBeenSet = true;
78 m_name = std::forward<NameT>(value);
79 }
80 template <typename NameT = Aws::String>
82 SetName(std::forward<NameT>(value));
83 return *this;
84 }
86
88
91 inline const Aws::String& GetDescription() const { return m_description; }
92 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
93 template <typename DescriptionT = Aws::String>
94 void SetDescription(DescriptionT&& value) {
95 m_descriptionHasBeenSet = true;
96 m_description = std::forward<DescriptionT>(value);
97 }
98 template <typename DescriptionT = Aws::String>
100 SetDescription(std::forward<DescriptionT>(value));
101 return *this;
102 }
104 private:
105 Aws::String m_spaceId;
106
107 Aws::String m_profileId;
108
109 Aws::String m_name;
110
111 Aws::String m_description;
112 bool m_spaceIdHasBeenSet = false;
113 bool m_profileIdHasBeenSet = false;
114 bool m_nameHasBeenSet = false;
115 bool m_descriptionHasBeenSet = false;
116};
117
118} // namespace Model
119} // namespace CloudWatchOmni
120} // namespace Aws
UpdateAccessProfileRequest & WithProfileId(ProfileIdT &&value)
AWS_CLOUDWATCHOMNI_API Aws::String SerializePayload() const override
AWS_CLOUDWATCHOMNI_API UpdateAccessProfileRequest()=default
UpdateAccessProfileRequest & WithSpaceId(SpaceIdT &&value)
AWS_CLOUDWATCHOMNI_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
UpdateAccessProfileRequest & WithDescription(DescriptionT &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String