We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8bdd72e commit 1f35253Copy full SHA for 1f35253
pkg/model/ec2/security_group_ingress.go
@@ -18,6 +18,12 @@ type UserIDGroupPair struct {
18
Description string `json:"description,omitempty"`
19
}
20
21
+type PrefixList struct {
22
+ ListID string `json:"listID"`
23
+ // +optional
24
+ Description string `json:"description,omitempty"`
25
+}
26
+
27
type IPPermission struct {
28
IPProtocol string `json:"ipProtocol"`
29
// +optional
@@ -30,4 +36,6 @@ type IPPermission struct {
30
36
IPv6Range []IPv6Range `json:"ipv6Ranges,omitempty"`
31
37
32
38
UserIDGroupPairs []UserIDGroupPair `json:"userIDGroupPairs,omitempty"`
39
40
+ PrefixLists []PrefixList `json:"prefixLists,omitempty"`
33
41
0 commit comments