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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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.

[1]: docs.aws.amazon.com/AmazonECR/latest/APIReference/API_StartImageScan.html

Returns:

  • (Boolean)


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

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