Interface ScanSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ScanSummary.Builder,ScanSummary>,SdkBuilder<ScanSummary.Builder,ScanSummary>,SdkPojo
- Enclosing class:
- ScanSummary
public static interface ScanSummary.Builder extends SdkPojo, CopyableBuilder<ScanSummary.Builder,ScanSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ScanSummary.BuildercreatedAt(Instant createdAt)The time when the scan was created.ScanSummary.BuilderrunId(String runId)The identifier for the scan run.ScanSummary.BuilderscanName(String scanName)The name of the scan.ScanSummary.BuilderscanNameArn(String scanNameArn)The ARN for the scan name.ScanSummary.BuilderscanState(String scanState)The state of the scan.ScanSummary.BuilderscanState(ScanState scanState)The state of the scan.ScanSummary.BuilderupdatedAt(Instant updatedAt)The time the scan was last updated.-
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
-
createdAt
ScanSummary.Builder createdAt(Instant createdAt)
The time when the scan was created.
- Parameters:
createdAt- The time when the scan was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
runId
ScanSummary.Builder runId(String runId)
The identifier for the scan run.
- Parameters:
runId- The identifier for the scan run.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
scanName
ScanSummary.Builder scanName(String scanName)
The name of the scan.
- Parameters:
scanName- The name of the scan.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
scanNameArn
ScanSummary.Builder scanNameArn(String scanNameArn)
The ARN for the scan name.
- Parameters:
scanNameArn- The ARN for the scan name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
scanState
ScanSummary.Builder scanState(String scanState)
The state of the scan. A scan can be
In Progress,Complete, orFailed.
-
scanState
ScanSummary.Builder scanState(ScanState scanState)
The state of the scan. A scan can be
In Progress,Complete, orFailed.
-
updatedAt
ScanSummary.Builder updatedAt(Instant updatedAt)
The time the scan was last updated. A scan is updated when it is re-run.
- Parameters:
updatedAt- The time the scan was last updated. A scan is updated when it is re-run.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-