RepositoryExternalConnections constructor

const RepositoryExternalConnections({
  1. required Input<String> externalConnectionName,
  2. Input<String?>? packageFormat,
  3. Input<String?>? status,
})

Creates a new RepositoryExternalConnections. externalConnectionName The name of the external connection associated with a repository. packageFormat Optional. status Optional.

Implementation

const RepositoryExternalConnections({
  required this.externalConnectionName,
  this.packageFormat,
  this.status,
});