/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace CodeBuild { namespace Model { /** */ class BatchGetReportsRequest : public CodeBuildRequest { public: AWS_CODEBUILD_API BatchGetReportsRequest(); // 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 "BatchGetReports"; } AWS_CODEBUILD_API Aws::String SerializePayload() const override; AWS_CODEBUILD_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

An array of ARNs that identify the Report objects to return. *

*/ inline const Aws::Vector& GetReportArns() const{ return m_reportArns; } /** *

An array of ARNs that identify the Report objects to return. *

*/ inline bool ReportArnsHasBeenSet() const { return m_reportArnsHasBeenSet; } /** *

An array of ARNs that identify the Report objects to return. *

*/ inline void SetReportArns(const Aws::Vector& value) { m_reportArnsHasBeenSet = true; m_reportArns = value; } /** *

An array of ARNs that identify the Report objects to return. *

*/ inline void SetReportArns(Aws::Vector&& value) { m_reportArnsHasBeenSet = true; m_reportArns = std::move(value); } /** *

An array of ARNs that identify the Report objects to return. *

*/ inline BatchGetReportsRequest& WithReportArns(const Aws::Vector& value) { SetReportArns(value); return *this;} /** *

An array of ARNs that identify the Report objects to return. *

*/ inline BatchGetReportsRequest& WithReportArns(Aws::Vector&& value) { SetReportArns(std::move(value)); return *this;} /** *

An array of ARNs that identify the Report objects to return. *

*/ inline BatchGetReportsRequest& AddReportArns(const Aws::String& value) { m_reportArnsHasBeenSet = true; m_reportArns.push_back(value); return *this; } /** *

An array of ARNs that identify the Report objects to return. *

*/ inline BatchGetReportsRequest& AddReportArns(Aws::String&& value) { m_reportArnsHasBeenSet = true; m_reportArns.push_back(std::move(value)); return *this; } /** *

An array of ARNs that identify the Report objects to return. *

*/ inline BatchGetReportsRequest& AddReportArns(const char* value) { m_reportArnsHasBeenSet = true; m_reportArns.push_back(value); return *this; } private: Aws::Vector m_reportArns; bool m_reportArnsHasBeenSet = false; }; } // namespace Model } // namespace CodeBuild } // namespace Aws