AnalyzerSummary constructor

AnalyzerSummary({
  1. required String arn,
  2. required DateTime createdAt,
  3. required String name,
  4. required AnalyzerStatus status,
  5. required Type type,
  6. String? lastResourceAnalyzed,
  7. DateTime? lastResourceAnalyzedAt,
  8. StatusReason? statusReason,
  9. Map<String, String>? tags,
})

Implementation

AnalyzerSummary({
  required this.arn,
  required this.createdAt,
  required this.name,
  required this.status,
  required this.type,
  this.lastResourceAnalyzed,
  this.lastResourceAnalyzedAt,
  this.statusReason,
  this.tags,
});