CodeRepositoryArgs constructor

const CodeRepositoryArgs({
  1. required Input<String> codeRepositoryName,
  2. required Input<CodeRepositoryGitConfig> gitConfig,
  3. Input<String?>? region,
  4. Input<Map<String, String>?>? tags,
})

Creates a new CodeRepositoryArgs. codeRepositoryName The name of the Code Repository (must be unique). gitConfig Specifies details about the repository. see Git Config details below. region Region where this resource will be managed. Defaults to the Region set in the provider configuration. tags A map of tags to assign to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

Implementation

const CodeRepositoryArgs({
  required this.codeRepositoryName,
  required this.gitConfig,
  this.region,
  this.tags,
});