github.com/khulnasoft-lab/defsec@v1.0.5-0.20230827010352-5e9f46893d95/pkg/providers/aws/efs/efs.go (about) 1 package efs 2 3 import ( 4 defsecTypes "github.com/khulnasoft-lab/defsec/pkg/types" 5 ) 6 7 type EFS struct { 8 FileSystems []FileSystem 9 } 10 11 type FileSystem struct { 12 Metadata defsecTypes.Metadata 13 Encrypted defsecTypes.BoolValue 14 }