ServiceSourceConfigurationCodeRepositorySourceCodeVersion constructor

const ServiceSourceConfigurationCodeRepositorySourceCodeVersion({
  1. required Input<String> type,
  2. required Input<String> value,
})

Creates a new ServiceSourceConfigurationCodeRepositorySourceCodeVersion. type Type of version identifier. For a git-based repository, branches represent versions. Valid values: BRANCH. value Source code version. For a git-based repository, a branch name maps to a specific version. App Runner uses the most recent commit to the branch.

Implementation

const ServiceSourceConfigurationCodeRepositorySourceCodeVersion({
  required this.type,
  required this.value,
});