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

     1  package sam
     2  
     3  import (
     4  	defsecTypes "github.com/khulnasoft-lab/defsec/pkg/types"
     5  )
     6  
     7  type Application struct {
     8  	Metadata     defsecTypes.Metadata
     9  	LocationPath defsecTypes.StringValue
    10  	Location     Location
    11  }
    12  
    13  type Location struct {
    14  	Metadata        defsecTypes.Metadata
    15  	ApplicationID   defsecTypes.StringValue
    16  	SemanticVersion defsecTypes.StringValue
    17  }