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

     1  package iam
     2  
     3  import (
     4  	defsecTypes "github.com/khulnasoft-lab/defsec/pkg/types"
     5  )
     6  
     7  type PasswordPolicy struct {
     8  	Metadata             defsecTypes.Metadata
     9  	ReusePreventionCount defsecTypes.IntValue
    10  	RequireLowercase     defsecTypes.BoolValue
    11  	RequireUppercase     defsecTypes.BoolValue
    12  	RequireNumbers       defsecTypes.BoolValue
    13  	RequireSymbols       defsecTypes.BoolValue
    14  	MaxAgeDays           defsecTypes.IntValue
    15  	MinimumLength        defsecTypes.IntValue
    16  }