github.com/turbot/steampipe@v1.7.0-rc.0.0.20240517123944-7cef272d4458/pkg/dashboard/dashboardevents/control_error.go (about)

     1  package dashboardevents
     2  
     3  import (
     4  	"github.com/turbot/steampipe/pkg/control/controlstatus"
     5  	"time"
     6  )
     7  
     8  type ControlError struct {
     9  	Control     controlstatus.ControlRunStatusProvider
    10  	Progress    *controlstatus.ControlProgress
    11  	Name        string
    12  	Session     string
    13  	ExecutionId string
    14  	Timestamp   time.Time
    15  }
    16  
    17  // IsDashboardEvent implements DashboardEvent interface
    18  func (*ControlError) IsDashboardEvent() {}