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