AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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();
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 inline void SetTemplateArn(const Aws::String& value) { m_templateArnHasBeenSet = true; m_templateArn = value; }
42 inline void SetTemplateArn(Aws::String&& value) { m_templateArnHasBeenSet = true; m_templateArn = std::move(value); }
43 inline void SetTemplateArn(const char* value) { m_templateArnHasBeenSet = true; m_templateArn.assign(value); }
45 inline GetReviewTemplateLensReviewRequest& WithTemplateArn(Aws::String&& value) { SetTemplateArn(std::move(value)); return *this;}
46 inline GetReviewTemplateLensReviewRequest& WithTemplateArn(const char* value) { SetTemplateArn(value); return *this;}
48
50
51 inline const Aws::String& GetLensAlias() const{ return m_lensAlias; }
52 inline bool LensAliasHasBeenSet() const { return m_lensAliasHasBeenSet; }
53 inline void SetLensAlias(const Aws::String& value) { m_lensAliasHasBeenSet = true; m_lensAlias = value; }
54 inline void SetLensAlias(Aws::String&& value) { m_lensAliasHasBeenSet = true; m_lensAlias = std::move(value); }
55 inline void SetLensAlias(const char* value) { m_lensAliasHasBeenSet = true; m_lensAlias.assign(value); }
56 inline GetReviewTemplateLensReviewRequest& WithLensAlias(const Aws::String& value) { SetLensAlias(value); return *this;}
57 inline GetReviewTemplateLensReviewRequest& WithLensAlias(Aws::String&& value) { SetLensAlias(std::move(value)); return *this;}
58 inline GetReviewTemplateLensReviewRequest& WithLensAlias(const char* value) { SetLensAlias(value); return *this;}
60 private:
61
62 Aws::String m_templateArn;
63 bool m_templateArnHasBeenSet = false;
64
65 Aws::String m_lensAlias;
66 bool m_lensAliasHasBeenSet = false;
67 };
68
69} // namespace Model
70} // namespace WellArchitected
71} // namespace Aws
GetReviewTemplateLensReviewRequest & WithLensAlias(Aws::String &&value)
GetReviewTemplateLensReviewRequest & WithTemplateArn(Aws::String &&value)
GetReviewTemplateLensReviewRequest & WithLensAlias(const Aws::String &value)
GetReviewTemplateLensReviewRequest & WithTemplateArn(const char *value)
GetReviewTemplateLensReviewRequest & WithLensAlias(const char *value)
GetReviewTemplateLensReviewRequest & WithTemplateArn(const Aws::String &value)
AWS_WELLARCHITECTED_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String