mirror of
https://github.com/docker/docs.git
synced 2026-04-02 17:28:55 +07:00
9 lines
186 B
Go
9 lines
186 B
Go
package amz
|
|
|
|
type IpPermission struct {
|
|
IpProtocol string `xml:"ipProtocol"`
|
|
FromPort int `xml:"fromPort"`
|
|
ToPort int `xml:"toPort"`
|
|
IpRange string `xml:"ipRanges"`
|
|
}
|