Interface ControlComment.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ControlComment.Builder,ControlComment>,SdkBuilder<ControlComment.Builder,ControlComment>,SdkPojo
- Enclosing class:
- ControlComment
public static interface ControlComment.Builder extends SdkPojo, CopyableBuilder<ControlComment.Builder,ControlComment>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ControlComment.BuilderauthorName(String authorName)The name of the user who authored the comment.ControlComment.BuildercommentBody(String commentBody)The body text of a control comment.ControlComment.BuilderpostedDate(Instant postedDate)The time when the comment was posted.-
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
-
authorName
ControlComment.Builder authorName(String authorName)
The name of the user who authored the comment.
- Parameters:
authorName- The name of the user who authored the comment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
commentBody
ControlComment.Builder commentBody(String commentBody)
The body text of a control comment.
- Parameters:
commentBody- The body text of a control comment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
postedDate
ControlComment.Builder postedDate(Instant postedDate)
The time when the comment was posted.
- Parameters:
postedDate- The time when the comment was posted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-