AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
UpdateConstraintRequest.h
1
6#pragma once
7#include <aws/servicecatalog/ServiceCatalog_EXPORTS.h>
8#include <aws/servicecatalog/ServiceCatalogRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace ServiceCatalog
15{
16namespace Model
17{
18
22 {
23 public:
24 AWS_SERVICECATALOG_API UpdateConstraintRequest();
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 "UpdateConstraint"; }
31
32 AWS_SERVICECATALOG_API Aws::String SerializePayload() const override;
33
34 AWS_SERVICECATALOG_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
35
36
38
42 inline const Aws::String& GetAcceptLanguage() const{ return m_acceptLanguage; }
43 inline bool AcceptLanguageHasBeenSet() const { return m_acceptLanguageHasBeenSet; }
44 inline void SetAcceptLanguage(const Aws::String& value) { m_acceptLanguageHasBeenSet = true; m_acceptLanguage = value; }
45 inline void SetAcceptLanguage(Aws::String&& value) { m_acceptLanguageHasBeenSet = true; m_acceptLanguage = std::move(value); }
46 inline void SetAcceptLanguage(const char* value) { m_acceptLanguageHasBeenSet = true; m_acceptLanguage.assign(value); }
47 inline UpdateConstraintRequest& WithAcceptLanguage(const Aws::String& value) { SetAcceptLanguage(value); return *this;}
48 inline UpdateConstraintRequest& WithAcceptLanguage(Aws::String&& value) { SetAcceptLanguage(std::move(value)); return *this;}
49 inline UpdateConstraintRequest& WithAcceptLanguage(const char* value) { SetAcceptLanguage(value); return *this;}
51
53
56 inline const Aws::String& GetId() const{ return m_id; }
57 inline bool IdHasBeenSet() const { return m_idHasBeenSet; }
58 inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; }
59 inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); }
60 inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); }
61 inline UpdateConstraintRequest& WithId(const Aws::String& value) { SetId(value); return *this;}
62 inline UpdateConstraintRequest& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;}
63 inline UpdateConstraintRequest& WithId(const char* value) { SetId(value); return *this;}
65
67
70 inline const Aws::String& GetDescription() const{ return m_description; }
71 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
72 inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; }
73 inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); }
74 inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); }
75 inline UpdateConstraintRequest& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
76 inline UpdateConstraintRequest& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
77 inline UpdateConstraintRequest& WithDescription(const char* value) { SetDescription(value); return *this;}
79
81
117 inline const Aws::String& GetParameters() const{ return m_parameters; }
118 inline bool ParametersHasBeenSet() const { return m_parametersHasBeenSet; }
119 inline void SetParameters(const Aws::String& value) { m_parametersHasBeenSet = true; m_parameters = value; }
120 inline void SetParameters(Aws::String&& value) { m_parametersHasBeenSet = true; m_parameters = std::move(value); }
121 inline void SetParameters(const char* value) { m_parametersHasBeenSet = true; m_parameters.assign(value); }
122 inline UpdateConstraintRequest& WithParameters(const Aws::String& value) { SetParameters(value); return *this;}
123 inline UpdateConstraintRequest& WithParameters(Aws::String&& value) { SetParameters(std::move(value)); return *this;}
124 inline UpdateConstraintRequest& WithParameters(const char* value) { SetParameters(value); return *this;}
126 private:
127
128 Aws::String m_acceptLanguage;
129 bool m_acceptLanguageHasBeenSet = false;
130
131 Aws::String m_id;
132 bool m_idHasBeenSet = false;
133
134 Aws::String m_description;
135 bool m_descriptionHasBeenSet = false;
136
137 Aws::String m_parameters;
138 bool m_parametersHasBeenSet = false;
139 };
140
141} // namespace Model
142} // namespace ServiceCatalog
143} // namespace Aws
UpdateConstraintRequest & WithAcceptLanguage(const Aws::String &value)
AWS_SERVICECATALOG_API Aws::String SerializePayload() const override
UpdateConstraintRequest & WithId(const Aws::String &value)
UpdateConstraintRequest & WithParameters(const char *value)
UpdateConstraintRequest & WithParameters(const Aws::String &value)
UpdateConstraintRequest & WithId(Aws::String &&value)
virtual const char * GetServiceRequestName() const override
UpdateConstraintRequest & WithAcceptLanguage(const char *value)
UpdateConstraintRequest & WithDescription(const Aws::String &value)
AWS_SERVICECATALOG_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
UpdateConstraintRequest & WithId(const char *value)
UpdateConstraintRequest & WithParameters(Aws::String &&value)
UpdateConstraintRequest & WithDescription(const char *value)
UpdateConstraintRequest & WithDescription(Aws::String &&value)
UpdateConstraintRequest & WithAcceptLanguage(Aws::String &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String