Struct aws_sdk_ec2::model::IpPermission [−][src]
#[non_exhaustive]pub struct IpPermission {
pub from_port: Option<i32>,
pub ip_protocol: Option<String>,
pub ip_ranges: Option<Vec<IpRange>>,
pub ipv6_ranges: Option<Vec<Ipv6Range>>,
pub prefix_list_ids: Option<Vec<PrefixListId>>,
pub to_port: Option<i32>,
pub user_id_group_pairs: Option<Vec<UserIdGroupPair>>,
}
Expand description
Describes a set of permissions for a security group rule.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.from_port: Option<i32>
The start of port range for the TCP and UDP protocols, or an ICMP/ICMPv6 type number.
A value of -1
indicates all ICMP/ICMPv6 types. If you specify all
ICMP/ICMPv6 types, you must specify all codes.
ip_protocol: Option<String>
The IP protocol name (tcp
, udp
, icmp
, icmpv6
)
or number (see Protocol Numbers).
[VPC only] Use -1
to specify all protocols. When authorizing
security group rules, specifying -1
or a protocol number other than
tcp
, udp
, icmp
, or icmpv6
allows
traffic on all ports, regardless of any port range you specify. For tcp
,
udp
, and icmp
, you must specify a port range. For icmpv6
,
the port range is optional; if you omit the port range, traffic for all types and codes is allowed.
ip_ranges: Option<Vec<IpRange>>
The IPv4 ranges.
ipv6_ranges: Option<Vec<Ipv6Range>>
[VPC only] The IPv6 ranges.
prefix_list_ids: Option<Vec<PrefixListId>>
[VPC only] The prefix list IDs.
to_port: Option<i32>
The end of port range for the TCP and UDP protocols, or an ICMP/ICMPv6 code. A value
of -1
indicates all ICMP/ICMPv6 codes. If you specify all ICMP/ICMPv6 types,
you must specify all codes.
user_id_group_pairs: Option<Vec<UserIdGroupPair>>
The security group and Amazon Web Services account ID pairs.
Implementations
The start of port range for the TCP and UDP protocols, or an ICMP/ICMPv6 type number.
A value of -1
indicates all ICMP/ICMPv6 types. If you specify all
ICMP/ICMPv6 types, you must specify all codes.
The IP protocol name (tcp
, udp
, icmp
, icmpv6
)
or number (see Protocol Numbers).
[VPC only] Use -1
to specify all protocols. When authorizing
security group rules, specifying -1
or a protocol number other than
tcp
, udp
, icmp
, or icmpv6
allows
traffic on all ports, regardless of any port range you specify. For tcp
,
udp
, and icmp
, you must specify a port range. For icmpv6
,
the port range is optional; if you omit the port range, traffic for all types and codes is allowed.
[VPC only] The prefix list IDs.
The end of port range for the TCP and UDP protocols, or an ICMP/ICMPv6 code. A value
of -1
indicates all ICMP/ICMPv6 codes. If you specify all ICMP/ICMPv6 types,
you must specify all codes.
The security group and Amazon Web Services account ID pairs.
Creates a new builder-style object to manufacture IpPermission
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for IpPermission
impl Send for IpPermission
impl Sync for IpPermission
impl Unpin for IpPermission
impl UnwindSafe for IpPermission
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more