/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Http { class URI; } //namespace Http namespace WellArchitected { namespace Model { /** *

Input to get lens review report.

See Also:

AWS * API Reference

*/ class GetLensReviewReportRequest : public WellArchitectedRequest { public: AWS_WELLARCHITECTED_API GetLensReviewReportRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "GetLensReviewReport"; } AWS_WELLARCHITECTED_API Aws::String SerializePayload() const override; AWS_WELLARCHITECTED_API void AddQueryStringParameters(Aws::Http::URI& uri) const override; inline const Aws::String& GetWorkloadId() const{ return m_workloadId; } inline bool WorkloadIdHasBeenSet() const { return m_workloadIdHasBeenSet; } inline void SetWorkloadId(const Aws::String& value) { m_workloadIdHasBeenSet = true; m_workloadId = value; } inline void SetWorkloadId(Aws::String&& value) { m_workloadIdHasBeenSet = true; m_workloadId = std::move(value); } inline void SetWorkloadId(const char* value) { m_workloadIdHasBeenSet = true; m_workloadId.assign(value); } inline GetLensReviewReportRequest& WithWorkloadId(const Aws::String& value) { SetWorkloadId(value); return *this;} inline GetLensReviewReportRequest& WithWorkloadId(Aws::String&& value) { SetWorkloadId(std::move(value)); return *this;} inline GetLensReviewReportRequest& WithWorkloadId(const char* value) { SetWorkloadId(value); return *this;} inline const Aws::String& GetLensAlias() const{ return m_lensAlias; } inline bool LensAliasHasBeenSet() const { return m_lensAliasHasBeenSet; } inline void SetLensAlias(const Aws::String& value) { m_lensAliasHasBeenSet = true; m_lensAlias = value; } inline void SetLensAlias(Aws::String&& value) { m_lensAliasHasBeenSet = true; m_lensAlias = std::move(value); } inline void SetLensAlias(const char* value) { m_lensAliasHasBeenSet = true; m_lensAlias.assign(value); } inline GetLensReviewReportRequest& WithLensAlias(const Aws::String& value) { SetLensAlias(value); return *this;} inline GetLensReviewReportRequest& WithLensAlias(Aws::String&& value) { SetLensAlias(std::move(value)); return *this;} inline GetLensReviewReportRequest& WithLensAlias(const char* value) { SetLensAlias(value); return *this;} inline int GetMilestoneNumber() const{ return m_milestoneNumber; } inline bool MilestoneNumberHasBeenSet() const { return m_milestoneNumberHasBeenSet; } inline void SetMilestoneNumber(int value) { m_milestoneNumberHasBeenSet = true; m_milestoneNumber = value; } inline GetLensReviewReportRequest& WithMilestoneNumber(int value) { SetMilestoneNumber(value); return *this;} private: Aws::String m_workloadId; bool m_workloadIdHasBeenSet = false; Aws::String m_lensAlias; bool m_lensAliasHasBeenSet = false; int m_milestoneNumber; bool m_milestoneNumberHasBeenSet = false; }; } // namespace Model } // namespace WellArchitected } // namespace Aws