Interface StatusReport.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<StatusReport.Builder,StatusReport>,SdkBuilder<StatusReport.Builder,StatusReport>,SdkPojo
- Enclosing class:
- StatusReport
public static interface StatusReport.Builder extends SdkPojo, CopyableBuilder<StatusReport.Builder,StatusReport>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StatusReport.BuildercheckedTime(Instant checkedTime)The date and time that the health checker performed the health check in ISO 8601 format and Coordinated Universal Time (UTC).StatusReport.Builderstatus(String status)A description of the status of the health check endpoint as reported by one of the Amazon Route 53 health checkers.-
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
StatusReport.Builder status(String status)
A description of the status of the health check endpoint as reported by one of the Amazon Route 53 health checkers.
- Parameters:
status- A description of the status of the health check endpoint as reported by one of the Amazon Route 53 health checkers.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
checkedTime
StatusReport.Builder checkedTime(Instant checkedTime)
The date and time that the health checker performed the health check in ISO 8601 format and Coordinated Universal Time (UTC). For example, the value
2017-03-27T17:48:16.751Zrepresents March 27, 2017 at 17:48:16.751 UTC.- Parameters:
checkedTime- The date and time that the health checker performed the health check in ISO 8601 format and Coordinated Universal Time (UTC). For example, the value2017-03-27T17:48:16.751Zrepresents March 27, 2017 at 17:48:16.751 UTC.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-