GetRepositoryEndpointArgs constructor

const GetRepositoryEndpointArgs({
  1. required Input<String> domain,
  2. Input<String?>? domainOwner,
  3. required Input<String> format,
  4. Input<String?>? region,
  5. required Input<String> repository,
})

Creates a new GetRepositoryEndpointArgs. domain Name of the domain that contains the repository. domainOwner Account number of the AWS account that owns the domain. format Which endpoint of a repository to return. A repository has one endpoint for each package format: npm, pypi, maven, and nuget. region Region where this resource will be managed. Defaults to the Region set in the provider configuration. repository Name of the repository.

Implementation

const GetRepositoryEndpointArgs({
  required this.domain,
  this.domainOwner,
  required this.format,
  this.region,
  required this.repository,
});