StackResourceDrift constructor

StackResourceDrift({
  1. required String logicalResourceId,
  2. required String resourceType,
  3. required String stackId,
  4. required StackResourceDriftStatus stackResourceDriftStatus,
  5. required DateTime timestamp,
  6. String? actualProperties,
  7. String? expectedProperties,
  8. ModuleInfo? moduleInfo,
  9. String? physicalResourceId,
  10. List<PhysicalResourceIdContextKeyValuePair>? physicalResourceIdContext,
  11. List<PropertyDifference>? propertyDifferences,
})

Implementation

StackResourceDrift({
  required this.logicalResourceId,
  required this.resourceType,
  required this.stackId,
  required this.stackResourceDriftStatus,
  required this.timestamp,
  this.actualProperties,
  this.expectedProperties,
  this.moduleInfo,
  this.physicalResourceId,
  this.physicalResourceIdContext,
  this.propertyDifferences,
});