Interface GitHubLocation.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<GitHubLocation.Builder,GitHubLocation>,SdkBuilder<GitHubLocation.Builder,GitHubLocation>,SdkPojo
- Enclosing class:
- GitHubLocation
public static interface GitHubLocation.Builder extends SdkPojo, CopyableBuilder<GitHubLocation.Builder,GitHubLocation>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GitHubLocation.BuildercommitId(String commitId)The SHA1 commit ID of the GitHub commit that represents the bundled artifacts for the application revision.GitHubLocation.Builderrepository(String repository)The GitHub account and repository pair that stores a reference to the commit that represents the bundled artifacts for the application revision.-
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
-
repository
GitHubLocation.Builder repository(String repository)
The GitHub account and repository pair that stores a reference to the commit that represents the bundled artifacts for the application revision.
Specified as account/repository.
- Parameters:
repository- The GitHub account and repository pair that stores a reference to the commit that represents the bundled artifacts for the application revision.Specified as account/repository.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
commitId
GitHubLocation.Builder commitId(String commitId)
The SHA1 commit ID of the GitHub commit that represents the bundled artifacts for the application revision.
- Parameters:
commitId- The SHA1 commit ID of the GitHub commit that represents the bundled artifacts for the application revision.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-