cinnanet/cloc/aws.go

24 lines
582 B
Go

package cloc
type Prefixes struct {
Prefixes []Prefix `json:"prefixes"`
}
type Prefixesv6 struct {
Prefixesv6 []Prefixv6 `json:"ipv6_prefixes"`
}
type Prefix struct {
Ip_prefix string `json:"ip_prefix"`
Region string `json:"region"`
Service string `json:"service"`
NBG string `json:"network_border_group"`
}
type Prefixv6 struct {
Ipv6_prefix string `json:"ipv6_prefix"`
Region string `json:"region"`
Service string `json:"service"`
NBG string `json:"network_border_group"`
}