Interface ChangeInfo.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ChangeInfo.Builder,ChangeInfo>,SdkBuilder<ChangeInfo.Builder,ChangeInfo>,SdkPojo
- Enclosing class:
- ChangeInfo
public static interface ChangeInfo.Builder extends SdkPojo, CopyableBuilder<ChangeInfo.Builder,ChangeInfo>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ChangeInfo.Buildercomment(String comment)A comment you can provide.ChangeInfo.Builderid(String id)This element contains an ID that you use when performing a GetChange action to get detailed information about the change.ChangeInfo.Builderstatus(String status)The current state of the request.ChangeInfo.Builderstatus(ChangeStatus status)The current state of the request.ChangeInfo.BuildersubmittedAt(Instant submittedAt)The date and time that the change request was submitted in ISO 8601 format and Coordinated Universal Time (UTC).-
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
-
id
ChangeInfo.Builder id(String id)
This element contains an ID that you use when performing a GetChange action to get detailed information about the change.
- Parameters:
id- This element contains an ID that you use when performing a GetChange action to get detailed information about the change.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
ChangeInfo.Builder status(String status)
The current state of the request.
PENDINGindicates that this request has not yet been applied to all Amazon Route 53 DNS servers.- Parameters:
status- The current state of the request.PENDINGindicates that this request has not yet been applied to all Amazon Route 53 DNS servers.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ChangeStatus,ChangeStatus
-
status
ChangeInfo.Builder status(ChangeStatus status)
The current state of the request.
PENDINGindicates that this request has not yet been applied to all Amazon Route 53 DNS servers.- Parameters:
status- The current state of the request.PENDINGindicates that this request has not yet been applied to all Amazon Route 53 DNS servers.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ChangeStatus,ChangeStatus
-
submittedAt
ChangeInfo.Builder submittedAt(Instant submittedAt)
The date and time that the change request was submitted 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:
submittedAt- The date and time that the change request was submitted 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.
-
comment
ChangeInfo.Builder comment(String comment)
A comment you can provide.
- Parameters:
comment- A comment you can provide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-