DistributionConfiguration constructor

DistributionConfiguration({
  1. required int timeoutMinutes,
  2. String? arn,
  3. String? dateCreated,
  4. String? dateUpdated,
  5. String? description,
  6. List<Distribution>? distributions,
  7. String? name,
  8. Map<String, String>? tags,
})

Implementation

DistributionConfiguration({
  required this.timeoutMinutes,
  this.arn,
  this.dateCreated,
  this.dateUpdated,
  this.description,
  this.distributions,
  this.name,
  this.tags,
});