pub struct GetReportGroupTrendInput {
pub num_of_reports: Option<i64>,
pub report_group_arn: String,
pub trend_field: String,
}Fields§
§num_of_reports: Option<i64>The number of reports to analyze. This operation always retrieves the most recent reports.
If this parameter is omitted, the most recent 100 reports are analyzed.
report_group_arn: StringThe ARN of the report group that contains the reports to analyze.
trend_field: StringThe test report value to accumulate. This must be one of the following values:
- Test reports:
-
- DURATION
-
Accumulate the test run times for the specified reports.
- PASSRATE
-
Accumulate the percentage of tests that passed for the specified test reports.
- TOTAL
-
Accumulate the total number of tests for the specified test reports.
- Code coverage reports:
-
- BRANCHCOVERAGE
-
Accumulate the branch coverage percentages for the specified test reports.
- BRANCHESCOVERED
-
Accumulate the branches covered values for the specified test reports.
- BRANCHESMISSED
-
Accumulate the branches missed values for the specified test reports.
- LINECOVERAGE
-
Accumulate the line coverage percentages for the specified test reports.
- LINESCOVERED
-
Accumulate the lines covered values for the specified test reports.
- LINES_MISSED
-
Accumulate the lines not covered values for the specified test reports.
Trait Implementations§
Source§impl Clone for GetReportGroupTrendInput
impl Clone for GetReportGroupTrendInput
Source§fn clone(&self) -> GetReportGroupTrendInput
fn clone(&self) -> GetReportGroupTrendInput
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more