RepositoryArgs constructor

const RepositoryArgs({
  1. Input<String?>? description,
  2. required Input<String> domain,
  3. Input<String?>? domainOwner,
  4. Input<RepositoryExternalConnections?>? externalConnections,
  5. Input<String?>? region,
  6. required Input<String> repository,
  7. Input<Map<String, String>?>? tags,
  8. Input<List<RepositoryUpstream>?>? upstreams,
})

Creates a new RepositoryArgs. description The description of the repository. domain The domain that contains the created repository. domainOwner The account number of the AWS account that owns the domain. externalConnections An array of external connections associated with the repository. Only one external connection can be set per repository. see External Connections. region Region where this resource will be managed. Defaults to the Region set in the provider configuration. repository The name of the repository to create. tags Key-value map of resource tags. .If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level. upstreams A list of upstream repositories to associate with the repository. The order of the upstream repositories in the list determines their priority order when AWS CodeArtifact looks for a requested package version. see Upstream

Implementation

const RepositoryArgs({
  this.description,
  required this.domain,
  this.domainOwner,
  this.externalConnections,
  this.region,
  required this.repository,
  this.tags,
  this.upstreams,
});