ProjectSecondarySourceVersion constructor

const ProjectSecondarySourceVersion({
  1. required Input<String> sourceIdentifier,
  2. required Input<String> sourceVersion,
})

Creates a new ProjectSecondarySourceVersion. sourceIdentifier An identifier for a source in the build project. sourceVersion The source version for the corresponding source identifier.

Implementation

const ProjectSecondarySourceVersion({
  required this.sourceIdentifier,
  required this.sourceVersion,
});