Interface GetDifferencesRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CodeCommitRequest.Builder,CopyableBuilder<GetDifferencesRequest.Builder,GetDifferencesRequest>,SdkBuilder<GetDifferencesRequest.Builder,GetDifferencesRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- GetDifferencesRequest
public static interface GetDifferencesRequest.Builder extends CodeCommitRequest.Builder, SdkPojo, CopyableBuilder<GetDifferencesRequest.Builder,GetDifferencesRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetDifferencesRequest.BuilderafterCommitSpecifier(String afterCommitSpecifier)The branch, tag, HEAD, or other fully qualified reference used to identify a commit.GetDifferencesRequest.BuilderafterPath(String afterPath)The file path in which to check differences.GetDifferencesRequest.BuilderbeforeCommitSpecifier(String beforeCommitSpecifier)The branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, the full commit ID).GetDifferencesRequest.BuilderbeforePath(String beforePath)The file path in which to check for differences.GetDifferencesRequest.BuildermaxResults(Integer maxResults)A non-zero, non-negative integer used to limit the number of returned results.GetDifferencesRequest.BuildernextToken(String nextToken)An enumeration token that, when provided in a request, returns the next batch of the results.GetDifferencesRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)GetDifferencesRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)GetDifferencesRequest.BuilderrepositoryName(String repositoryName)The name of the repository where you want to get differences.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
repositoryName
GetDifferencesRequest.Builder repositoryName(String repositoryName)
The name of the repository where you want to get differences.
- Parameters:
repositoryName- The name of the repository where you want to get differences.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
beforeCommitSpecifier
GetDifferencesRequest.Builder beforeCommitSpecifier(String beforeCommitSpecifier)
The branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, the full commit ID). Optional. If not specified, all changes before the
afterCommitSpecifiervalue are shown. If you do not usebeforeCommitSpecifierin your request, consider limiting the results withmaxResults.- Parameters:
beforeCommitSpecifier- The branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, the full commit ID). Optional. If not specified, all changes before theafterCommitSpecifiervalue are shown. If you do not usebeforeCommitSpecifierin your request, consider limiting the results withmaxResults.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
afterCommitSpecifier
GetDifferencesRequest.Builder afterCommitSpecifier(String afterCommitSpecifier)
The branch, tag, HEAD, or other fully qualified reference used to identify a commit.
- Parameters:
afterCommitSpecifier- The branch, tag, HEAD, or other fully qualified reference used to identify a commit.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
beforePath
GetDifferencesRequest.Builder beforePath(String beforePath)
The file path in which to check for differences. Limits the results to this path. Can also be used to specify the previous name of a directory or folder. If
beforePathandafterPathare not specified, differences are shown for all paths.- Parameters:
beforePath- The file path in which to check for differences. Limits the results to this path. Can also be used to specify the previous name of a directory or folder. IfbeforePathandafterPathare not specified, differences are shown for all paths.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
afterPath
GetDifferencesRequest.Builder afterPath(String afterPath)
The file path in which to check differences. Limits the results to this path. Can also be used to specify the changed name of a directory or folder, if it has changed. If not specified, differences are shown for all paths.
- Parameters:
afterPath- The file path in which to check differences. Limits the results to this path. Can also be used to specify the changed name of a directory or folder, if it has changed. If not specified, differences are shown for all paths.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxResults
GetDifferencesRequest.Builder maxResults(Integer maxResults)
A non-zero, non-negative integer used to limit the number of returned results.
- Parameters:
maxResults- A non-zero, non-negative integer used to limit the number of returned results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nextToken
GetDifferencesRequest.Builder nextToken(String nextToken)
An enumeration token that, when provided in a request, returns the next batch of the results.
- Parameters:
nextToken- An enumeration token that, when provided in a request, returns the next batch of the results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
GetDifferencesRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
GetDifferencesRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-