github.com/turbot/steampipe@v1.7.0-rc.0.0.20240517123944-7cef272d4458/pkg/control/controlexecute/dimension.go (about)

     1  package controlexecute
     2  
     3  // Dimension is a struct representing an attribute returned by a control run.
     4  // An attribute is stored as a dimension if it's not a standard attribute (reason, resource, status).
     5  type Dimension struct {
     6  	Key     string `json:"key"`
     7  	Value   string `json:"value"`
     8  	SqlType string `json:"-"`
     9  }