GetAuthorizationTokenArgs constructor

const GetAuthorizationTokenArgs({
  1. required Input<String> domain,
  2. Input<String?>? domainOwner,
  3. Input<int?>? durationSeconds,
  4. Input<String?>? region,
})

Creates a new GetAuthorizationTokenArgs. domain Name of the domain that is in scope for the generated authorization token. domainOwner Account number of the AWS account that owns the domain. durationSeconds Time, in seconds, that the generated authorization token is valid. Valid values are 0 and between 900 and 43200. region Region where this resource will be managed. Defaults to the Region set in the provider configuration.

Implementation

const GetAuthorizationTokenArgs({
  required this.domain,
  this.domainOwner,
  this.durationSeconds,
  this.region,
});