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¶
ecr_describe_image_scan_findings(registryId, repositoryName, imageId,
nextToken, maxResults)
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 |
maxResults |
The maximum number of image scan results returned by
|
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"|"LIMIT_EXCEEDED",
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",
fixedInVersion = "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"
),
fixAvailable = "string",
exploitAvailable = "string"
)
)
),
nextToken = "string"
)
Request syntax¶
svc$describe_image_scan_findings(
registryId = "string",
repositoryName = "string",
imageId = list(
imageDigest = "string",
imageTag = "string"
),
nextToken = "string",
maxResults = 123
)