Interface CodeRepositorySummary.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<CodeRepositorySummary.Builder,
,CodeRepositorySummary> SdkBuilder<CodeRepositorySummary.Builder,
,CodeRepositorySummary> SdkPojo
- Enclosing class:
CodeRepositorySummary
-
Method Summary
Modifier and TypeMethodDescriptioncodeRepositoryArn
(String codeRepositoryArn) The Amazon Resource Name (ARN) of the Git repository.codeRepositoryName
(String codeRepositoryName) The name of the Git repository.creationTime
(Instant creationTime) The date and time that the Git repository was created.default CodeRepositorySummary.Builder
gitConfig
(Consumer<GitConfig.Builder> gitConfig) Configuration details for the Git repository, including the URL where it is located and the ARN of the Amazon Web Services Secrets Manager secret that contains the credentials used to access the repository.Configuration details for the Git repository, including the URL where it is located and the ARN of the Amazon Web Services Secrets Manager secret that contains the credentials used to access the repository.lastModifiedTime
(Instant lastModifiedTime) The date and time that the Git repository was last modified.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 Details
-
codeRepositoryName
The name of the Git repository.
- Parameters:
codeRepositoryName
- The name of the Git repository.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
codeRepositoryArn
The Amazon Resource Name (ARN) of the Git repository.
- Parameters:
codeRepositoryArn
- The Amazon Resource Name (ARN) of the Git repository.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
creationTime
The date and time that the Git repository was created.
- Parameters:
creationTime
- The date and time that the Git repository was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastModifiedTime
The date and time that the Git repository was last modified.
- Parameters:
lastModifiedTime
- The date and time that the Git repository was last modified.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
gitConfig
Configuration details for the Git repository, including the URL where it is located and the ARN of the Amazon Web Services Secrets Manager secret that contains the credentials used to access the repository.
- Parameters:
gitConfig
- Configuration details for the Git repository, including the URL where it is located and the ARN of the Amazon Web Services Secrets Manager secret that contains the credentials used to access the repository.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
gitConfig
Configuration details for the Git repository, including the URL where it is located and the ARN of the Amazon Web Services Secrets Manager secret that contains the credentials used to access the repository.
This is a convenience method that creates an instance of theGitConfig.Builder
avoiding the need to create one manually viaGitConfig.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed togitConfig(GitConfig)
.- Parameters:
gitConfig
- a consumer that will call methods onGitConfig.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-