[][src]Struct rusoto_securityhub::AwsEc2SecurityGroupIpPermission

pub struct AwsEc2SecurityGroupIpPermission {
    pub from_port: Option<i64>,
    pub ip_protocol: Option<String>,
    pub ip_ranges: Option<Vec<AwsEc2SecurityGroupIpRange>>,
    pub ipv_6_ranges: Option<Vec<AwsEc2SecurityGroupIpv6Range>>,
    pub prefix_list_ids: Option<Vec<AwsEc2SecurityGroupPrefixListId>>,
    pub to_port: Option<i64>,
    pub user_id_group_pairs: Option<Vec<AwsEc2SecurityGroupUserIdGroupPair>>,
}

An IP permission for an EC2 security group.

Fields

from_port: Option<i64>

The start of the 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.

[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<AwsEc2SecurityGroupIpRange>>

The IPv4 ranges.

ipv_6_ranges: Option<Vec<AwsEc2SecurityGroupIpv6Range>>

The IPv6 ranges.

prefix_list_ids: Option<Vec<AwsEc2SecurityGroupPrefixListId>>

[VPC only] The prefix list IDs for an AWS service. With outbound rules, this is the AWS service to access through a VPC endpoint from instances associated with the security group.

to_port: Option<i64>

The end of the 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<AwsEc2SecurityGroupUserIdGroupPair>>

The security group and AWS account ID pairs.

Trait Implementations

impl Clone for AwsEc2SecurityGroupIpPermission[src]

impl Debug for AwsEc2SecurityGroupIpPermission[src]

impl Default for AwsEc2SecurityGroupIpPermission[src]

impl<'de> Deserialize<'de> for AwsEc2SecurityGroupIpPermission[src]

impl PartialEq<AwsEc2SecurityGroupIpPermission> for AwsEc2SecurityGroupIpPermission[src]

impl Serialize for AwsEc2SecurityGroupIpPermission[src]

impl StructuralPartialEq for AwsEc2SecurityGroupIpPermission[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.