StackResource constructor

StackResource({
  1. required String logicalResourceId,
  2. required ResourceStatus resourceStatus,
  3. required String resourceType,
  4. required DateTime timestamp,
  5. String? description,
  6. StackResourceDriftInformation? driftInformation,
  7. ModuleInfo? moduleInfo,
  8. String? physicalResourceId,
  9. String? resourceStatusReason,
  10. String? stackId,
  11. String? stackName,
})

Implementation

StackResource({
  required this.logicalResourceId,
  required this.resourceStatus,
  required this.resourceType,
  required this.timestamp,
  this.description,
  this.driftInformation,
  this.moduleInfo,
  this.physicalResourceId,
  this.resourceStatusReason,
  this.stackId,
  this.stackName,
});