Interface Folder.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Folder.Builder,Folder>,SdkBuilder<Folder.Builder,Folder>,SdkPojo
- Enclosing class:
- Folder
public static interface Folder.Builder extends SdkPojo, CopyableBuilder<Folder.Builder,Folder>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Folder.BuilderabsolutePath(String absolutePath)The fully qualified path of the folder in the repository.Folder.BuilderrelativePath(String relativePath)The relative path of the specified folder from the folder where the query originated.Folder.BuildertreeId(String treeId)The full SHA-1 pointer of the tree information for the commit that contains the folder.-
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
-
treeId
Folder.Builder treeId(String treeId)
The full SHA-1 pointer of the tree information for the commit that contains the folder.
- Parameters:
treeId- The full SHA-1 pointer of the tree information for the commit that contains the folder.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
absolutePath
Folder.Builder absolutePath(String absolutePath)
The fully qualified path of the folder in the repository.
- Parameters:
absolutePath- The fully qualified path of the folder in the repository.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
relativePath
Folder.Builder relativePath(String relativePath)
The relative path of the specified folder from the folder where the query originated.
- Parameters:
relativePath- The relative path of the specified folder from the folder where the query originated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-