Updates the image scanning configuration for the specified repository.
ecr_put_image_scanning_configuration(registryId, repositoryName,
imageScanningConfiguration)
A list with the following syntax:
list(
registryId = "string",
repositoryName = "string",
imageScanningConfiguration = list(
scanOnPush = TRUE|FALSE
)
)
The AWS account ID associated with the registry that contains the repository in which to update the image scanning configuration setting. If you do not specify a registry, the default registry is assumed.
[required] The name of the repository in which to update the image scanning configuration setting.
[required] The image scanning configuration for the repository. This setting determines whether images are scanned for known vulnerabilities after being pushed to the repository.
svc$put_image_scanning_configuration(
registryId = "string",
repositoryName = "string",
imageScanningConfiguration = list(
scanOnPush = TRUE|FALSE
)
)