Class: Aws::ECR::Types::ImageScanningConfiguration

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb

Overview

The image scanning configuration for a repository.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#scan_on_pushBoolean

The setting that determines whether images are scanned after being pushed to a repository. If set to true, images will be scanned after being pushed. If this parameter is not specified, it will default to false and images will not be scanned unless a scan is manually started with the API_StartImageScan API.

Returns:

  • (Boolean)


2021
2022
2023
2024
2025
# File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 2021

class ImageScanningConfiguration < Struct.new(
  :scan_on_push)
  SENSITIVE = []
  include Aws::Structure
end