DomainArgs constructor

const DomainArgs({
  1. required Input<String> domain,
  2. Input<String?>? encryptionKey,
  3. Input<String?>? region,
  4. Input<Map<String, String>?>? tags,
})

Creates a new DomainArgs. domain The name of the domain to create. All domain names in an AWS Region that are in the same AWS account must be unique. The domain name is used as the prefix in DNS hostnames. Do not use sensitive information in a domain name because it is publicly discoverable. encryptionKey Encryption key for the domain. This is used to encrypt content stored in a domain. The KMS Key ARN. The default aws/codeartifact AWS KMS master key is used if this element is absent. region Region where this resource will be managed. Defaults to the Region set in the provider configuration. 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.

Implementation

const DomainArgs({
  required this.domain,
  this.encryptionKey,
  this.region,
  this.tags,
});