Interface Target.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Target.Builder,Target>,SdkBuilder<Target.Builder,Target>,SdkPojo
- Enclosing class:
- Target
public static interface Target.Builder extends SdkPojo, CopyableBuilder<Target.Builder,Target>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Target.BuilderdestinationReference(String destinationReference)The branch of the repository where the pull request changes are merged.Target.BuilderrepositoryName(String repositoryName)The name of the repository that contains the pull request.Target.BuildersourceReference(String sourceReference)The branch of the repository that contains the changes for the pull request.-
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
Target.Builder repositoryName(String repositoryName)
The name of the repository that contains the pull request.
- Parameters:
repositoryName- The name of the repository that contains the pull request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sourceReference
Target.Builder sourceReference(String sourceReference)
The branch of the repository that contains the changes for the pull request. Also known as the source branch.
- Parameters:
sourceReference- The branch of the repository that contains the changes for the pull request. Also known as the source branch.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
destinationReference
Target.Builder destinationReference(String destinationReference)
The branch of the repository where the pull request changes are merged. Also known as the destination branch.
- Parameters:
destinationReference- The branch of the repository where the pull request changes are merged. Also known as the destination branch.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-