SourceRepositoryArgs constructor

const SourceRepositoryArgs({
  1. Input<String?>? description,
  2. Input<String?>? name,
  3. required Input<String> projectName,
  4. Input<String?>? region,
  5. required Input<String> spaceName,
})

Creates a new SourceRepositoryArgs. description The description of the project. This description will be displayed to all users of the project. We recommend providing a brief description of the project and its intended purpose. name The name of the source repository. For more information about name requirements, see Quotas for source repositories. projectName The name of the project in the CodeCatalyst space. region Region where this resource will be managed. Defaults to the Region set in the provider configuration. spaceName The name of the CodeCatalyst space.

Implementation

const SourceRepositoryArgs({
  this.description,
  this.name,
  required this.projectName,
  this.region,
  required this.spaceName,
});