Interface PostCommentReplyRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CodeCommitRequest.Builder,CopyableBuilder<PostCommentReplyRequest.Builder,PostCommentReplyRequest>,SdkBuilder<PostCommentReplyRequest.Builder,PostCommentReplyRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- PostCommentReplyRequest
public static interface PostCommentReplyRequest.Builder extends CodeCommitRequest.Builder, SdkPojo, CopyableBuilder<PostCommentReplyRequest.Builder,PostCommentReplyRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PostCommentReplyRequest.BuilderclientRequestToken(String clientRequestToken)A unique, client-generated idempotency token that, when provided in a request, ensures the request cannot be repeated with a changed parameter.PostCommentReplyRequest.Buildercontent(String content)The contents of your reply to a comment.PostCommentReplyRequest.BuilderinReplyTo(String inReplyTo)The system-generated ID of the comment to which you want to reply.PostCommentReplyRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)PostCommentReplyRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.services.codecommit.model.CodeCommitRequest.Builder
build
-
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
-
inReplyTo
PostCommentReplyRequest.Builder inReplyTo(String inReplyTo)
The system-generated ID of the comment to which you want to reply. To get this ID, use GetCommentsForComparedCommit or GetCommentsForPullRequest.
- Parameters:
inReplyTo- The system-generated ID of the comment to which you want to reply. To get this ID, use GetCommentsForComparedCommit or GetCommentsForPullRequest.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
clientRequestToken
PostCommentReplyRequest.Builder clientRequestToken(String clientRequestToken)
A unique, client-generated idempotency token that, when provided in a request, ensures the request cannot be repeated with a changed parameter. If a request is received with the same parameters and a token is included, the request returns information about the initial request that used that token.
- Parameters:
clientRequestToken- A unique, client-generated idempotency token that, when provided in a request, ensures the request cannot be repeated with a changed parameter. If a request is received with the same parameters and a token is included, the request returns information about the initial request that used that token.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
content
PostCommentReplyRequest.Builder content(String content)
The contents of your reply to a comment.
- Parameters:
content- The contents of your reply to a comment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
PostCommentReplyRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
PostCommentReplyRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-