Describe Image Scan Findings
| ecr_describe_image_scan_findings | R Documentation |
Returns the scan findings for the specified image¶
Description¶
Returns the scan findings for the specified image.
Usage¶
Arguments¶
registryIdThe Amazon Web Services account ID associated with the registry that contains the repository in which to describe the image scan findings for. If you do not specify a registry, the default registry is assumed.
repositoryName[required] The repository for the image for which to describe the scan findings.
imageId[required]
nextTokenThe
nextTokenvalue returned from a previous paginateddescribe_image_scan_findingsrequest wheremaxResultswas used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned thenextTokenvalue. This value is null when there are no more results to return.maxResultsThe maximum number of image scan results returned by
describe_image_scan_findingsin paginated output. When this parameter is used,describe_image_scan_findingsonly returnsmaxResultsresults in a single page along with anextTokenresponse element. The remaining results of the initial request can be seen by sending anotherdescribe_image_scan_findingsrequest with the returnednextTokenvalue. This value can be between 1 and 1000. If this parameter is not used, thendescribe_image_scan_findingsreturns up to 100 results and anextTokenvalue, if applicable.
Value¶
A list with the following syntax:
list(
registryId = "string",
repositoryName = "string",
imageId = list(
imageDigest = "string",
imageTag = "string"
),
imageScanStatus = list(
status = "IN_PROGRESS"|"COMPLETE"|"FAILED"|"UNSUPPORTED_IMAGE"|"ACTIVE"|"PENDING"|"SCAN_ELIGIBILITY_EXPIRED"|"FINDINGS_UNAVAILABLE",
description = "string"
),
imageScanFindings = list(
imageScanCompletedAt = as.POSIXct(
"2015-01-01"
),
vulnerabilitySourceUpdatedAt = as.POSIXct(
"2015-01-01"
),
findingSeverityCounts = list(
123
),
findings = list(
list(
name = "string",
description = "string",
uri = "string",
severity = "INFORMATIONAL"|"LOW"|"MEDIUM"|"HIGH"|"CRITICAL"|"UNDEFINED",
attributes = list(
list(
key = "string",
value = "string"
)
)
)
),
enhancedFindings = list(
list(
awsAccountId = "string",
description = "string",
findingArn = "string",
firstObservedAt = as.POSIXct(
"2015-01-01"
),
lastObservedAt = as.POSIXct(
"2015-01-01"
),
packageVulnerabilityDetails = list(
cvss = list(
list(
baseScore = 123.0,
scoringVector = "string",
source = "string",
version = "string"
)
),
referenceUrls = list(
"string"
),
relatedVulnerabilities = list(
"string"
),
source = "string",
sourceUrl = "string",
vendorCreatedAt = as.POSIXct(
"2015-01-01"
),
vendorSeverity = "string",
vendorUpdatedAt = as.POSIXct(
"2015-01-01"
),
vulnerabilityId = "string",
vulnerablePackages = list(
list(
arch = "string",
epoch = 123,
filePath = "string",
name = "string",
packageManager = "string",
release = "string",
sourceLayerHash = "string",
version = "string"
)
)
),
remediation = list(
recommendation = list(
url = "string",
text = "string"
)
),
resources = list(
list(
details = list(
awsEcrContainerImage = list(
architecture = "string",
author = "string",
imageHash = "string",
imageTags = list(
"string"
),
platform = "string",
pushedAt = as.POSIXct(
"2015-01-01"
),
registry = "string",
repositoryName = "string"
)
),
id = "string",
tags = list(
"string"
),
type = "string"
)
),
score = 123.0,
scoreDetails = list(
cvss = list(
adjustments = list(
list(
metric = "string",
reason = "string"
)
),
score = 123.0,
scoreSource = "string",
scoringVector = "string",
version = "string"
)
),
severity = "string",
status = "string",
title = "string",
type = "string",
updatedAt = as.POSIXct(
"2015-01-01"
)
)
)
),
nextToken = "string"
)