github.com/khulnasoft-lab/defsec@v1.0.5-0.20230827010352-5e9f46893d95/pkg/providers/aws/workspaces/workspaces.go (about)

     1  package workspaces
     2  
     3  import (
     4  	defsecTypes "github.com/khulnasoft-lab/defsec/pkg/types"
     5  )
     6  
     7  type WorkSpaces struct {
     8  	WorkSpaces []WorkSpace
     9  }
    10  
    11  type WorkSpace struct {
    12  	Metadata   defsecTypes.Metadata
    13  	RootVolume Volume
    14  	UserVolume Volume
    15  }
    16  
    17  type Volume struct {
    18  	Metadata   defsecTypes.Metadata
    19  	Encryption Encryption
    20  }
    21  
    22  type Encryption struct {
    23  	Metadata defsecTypes.Metadata
    24  	Enabled  defsecTypes.BoolValue
    25  }