AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
DescribeProvisioningParametersRequest.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 DescribeProvisioningParametersRequest() = default;
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 "DescribeProvisioningParameters"; }
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 template<typename AcceptLanguageT = Aws::String>
45 void SetAcceptLanguage(AcceptLanguageT&& value) { m_acceptLanguageHasBeenSet = true; m_acceptLanguage = std::forward<AcceptLanguageT>(value); }
46 template<typename AcceptLanguageT = Aws::String>
47 DescribeProvisioningParametersRequest& WithAcceptLanguage(AcceptLanguageT&& value) { SetAcceptLanguage(std::forward<AcceptLanguageT>(value)); return *this;}
49
51
55 inline const Aws::String& GetProductId() const { return m_productId; }
56 inline bool ProductIdHasBeenSet() const { return m_productIdHasBeenSet; }
57 template<typename ProductIdT = Aws::String>
58 void SetProductId(ProductIdT&& value) { m_productIdHasBeenSet = true; m_productId = std::forward<ProductIdT>(value); }
59 template<typename ProductIdT = Aws::String>
60 DescribeProvisioningParametersRequest& WithProductId(ProductIdT&& value) { SetProductId(std::forward<ProductIdT>(value)); return *this;}
62
64
67 inline const Aws::String& GetProductName() const { return m_productName; }
68 inline bool ProductNameHasBeenSet() const { return m_productNameHasBeenSet; }
69 template<typename ProductNameT = Aws::String>
70 void SetProductName(ProductNameT&& value) { m_productNameHasBeenSet = true; m_productName = std::forward<ProductNameT>(value); }
71 template<typename ProductNameT = Aws::String>
72 DescribeProvisioningParametersRequest& WithProductName(ProductNameT&& value) { SetProductName(std::forward<ProductNameT>(value)); return *this;}
74
76
80 inline const Aws::String& GetProvisioningArtifactId() const { return m_provisioningArtifactId; }
81 inline bool ProvisioningArtifactIdHasBeenSet() const { return m_provisioningArtifactIdHasBeenSet; }
82 template<typename ProvisioningArtifactIdT = Aws::String>
83 void SetProvisioningArtifactId(ProvisioningArtifactIdT&& value) { m_provisioningArtifactIdHasBeenSet = true; m_provisioningArtifactId = std::forward<ProvisioningArtifactIdT>(value); }
84 template<typename ProvisioningArtifactIdT = Aws::String>
85 DescribeProvisioningParametersRequest& WithProvisioningArtifactId(ProvisioningArtifactIdT&& value) { SetProvisioningArtifactId(std::forward<ProvisioningArtifactIdT>(value)); return *this;}
87
89
93 inline const Aws::String& GetProvisioningArtifactName() const { return m_provisioningArtifactName; }
94 inline bool ProvisioningArtifactNameHasBeenSet() const { return m_provisioningArtifactNameHasBeenSet; }
95 template<typename ProvisioningArtifactNameT = Aws::String>
96 void SetProvisioningArtifactName(ProvisioningArtifactNameT&& value) { m_provisioningArtifactNameHasBeenSet = true; m_provisioningArtifactName = std::forward<ProvisioningArtifactNameT>(value); }
97 template<typename ProvisioningArtifactNameT = Aws::String>
98 DescribeProvisioningParametersRequest& WithProvisioningArtifactName(ProvisioningArtifactNameT&& value) { SetProvisioningArtifactName(std::forward<ProvisioningArtifactNameT>(value)); return *this;}
100
102
108 inline const Aws::String& GetPathId() const { return m_pathId; }
109 inline bool PathIdHasBeenSet() const { return m_pathIdHasBeenSet; }
110 template<typename PathIdT = Aws::String>
111 void SetPathId(PathIdT&& value) { m_pathIdHasBeenSet = true; m_pathId = std::forward<PathIdT>(value); }
112 template<typename PathIdT = Aws::String>
113 DescribeProvisioningParametersRequest& WithPathId(PathIdT&& value) { SetPathId(std::forward<PathIdT>(value)); return *this;}
115
117
120 inline const Aws::String& GetPathName() const { return m_pathName; }
121 inline bool PathNameHasBeenSet() const { return m_pathNameHasBeenSet; }
122 template<typename PathNameT = Aws::String>
123 void SetPathName(PathNameT&& value) { m_pathNameHasBeenSet = true; m_pathName = std::forward<PathNameT>(value); }
124 template<typename PathNameT = Aws::String>
125 DescribeProvisioningParametersRequest& WithPathName(PathNameT&& value) { SetPathName(std::forward<PathNameT>(value)); return *this;}
127 private:
128
129 Aws::String m_acceptLanguage;
130 bool m_acceptLanguageHasBeenSet = false;
131
132 Aws::String m_productId;
133 bool m_productIdHasBeenSet = false;
134
135 Aws::String m_productName;
136 bool m_productNameHasBeenSet = false;
137
138 Aws::String m_provisioningArtifactId;
139 bool m_provisioningArtifactIdHasBeenSet = false;
140
141 Aws::String m_provisioningArtifactName;
142 bool m_provisioningArtifactNameHasBeenSet = false;
143
144 Aws::String m_pathId;
145 bool m_pathIdHasBeenSet = false;
146
147 Aws::String m_pathName;
148 bool m_pathNameHasBeenSet = false;
149 };
150
151} // namespace Model
152} // namespace ServiceCatalog
153} // namespace Aws
DescribeProvisioningParametersRequest & WithProductName(ProductNameT &&value)
AWS_SERVICECATALOG_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DescribeProvisioningParametersRequest & WithProductId(ProductIdT &&value)
DescribeProvisioningParametersRequest & WithProvisioningArtifactName(ProvisioningArtifactNameT &&value)
DescribeProvisioningParametersRequest & WithAcceptLanguage(AcceptLanguageT &&value)
AWS_SERVICECATALOG_API DescribeProvisioningParametersRequest()=default
DescribeProvisioningParametersRequest & WithPathName(PathNameT &&value)
AWS_SERVICECATALOG_API Aws::String SerializePayload() const override
DescribeProvisioningParametersRequest & WithProvisioningArtifactId(ProvisioningArtifactIdT &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String