github.com/khulnasoft-lab/defsec@v1.0.5-0.20230827010352-5e9f46893d95/pkg/providers/aws/neptune/neptune.go (about) 1 package neptune 2 3 import ( 4 defsecTypes "github.com/khulnasoft-lab/defsec/pkg/types" 5 ) 6 7 type Neptune struct { 8 Clusters []Cluster 9 } 10 11 type Cluster struct { 12 Metadata defsecTypes.Metadata 13 Logging Logging 14 StorageEncrypted defsecTypes.BoolValue 15 KMSKeyID defsecTypes.StringValue 16 } 17 18 type Logging struct { 19 Metadata defsecTypes.Metadata 20 Audit defsecTypes.BoolValue 21 }