AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DescribeConstraintRequest.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 DescribeConstraintRequest();
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 "DescribeConstraint"; }
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 DescribeConstraintRequest& WithAcceptLanguage(const Aws::String& value) { SetAcceptLanguage(value); return *this;}
48 inline DescribeConstraintRequest& WithAcceptLanguage(Aws::String&& value) { SetAcceptLanguage(std::move(value)); return *this;}
49 inline DescribeConstraintRequest& 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 DescribeConstraintRequest& WithId(const Aws::String& value) { SetId(value); return *this;}
62 inline DescribeConstraintRequest& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;}
63 inline DescribeConstraintRequest& WithId(const char* value) { SetId(value); return *this;}
65 private:
66
67 Aws::String m_acceptLanguage;
68 bool m_acceptLanguageHasBeenSet = false;
69
70 Aws::String m_id;
71 bool m_idHasBeenSet = false;
72 };
73
74} // namespace Model
75} // namespace ServiceCatalog
76} // namespace Aws
AWS_SERVICECATALOG_API Aws::String SerializePayload() const override
DescribeConstraintRequest & WithAcceptLanguage(const char *value)
DescribeConstraintRequest & WithId(const Aws::String &value)
AWS_SERVICECATALOG_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DescribeConstraintRequest & WithAcceptLanguage(const Aws::String &value)
DescribeConstraintRequest & WithId(Aws::String &&value)
DescribeConstraintRequest & WithAcceptLanguage(Aws::String &&value)
DescribeConstraintRequest & WithId(const char *value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String