Interface LastCrawlInfo.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<LastCrawlInfo.Builder,LastCrawlInfo>,SdkBuilder<LastCrawlInfo.Builder,LastCrawlInfo>,SdkPojo
- Enclosing class:
- LastCrawlInfo
public static interface LastCrawlInfo.Builder extends SdkPojo, CopyableBuilder<LastCrawlInfo.Builder,LastCrawlInfo>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LastCrawlInfo.BuildererrorMessage(String errorMessage)If an error occurred, the error information about the last crawl.LastCrawlInfo.BuilderlogGroup(String logGroup)The log group for the last crawl.LastCrawlInfo.BuilderlogStream(String logStream)The log stream for the last crawl.LastCrawlInfo.BuildermessagePrefix(String messagePrefix)The prefix for a message about this crawl.LastCrawlInfo.BuilderstartTime(Instant startTime)The time at which the crawl started.LastCrawlInfo.Builderstatus(String status)Status of the last crawl.LastCrawlInfo.Builderstatus(LastCrawlStatus status)Status of the last crawl.-
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
-
status
LastCrawlInfo.Builder status(String status)
Status of the last crawl.
- Parameters:
status- Status of the last crawl.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
LastCrawlStatus,LastCrawlStatus
-
status
LastCrawlInfo.Builder status(LastCrawlStatus status)
Status of the last crawl.
- Parameters:
status- Status of the last crawl.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
LastCrawlStatus,LastCrawlStatus
-
errorMessage
LastCrawlInfo.Builder errorMessage(String errorMessage)
If an error occurred, the error information about the last crawl.
- Parameters:
errorMessage- If an error occurred, the error information about the last crawl.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
logGroup
LastCrawlInfo.Builder logGroup(String logGroup)
The log group for the last crawl.
- Parameters:
logGroup- The log group for the last crawl.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
logStream
LastCrawlInfo.Builder logStream(String logStream)
The log stream for the last crawl.
- Parameters:
logStream- The log stream for the last crawl.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
messagePrefix
LastCrawlInfo.Builder messagePrefix(String messagePrefix)
The prefix for a message about this crawl.
- Parameters:
messagePrefix- The prefix for a message about this crawl.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
startTime
LastCrawlInfo.Builder startTime(Instant startTime)
The time at which the crawl started.
- Parameters:
startTime- The time at which the crawl started.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-