Certificate constructor

Certificate({
  1. String? arn,
  2. DateTime? createdAt,
  3. String? domainName,
  4. List<DomainValidationRecord>? domainValidationRecords,
  5. String? eligibleToRenew,
  6. int? inUseResourceCount,
  7. DateTime? issuedAt,
  8. String? issuerCA,
  9. String? keyAlgorithm,
  10. String? name,
  11. DateTime? notAfter,
  12. DateTime? notBefore,
  13. RenewalSummary? renewalSummary,
  14. String? requestFailureReason,
  15. String? revocationReason,
  16. DateTime? revokedAt,
  17. String? serialNumber,
  18. CertificateStatus? status,
  19. List<String>? subjectAlternativeNames,
  20. String? supportCode,
  21. List<Tag>? tags,
})

Implementation

Certificate({
  this.arn,
  this.createdAt,
  this.domainName,
  this.domainValidationRecords,
  this.eligibleToRenew,
  this.inUseResourceCount,
  this.issuedAt,
  this.issuerCA,
  this.keyAlgorithm,
  this.name,
  this.notAfter,
  this.notBefore,
  this.renewalSummary,
  this.requestFailureReason,
  this.revocationReason,
  this.revokedAt,
  this.serialNumber,
  this.status,
  this.subjectAlternativeNames,
  this.supportCode,
  this.tags,
});