Interface ImageScanState.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ImageScanState.Builder,ImageScanState>,SdkBuilder<ImageScanState.Builder,ImageScanState>,SdkPojo
- Enclosing class:
- ImageScanState
public static interface ImageScanState.Builder extends SdkPojo, CopyableBuilder<ImageScanState.Builder,ImageScanState>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImageScanState.Builderreason(String reason)The reason for the scan status for the image.ImageScanState.Builderstatus(String status)The current state of vulnerability scans for the image.ImageScanState.Builderstatus(ImageScanStatus status)The current state of vulnerability scans for the image.-
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, sdkFields
-
-
-
-
Method Detail
-
status
ImageScanState.Builder status(String status)
The current state of vulnerability scans for the image.
- Parameters:
status- The current state of vulnerability scans for the image.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ImageScanStatus,ImageScanStatus
-
status
ImageScanState.Builder status(ImageScanStatus status)
The current state of vulnerability scans for the image.
- Parameters:
status- The current state of vulnerability scans for the image.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ImageScanStatus,ImageScanStatus
-
reason
ImageScanState.Builder reason(String reason)
The reason for the scan status for the image.
- Parameters:
reason- The reason for the scan status for the image.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-