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

     1  package kms
     2  
     3  import (
     4  	defsecTypes "github.com/khulnasoft-lab/defsec/pkg/types"
     5  )
     6  
     7  type KMS struct {
     8  	Keys []Key
     9  }
    10  
    11  const (
    12  	KeyUsageSignAndVerify = "SIGN_VERIFY"
    13  )
    14  
    15  type Key struct {
    16  	Metadata        defsecTypes.Metadata
    17  	Usage           defsecTypes.StringValue
    18  	RotationEnabled defsecTypes.BoolValue
    19  }