Class: Aws::ECR::Types::RegistryScanningRule
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECR::Types::RegistryScanningRule
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ecr/types.rb
Overview
The details of a scanning rule for a private registry.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#repository_filters ⇒ Array<Types::ScanningRepositoryFilter>
The repository filters associated with the scanning configuration for a private registry.
-
#scan_frequency ⇒ String
The frequency that scans are performed at for a private registry.
Instance Attribute Details
#repository_filters ⇒ Array<Types::ScanningRepositoryFilter>
The repository filters associated with the scanning configuration for a private registry.
3409 3410 3411 3412 3413 3414 |
# File 'lib/aws-sdk-ecr/types.rb', line 3409 class RegistryScanningRule < Struct.new( :scan_frequency, :repository_filters) SENSITIVE = [] include Aws::Structure end |
#scan_frequency ⇒ String
The frequency that scans are performed at for a private registry. When the ‘ENHANCED` scan type is specified, the supported scan frequencies are `CONTINUOUS_SCAN` and `SCAN_ON_PUSH`. When the `BASIC` scan type is specified, the `SCAN_ON_PUSH` scan frequency is supported. If scan on push is not specified, then the `MANUAL` scan frequency is set by default.
3409 3410 3411 3412 3413 3414 |
# File 'lib/aws-sdk-ecr/types.rb', line 3409 class RegistryScanningRule < Struct.new( :scan_frequency, :repository_filters) SENSITIVE = [] include Aws::Structure end |