public static interface GitConfig.Builder extends SdkPojo, CopyableBuilder<GitConfig.Builder,GitConfig>
Modifier and Type | Method and Description |
---|---|
GitConfig.Builder |
branch(String branch)
The default brach for the git repository.
|
GitConfig.Builder |
repositoryUrl(String repositoryUrl)
The URL where the git repository is located.
|
GitConfig.Builder |
secretArn(String secretArn)
The Amazon Resource Name (ARN) of the AWS Secrets Manager secret that contains the credentials used to access
the git repository.
|
copy
applyMutation, build
GitConfig.Builder repositoryUrl(String repositoryUrl)
The URL where the git repository is located.
repositoryUrl
- The URL where the git repository is located.GitConfig.Builder branch(String branch)
The default brach for the git repository.
branch
- The default brach for the git repository.GitConfig.Builder secretArn(String secretArn)
The Amazon Resource Name (ARN) of the AWS Secrets Manager secret that contains the credentials used to access
the git repository. The secret must have a staging label of AWSCURRENT
and must be in the
following format:
{"username": UserName, "password": Password}
secretArn
- The Amazon Resource Name (ARN) of the AWS Secrets Manager secret that contains the credentials used to
access the git repository. The secret must have a staging label of AWSCURRENT
and must be
in the following format:
{"username": UserName, "password": Password}
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.