Files
steampipe/pkg/dashboard/dashboardevents/control_error.go

19 lines
410 B
Go

package dashboardevents
import (
"github.com/turbot/steampipe/pkg/control/controlstatus"
"time"
)
type ControlError struct {
Control controlstatus.ControlRunStatusProvider
Progress *controlstatus.ControlProgress
Name string
Session string
ExecutionId string
Timestamp time.Time
}
// IsDashboardEvent implements DashboardEvent interface
func (*ControlError) IsDashboardEvent() {}