Pipeline constructor

Pipeline({
  1. UserContext? createdBy,
  2. DateTime? creationTime,
  3. UserContext? lastModifiedBy,
  4. DateTime? lastModifiedTime,
  5. DateTime? lastRunTime,
  6. String? pipelineArn,
  7. String? pipelineDescription,
  8. String? pipelineDisplayName,
  9. String? pipelineName,
  10. PipelineStatus? pipelineStatus,
  11. String? roleArn,
  12. List<Tag>? tags,
})

Implementation

Pipeline({
  this.createdBy,
  this.creationTime,
  this.lastModifiedBy,
  this.lastModifiedTime,
  this.lastRunTime,
  this.pipelineArn,
  this.pipelineDescription,
  this.pipelineDisplayName,
  this.pipelineName,
  this.pipelineStatus,
  this.roleArn,
  this.tags,
});