Interface ImageScanningConfiguration.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<ImageScanningConfiguration.Builder,ImageScanningConfiguration>
,SdkBuilder<ImageScanningConfiguration.Builder,ImageScanningConfiguration>
,SdkPojo
- Enclosing class:
- ImageScanningConfiguration
public static interface ImageScanningConfiguration.Builder extends SdkPojo, CopyableBuilder<ImageScanningConfiguration.Builder,ImageScanningConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImageScanningConfiguration.Builder
scanOnPush(Boolean scanOnPush)
The setting that determines whether images are scanned after being pushed to a repository.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
scanOnPush
ImageScanningConfiguration.Builder scanOnPush(Boolean scanOnPush)
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 tofalse
and images will not be scanned unless a scan is manually started with the API_StartImageScan API.- Parameters:
scanOnPush
- The setting that determines whether images are scanned after being pushed to a repository. If set totrue
, images will be scanned after being pushed. If this parameter is not specified, it will default tofalse
and images will not be scanned unless a scan is manually started with the API_StartImageScan API.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-