List Scans
| codegurusecurity_list_scans | R Documentation |
Returns a list of all scans in an account¶
Description¶
Returns a list of all scans in an account. Does not return EXPRESS
scans.
Usage¶
codegurusecurity_list_scans(nextToken, maxResults)
Arguments¶
nextToken |
A token to use for paginating results that are returned in the
response. Set the value of this parameter to null for the first request.
For subsequent calls, use the |
maxResults |
The maximum number of results to return in the response. Use this
parameter when paginating results. If additional results exist beyond
the number you specify, the |
Value¶
A list with the following syntax:
list(
summaries = list(
list(
scanState = "InProgress"|"Successful"|"Failed",
createdAt = as.POSIXct(
"2015-01-01"
),
updatedAt = as.POSIXct(
"2015-01-01"
),
scanName = "string",
runId = "string",
scanNameArn = "string"
)
),
nextToken = "string"
)
Request syntax¶
svc$list_scans(
nextToken = "string",
maxResults = 123
)