PipelineExecution constructor

PipelineExecution({
  1. UserContext? createdBy,
  2. DateTime? creationTime,
  3. UserContext? lastModifiedBy,
  4. DateTime? lastModifiedTime,
  5. String? pipelineArn,
  6. String? pipelineExecutionArn,
  7. String? pipelineExecutionDescription,
  8. String? pipelineExecutionDisplayName,
  9. PipelineExecutionStatus? pipelineExecutionStatus,
  10. List<Parameter>? pipelineParameters,
})

Implementation

PipelineExecution({
  this.createdBy,
  this.creationTime,
  this.lastModifiedBy,
  this.lastModifiedTime,
  this.pipelineArn,
  this.pipelineExecutionArn,
  this.pipelineExecutionDescription,
  this.pipelineExecutionDisplayName,
  this.pipelineExecutionStatus,
  this.pipelineParameters,
});