ConnectionAliasArgs constructor

const ConnectionAliasArgs({
  1. required Input<String> connectionString,
  2. Input<String?>? region,
  3. Input<Map<String, String>?>? tags,
  4. Input<ConnectionAliasTimeouts?>? timeouts,
})

Creates a new ConnectionAliasArgs. connectionString The connection string specified for the connection alias. The connection string must be in the form of a fully qualified domain name (FQDN), such as www.example.com. region Region where this resource will be managed. Defaults to the Region set in the provider configuration. tags A map of tags assigned to the WorkSpaces Connection Alias. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level. timeouts Optional.

Implementation

const ConnectionAliasArgs({
  required this.connectionString,
  this.region,
  this.tags,
  this.timeouts,
});