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¶
registryId
The 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]
nextToken
The
nextToken
value returned from a previous paginateddescribe_image_scan_findings
request wheremaxResults
was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned thenextToken
value. This value is null when there are no more results to return.maxResults
The maximum number of image scan results returned by
describe_image_scan_findings
in paginated output. When this parameter is used,describe_image_scan_findings
only returnsmaxResults
results in a single page along with anextToken
response element. The remaining results of the initial request can be seen by sending anotherdescribe_image_scan_findings
request with the returnednextToken
value. This value can be between 1 and 1000. If this parameter is not used, thendescribe_image_scan_findings
returns up to 100 results and anextToken
value, 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"
)