CodeRepositoryGitConfig constructor
const
CodeRepositoryGitConfig({})
Creates a new CodeRepositoryGitConfig.
branch The default branch for the Git repository.
repositoryUrl The URL where the Git repository is located.
secretArn 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}
Implementation
const CodeRepositoryGitConfig({
this.branch,
required this.repositoryUrl,
this.secretArn,
});