Interface TableMaintenanceJobStatusValue.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TableMaintenanceJobStatusValue.Builder,TableMaintenanceJobStatusValue>,SdkBuilder<TableMaintenanceJobStatusValue.Builder,TableMaintenanceJobStatusValue>,SdkPojo
- Enclosing class:
- TableMaintenanceJobStatusValue
public static interface TableMaintenanceJobStatusValue.Builder extends SdkPojo, CopyableBuilder<TableMaintenanceJobStatusValue.Builder,TableMaintenanceJobStatusValue>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TableMaintenanceJobStatusValue.BuilderfailureMessage(String failureMessage)The failure message of a failed job.TableMaintenanceJobStatusValue.BuilderlastRunTimestamp(Instant lastRunTimestamp)The date and time that the maintenance job was last run.TableMaintenanceJobStatusValue.Builderstatus(String status)The status of the job.TableMaintenanceJobStatusValue.Builderstatus(JobStatus status)The status of the job.-
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
TableMaintenanceJobStatusValue.Builder status(String status)
The status of the job.
-
status
TableMaintenanceJobStatusValue.Builder status(JobStatus status)
The status of the job.
-
lastRunTimestamp
TableMaintenanceJobStatusValue.Builder lastRunTimestamp(Instant lastRunTimestamp)
The date and time that the maintenance job was last run.
- Parameters:
lastRunTimestamp- The date and time that the maintenance job was last run.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
failureMessage
TableMaintenanceJobStatusValue.Builder failureMessage(String failureMessage)
The failure message of a failed job.
- Parameters:
failureMessage- The failure message of a failed job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-