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

     1  package ec2
     2  
     3  import (
     4  	defsecTypes "github.com/khulnasoft-lab/defsec/pkg/types"
     5  )
     6  
     7  type Volume struct {
     8  	Metadata   defsecTypes.Metadata
     9  	Encryption Encryption
    10  }
    11  
    12  type Encryption struct {
    13  	Metadata defsecTypes.Metadata
    14  	Enabled  defsecTypes.BoolValue
    15  	KMSKeyID defsecTypes.StringValue
    16  }