Stack constructor

Stack({
  1. required DateTime creationTime,
  2. required String stackName,
  3. required StackStatus stackStatus,
  4. List<Capability>? capabilities,
  5. String? changeSetId,
  6. DateTime? deletionTime,
  7. String? description,
  8. bool? disableRollback,
  9. StackDriftInformation? driftInformation,
  10. bool? enableTerminationProtection,
  11. DateTime? lastUpdatedTime,
  12. List<String>? notificationARNs,
  13. List<Output>? outputs,
  14. List<Parameter>? parameters,
  15. String? parentId,
  16. String? roleARN,
  17. RollbackConfiguration? rollbackConfiguration,
  18. String? rootId,
  19. String? stackId,
  20. String? stackStatusReason,
  21. List<Tag>? tags,
  22. int? timeoutInMinutes,
})

Implementation

Stack({
  required this.creationTime,
  required this.stackName,
  required this.stackStatus,
  this.capabilities,
  this.changeSetId,
  this.deletionTime,
  this.description,
  this.disableRollback,
  this.driftInformation,
  this.enableTerminationProtection,
  this.lastUpdatedTime,
  this.notificationARNs,
  this.outputs,
  this.parameters,
  this.parentId,
  this.roleARN,
  this.rollbackConfiguration,
  this.rootId,
  this.stackId,
  this.stackStatusReason,
  this.tags,
  this.timeoutInMinutes,
});