Interface SourceCode.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SourceCode.Builder,SourceCode>,SdkBuilder<SourceCode.Builder,SourceCode>,SdkPojo
- Enclosing class:
- SourceCode
public static interface SourceCode.Builder extends SdkPojo, CopyableBuilder<SourceCode.Builder,SourceCode>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SourceCode.Builderlocation(String location)The repository name for the source code.SourceCode.BuilderprojectName(String projectName)The name of the project.SourceCode.BuildersourceVersion(String sourceVersion)The branch of the source code.SourceCode.BuilderversionControl(String versionControl)The type of repository to use for the source code.SourceCode.BuilderversionControl(VersionControl versionControl)The type of repository to use for the source code.-
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
-
location
SourceCode.Builder location(String location)
The repository name for the source code.
- Parameters:
location- The repository name for the source code.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
projectName
SourceCode.Builder projectName(String projectName)
The name of the project.
- Parameters:
projectName- The name of the project.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sourceVersion
SourceCode.Builder sourceVersion(String sourceVersion)
The branch of the source code.
- Parameters:
sourceVersion- The branch of the source code.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
versionControl
SourceCode.Builder versionControl(String versionControl)
The type of repository to use for the source code.
- Parameters:
versionControl- The type of repository to use for the source code.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
VersionControl,VersionControl
-
versionControl
SourceCode.Builder versionControl(VersionControl versionControl)
The type of repository to use for the source code.
- Parameters:
versionControl- The type of repository to use for the source code.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
VersionControl,VersionControl
-
-