Interface CreatePullRequestRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CodeCommitRequest.Builder,CopyableBuilder<CreatePullRequestRequest.Builder,CreatePullRequestRequest>,SdkBuilder<CreatePullRequestRequest.Builder,CreatePullRequestRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- CreatePullRequestRequest
public static interface CreatePullRequestRequest.Builder extends CodeCommitRequest.Builder, SdkPojo, CopyableBuilder<CreatePullRequestRequest.Builder,CreatePullRequestRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CreatePullRequestRequest.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.CreatePullRequestRequest.Builderdescription(String description)A description of the pull request.CreatePullRequestRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)CreatePullRequestRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)CreatePullRequestRequest.Buildertargets(Collection<Target> targets)The targets for the pull request, including the source of the code to be reviewed (the source branch) and the destination where the creator of the pull request intends the code to be merged after the pull request is closed (the destination branch).CreatePullRequestRequest.Buildertargets(Consumer<Target.Builder>... targets)The targets for the pull request, including the source of the code to be reviewed (the source branch) and the destination where the creator of the pull request intends the code to be merged after the pull request is closed (the destination branch).CreatePullRequestRequest.Buildertargets(Target... targets)The targets for the pull request, including the source of the code to be reviewed (the source branch) and the destination where the creator of the pull request intends the code to be merged after the pull request is closed (the destination branch).CreatePullRequestRequest.Buildertitle(String title)The title of the pull request.-
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
-
title
CreatePullRequestRequest.Builder title(String title)
The title of the pull request. This title is used to identify the pull request to other users in the repository.
- Parameters:
title- The title of the pull request. This title is used to identify the pull request to other users in the repository.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
CreatePullRequestRequest.Builder description(String description)
A description of the pull request.
- Parameters:
description- A description of the pull request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
targets
CreatePullRequestRequest.Builder targets(Collection<Target> targets)
The targets for the pull request, including the source of the code to be reviewed (the source branch) and the destination where the creator of the pull request intends the code to be merged after the pull request is closed (the destination branch).
- Parameters:
targets- The targets for the pull request, including the source of the code to be reviewed (the source branch) and the destination where the creator of the pull request intends the code to be merged after the pull request is closed (the destination branch).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
targets
CreatePullRequestRequest.Builder targets(Target... targets)
The targets for the pull request, including the source of the code to be reviewed (the source branch) and the destination where the creator of the pull request intends the code to be merged after the pull request is closed (the destination branch).
- Parameters:
targets- The targets for the pull request, including the source of the code to be reviewed (the source branch) and the destination where the creator of the pull request intends the code to be merged after the pull request is closed (the destination branch).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
targets
CreatePullRequestRequest.Builder targets(Consumer<Target.Builder>... targets)
The targets for the pull request, including the source of the code to be reviewed (the source branch) and the destination where the creator of the pull request intends the code to be merged after the pull request is closed (the destination branch).
This is a convenience method that creates an instance of theTarget.Builderavoiding the need to create one manually viaTarget.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#targets(List.) - Parameters:
targets- a consumer that will call methods onTarget.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#targets(java.util.Collection)
-
clientRequestToken
CreatePullRequestRequest.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.
The Amazon Web ServicesSDKs prepopulate client request tokens. If you are using an Amazon Web ServicesSDK, an idempotency token is created for you.
- 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.The Amazon Web ServicesSDKs prepopulate client request tokens. If you are using an Amazon Web ServicesSDK, an idempotency token is created for you.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
CreatePullRequestRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
CreatePullRequestRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-