Class: Aws::ECR::Types::ImageScanningConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECR::Types::ImageScanningConfiguration
- 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
-
#scan_on_push ⇒ Boolean
The setting that determines whether images are scanned after being pushed to a repository.
Instance Attribute Details
#scan_on_push ⇒ Boolean
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
2319 2320 2321 2322 2323 |
# File 'lib/aws-sdk-ecr/types.rb', line 2319 class ImageScanningConfiguration < Struct.new( :scan_on_push) SENSITIVE = [] include Aws::Structure end |