/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about the statistics from the code review.See
* Also:
AWS
* API Reference
MeteredLinesOfCodeCount
is the number of lines of code in the
* repository where the code review happened. This does not include non-code lines
* such as comments and blank lines.
MeteredLinesOfCodeCount
is the number of lines of code in the
* repository where the code review happened. This does not include non-code lines
* such as comments and blank lines.
MeteredLinesOfCodeCount
is the number of lines of code in the
* repository where the code review happened. This does not include non-code lines
* such as comments and blank lines.
MeteredLinesOfCodeCount
is the number of lines of code in the
* repository where the code review happened. This does not include non-code lines
* such as comments and blank lines.
SuppressedLinesOfCodeCount
is the number of lines of code in
* the repository where the code review happened that CodeGuru Reviewer did not
* analyze. The lines suppressed in the analysis is based on the
* excludeFiles
variable in the aws-codeguru-reviewer.yml
* file. This number does not include non-code lines such as comments and blank
* lines.
SuppressedLinesOfCodeCount
is the number of lines of code in
* the repository where the code review happened that CodeGuru Reviewer did not
* analyze. The lines suppressed in the analysis is based on the
* excludeFiles
variable in the aws-codeguru-reviewer.yml
* file. This number does not include non-code lines such as comments and blank
* lines.
SuppressedLinesOfCodeCount
is the number of lines of code in
* the repository where the code review happened that CodeGuru Reviewer did not
* analyze. The lines suppressed in the analysis is based on the
* excludeFiles
variable in the aws-codeguru-reviewer.yml
* file. This number does not include non-code lines such as comments and blank
* lines.
SuppressedLinesOfCodeCount
is the number of lines of code in
* the repository where the code review happened that CodeGuru Reviewer did not
* analyze. The lines suppressed in the analysis is based on the
* excludeFiles
variable in the aws-codeguru-reviewer.yml
* file. This number does not include non-code lines such as comments and blank
* lines.
Total number of recommendations found in the code review.
*/ inline long long GetFindingsCount() const{ return m_findingsCount; } /** *Total number of recommendations found in the code review.
*/ inline bool FindingsCountHasBeenSet() const { return m_findingsCountHasBeenSet; } /** *Total number of recommendations found in the code review.
*/ inline void SetFindingsCount(long long value) { m_findingsCountHasBeenSet = true; m_findingsCount = value; } /** *Total number of recommendations found in the code review.
*/ inline Metrics& WithFindingsCount(long long value) { SetFindingsCount(value); return *this;} private: long long m_meteredLinesOfCodeCount; bool m_meteredLinesOfCodeCountHasBeenSet = false; long long m_suppressedLinesOfCodeCount; bool m_suppressedLinesOfCodeCountHasBeenSet = false; long long m_findingsCount; bool m_findingsCountHasBeenSet = false; }; } // namespace Model } // namespace CodeGuruReviewer } // namespace Aws