Interface ListFileCommitHistoryRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CodeCommitRequest.Builder,CopyableBuilder<ListFileCommitHistoryRequest.Builder,ListFileCommitHistoryRequest>,SdkBuilder<ListFileCommitHistoryRequest.Builder,ListFileCommitHistoryRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- ListFileCommitHistoryRequest
public static interface ListFileCommitHistoryRequest.Builder extends CodeCommitRequest.Builder, SdkPojo, CopyableBuilder<ListFileCommitHistoryRequest.Builder,ListFileCommitHistoryRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListFileCommitHistoryRequest.BuildercommitSpecifier(String commitSpecifier)The fully quaified reference that identifies the commit that contains the file.ListFileCommitHistoryRequest.BuilderfilePath(String filePath)The full path of the file whose history you want to retrieve, including the name of the file.ListFileCommitHistoryRequest.BuildermaxResults(Integer maxResults)A non-zero, non-negative integer used to limit the number of returned results.ListFileCommitHistoryRequest.BuildernextToken(String nextToken)An enumeration token that allows the operation to batch the results.ListFileCommitHistoryRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)ListFileCommitHistoryRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)ListFileCommitHistoryRequest.BuilderrepositoryName(String repositoryName)The name of the repository that contains the file.-
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
-
repositoryName
ListFileCommitHistoryRequest.Builder repositoryName(String repositoryName)
The name of the repository that contains the file.
- Parameters:
repositoryName- The name of the repository that contains the file.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
commitSpecifier
ListFileCommitHistoryRequest.Builder commitSpecifier(String commitSpecifier)
The fully quaified reference that identifies the commit that contains the file. For example, you can specify a full commit ID, a tag, a branch name, or a reference such as
refs/heads/main. If none is provided, the head commit is used.- Parameters:
commitSpecifier- The fully quaified reference that identifies the commit that contains the file. For example, you can specify a full commit ID, a tag, a branch name, or a reference such asrefs/heads/main. If none is provided, the head commit is used.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filePath
ListFileCommitHistoryRequest.Builder filePath(String filePath)
The full path of the file whose history you want to retrieve, including the name of the file.
- Parameters:
filePath- The full path of the file whose history you want to retrieve, including the name of the file.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxResults
ListFileCommitHistoryRequest.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
ListFileCommitHistoryRequest.Builder nextToken(String nextToken)
An enumeration token that allows the operation to batch the results.
- Parameters:
nextToken- An enumeration token that allows the operation to batch the results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
ListFileCommitHistoryRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
ListFileCommitHistoryRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-