Batch Get Reports
codebuild_batch_get_reports | R Documentation |
Returns an array of reports¶
Description¶
Returns an array of reports.
Usage¶
Arguments¶
reportArns
[required] An array of ARNs that identify the
Report
objects to return.
Value¶
A list with the following syntax:
list(
reports = list(
list(
arn = "string",
type = "TEST"|"CODE_COVERAGE",
name = "string",
reportGroupArn = "string",
executionId = "string",
status = "GENERATING"|"SUCCEEDED"|"FAILED"|"INCOMPLETE"|"DELETING",
created = as.POSIXct(
"2015-01-01"
),
expired = as.POSIXct(
"2015-01-01"
),
exportConfig = list(
exportConfigType = "S3"|"NO_EXPORT",
s3Destination = list(
bucket = "string",
bucketOwner = "string",
path = "string",
packaging = "ZIP"|"NONE",
encryptionKey = "string",
encryptionDisabled = TRUE|FALSE
)
),
truncated = TRUE|FALSE,
testSummary = list(
total = 123,
statusCounts = list(
123
),
durationInNanoSeconds = 123
),
codeCoverageSummary = list(
lineCoveragePercentage = 123.0,
linesCovered = 123,
linesMissed = 123,
branchCoveragePercentage = 123.0,
branchesCovered = 123,
branchesMissed = 123
)
)
),
reportsNotFound = list(
"string"
)
)