Class: Aws::ECR::Types::ImageScanningConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECR::Types::ImageScanningConfiguration
- 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
-
#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.
2319 2320 2321 2322 2323 |
# File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 2319 class ImageScanningConfiguration < Struct.new( :scan_on_push) SENSITIVE = [] include Aws::Structure end |