ViolationDetail constructor

ViolationDetail({
  1. required String memberAccount,
  2. required String policyId,
  3. required String resourceId,
  4. required String resourceType,
  5. required List<ResourceViolation> resourceViolations,
  6. String? resourceDescription,
  7. List<Tag>? resourceTags,
})

Implementation

ViolationDetail({
  required this.memberAccount,
  required this.policyId,
  required this.resourceId,
  required this.resourceType,
  required this.resourceViolations,
  this.resourceDescription,
  this.resourceTags,
});