StackResourceDetail constructor

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

Implementation

StackResourceDetail({
  required this.lastUpdatedTimestamp,
  required this.logicalResourceId,
  required this.resourceStatus,
  required this.resourceType,
  this.description,
  this.driftInformation,
  this.metadata,
  this.moduleInfo,
  this.physicalResourceId,
  this.resourceStatusReason,
  this.stackId,
  this.stackName,
});