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

     1  package ec2
     2  
     3  type EC2 struct {
     4  	Instances            []Instance
     5  	LaunchConfigurations []LaunchConfiguration
     6  	LaunchTemplates      []LaunchTemplate
     7  	VPCs                 []VPC
     8  	SecurityGroups       []SecurityGroup
     9  	NetworkACLs          []NetworkACL
    10  	Subnets              []Subnet
    11  	Volumes              []Volume
    12  }