List Code Security Scan Configurations
| inspector2_list_code_security_scan_configurations | R Documentation |
Lists all code security scan configurations in your account¶
Description¶
Lists all code security scan configurations in your account.
Usage¶
inspector2_list_code_security_scan_configurations(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 NextToken value returned from the previous request to continue listing results after the first page. |
maxResults |
The maximum number of results to return in a single call. |
Value¶
A list with the following syntax:
list(
configurations = list(
list(
scanConfigurationArn = "string",
name = "string",
ownerAccountId = "string",
periodicScanFrequency = "WEEKLY"|"MONTHLY"|"NEVER",
frequencyExpression = "string",
continuousIntegrationScanSupportedEvents = list(
"PULL_REQUEST"|"PUSH"
),
ruleSetCategories = list(
"SAST"|"IAC"|"SCA"
),
scopeSettings = list(
projectSelectionScope = "ALL"
),
tags = list(
"string"
)
)
),
nextToken = "string"
)
Request syntax¶
svc$list_code_security_scan_configurations(
nextToken = "string",
maxResults = 123
)