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

     1  package mq
     2  
     3  import (
     4  	defsecTypes "github.com/khulnasoft-lab/defsec/pkg/types"
     5  )
     6  
     7  type MQ struct {
     8  	Brokers []Broker
     9  }
    10  
    11  type Broker struct {
    12  	Metadata     defsecTypes.Metadata
    13  	PublicAccess defsecTypes.BoolValue
    14  	Logging      Logging
    15  }
    16  
    17  type Logging struct {
    18  	Metadata defsecTypes.Metadata
    19  	General  defsecTypes.BoolValue
    20  	Audit    defsecTypes.BoolValue
    21  }