AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
GetReviewTemplateLensReviewRequest.h
1
6#pragma once
7#include <aws/wellarchitected/WellArchitected_EXPORTS.h>
8#include <aws/wellarchitected/WellArchitectedRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace WellArchitected
15{
16namespace Model
17{
18
22 {
23 public:
24 AWS_WELLARCHITECTED_API GetReviewTemplateLensReviewRequest() = 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 "GetReviewTemplateLensReview"; }
31
32 AWS_WELLARCHITECTED_API Aws::String SerializePayload() const override;
33
34
36
39 inline const Aws::String& GetTemplateArn() const { return m_templateArn; }
40 inline bool TemplateArnHasBeenSet() const { return m_templateArnHasBeenSet; }
41 template<typename TemplateArnT = Aws::String>
42 void SetTemplateArn(TemplateArnT&& value) { m_templateArnHasBeenSet = true; m_templateArn = std::forward<TemplateArnT>(value); }
43 template<typename TemplateArnT = Aws::String>
44 GetReviewTemplateLensReviewRequest& WithTemplateArn(TemplateArnT&& value) { SetTemplateArn(std::forward<TemplateArnT>(value)); return *this;}
46
48
49 inline const Aws::String& GetLensAlias() const { return m_lensAlias; }
50 inline bool LensAliasHasBeenSet() const { return m_lensAliasHasBeenSet; }
51 template<typename LensAliasT = Aws::String>
52 void SetLensAlias(LensAliasT&& value) { m_lensAliasHasBeenSet = true; m_lensAlias = std::forward<LensAliasT>(value); }
53 template<typename LensAliasT = Aws::String>
54 GetReviewTemplateLensReviewRequest& WithLensAlias(LensAliasT&& value) { SetLensAlias(std::forward<LensAliasT>(value)); return *this;}
56 private:
57
58 Aws::String m_templateArn;
59 bool m_templateArnHasBeenSet = false;
60
61 Aws::String m_lensAlias;
62 bool m_lensAliasHasBeenSet = false;
63 };
64
65} // namespace Model
66} // namespace WellArchitected
67} // namespace Aws
GetReviewTemplateLensReviewRequest & WithLensAlias(LensAliasT &&value)
GetReviewTemplateLensReviewRequest & WithTemplateArn(TemplateArnT &&value)
AWS_WELLARCHITECTED_API GetReviewTemplateLensReviewRequest()=default
AWS_WELLARCHITECTED_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String