StackEvent constructor

StackEvent({
  1. required String eventId,
  2. required String stackId,
  3. required String stackName,
  4. required DateTime timestamp,
  5. String? clientRequestToken,
  6. String? logicalResourceId,
  7. String? physicalResourceId,
  8. String? resourceProperties,
  9. ResourceStatus? resourceStatus,
  10. String? resourceStatusReason,
  11. String? resourceType,
})

Implementation

StackEvent({
  required this.eventId,
  required this.stackId,
  required this.stackName,
  required this.timestamp,
  this.clientRequestToken,
  this.logicalResourceId,
  this.physicalResourceId,
  this.resourceProperties,
  this.resourceStatus,
  this.resourceStatusReason,
  this.resourceType,
});