@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public class IpPermission extends Object implements Serializable, Cloneable
Describes a set of permissions for a security group rule.
Constructor and Description |
---|
IpPermission() |
Modifier and Type | Method and Description |
---|---|
IpPermission |
clone() |
boolean |
equals(Object obj) |
Integer |
getFromPort()
The start of port range for the TCP and UDP protocols, or an ICMP/ICMPv6 type number.
|
String |
getIpProtocol()
|
List<String> |
getIpRanges()
Deprecated.
Use
getIpv4Ranges() . |
List<IpRange> |
getIpv4Ranges()
One or more IPv4 ranges.
|
List<Ipv6Range> |
getIpv6Ranges()
[EC2-VPC only] One or more IPv6 ranges.
|
List<PrefixListId> |
getPrefixListIds()
(Valid for AuthorizeSecurityGroupEgress, RevokeSecurityGroupEgress and
DescribeSecurityGroups only) One or more prefix list IDs for an AWS service.
|
Integer |
getToPort()
The end of port range for the TCP and UDP protocols, or an ICMP/ICMPv6 code.
|
List<UserIdGroupPair> |
getUserIdGroupPairs()
One or more security group and AWS account ID pairs.
|
int |
hashCode() |
void |
setFromPort(Integer fromPort)
The start of port range for the TCP and UDP protocols, or an ICMP/ICMPv6 type number.
|
void |
setIpProtocol(String ipProtocol)
|
void |
setIpRanges(Collection<String> ipRanges)
Deprecated.
|
void |
setIpv4Ranges(Collection<IpRange> ipv4Ranges)
One or more IPv4 ranges.
|
void |
setIpv6Ranges(Collection<Ipv6Range> ipv6Ranges)
[EC2-VPC only] One or more IPv6 ranges.
|
void |
setPrefixListIds(Collection<PrefixListId> prefixListIds)
(Valid for AuthorizeSecurityGroupEgress, RevokeSecurityGroupEgress and
DescribeSecurityGroups only) One or more prefix list IDs for an AWS service.
|
void |
setToPort(Integer toPort)
The end of port range for the TCP and UDP protocols, or an ICMP/ICMPv6 code.
|
void |
setUserIdGroupPairs(Collection<UserIdGroupPair> userIdGroupPairs)
One or more security group and AWS account ID pairs.
|
String |
toString()
Returns a string representation of this object; useful for testing and debugging.
|
IpPermission |
withFromPort(Integer fromPort)
The start of port range for the TCP and UDP protocols, or an ICMP/ICMPv6 type number.
|
IpPermission |
withIpProtocol(String ipProtocol)
|
IpPermission |
withIpRanges(Collection<String> ipRanges)
Deprecated.
|
IpPermission |
withIpRanges(String... ipRanges)
Deprecated.
|
IpPermission |
withIpv4Ranges(Collection<IpRange> ipv4Ranges)
One or more IPv4 ranges.
|
IpPermission |
withIpv4Ranges(IpRange... ipv4Ranges)
One or more IPv4 ranges.
|
IpPermission |
withIpv6Ranges(Collection<Ipv6Range> ipv6Ranges)
[EC2-VPC only] One or more IPv6 ranges.
|
IpPermission |
withIpv6Ranges(Ipv6Range... ipv6Ranges)
[EC2-VPC only] One or more IPv6 ranges.
|
IpPermission |
withPrefixListIds(Collection<PrefixListId> prefixListIds)
(Valid for AuthorizeSecurityGroupEgress, RevokeSecurityGroupEgress and
DescribeSecurityGroups only) One or more prefix list IDs for an AWS service.
|
IpPermission |
withPrefixListIds(PrefixListId... prefixListIds)
(Valid for AuthorizeSecurityGroupEgress, RevokeSecurityGroupEgress and
DescribeSecurityGroups only) One or more prefix list IDs for an AWS service.
|
IpPermission |
withToPort(Integer toPort)
The end of port range for the TCP and UDP protocols, or an ICMP/ICMPv6 code.
|
IpPermission |
withUserIdGroupPairs(Collection<UserIdGroupPair> userIdGroupPairs)
One or more security group and AWS account ID pairs.
|
IpPermission |
withUserIdGroupPairs(UserIdGroupPair... userIdGroupPairs)
One or more security group and AWS account ID pairs.
|
public void setFromPort(Integer fromPort)
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.
fromPort
- 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.public Integer getFromPort()
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.
-1
indicates all ICMP/ICMPv6 types. If you specify all ICMP/ICMPv6 types, you must specify
all codes.public IpPermission withFromPort(Integer fromPort)
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.
fromPort
- 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.public void setIpProtocol(String ipProtocol)
The IP protocol name (tcp
, udp
, icmp
) or number (see Protocol Numbers).
[EC2-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
58
(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 58
(ICMPv6), you can optionally specify a port range; if you don't, traffic for all types and codes is allowed when
authorizing rules.
ipProtocol
- The IP protocol name (tcp
, udp
, icmp
) or number (see Protocol Numbers).
[EC2-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 58
(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 58
(ICMPv6), you can optionally specify a port range; if you don't, traffic for all types
and codes is allowed when authorizing rules.
public String getIpProtocol()
The IP protocol name (tcp
, udp
, icmp
) or number (see Protocol Numbers).
[EC2-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
58
(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 58
(ICMPv6), you can optionally specify a port range; if you don't, traffic for all types and codes is allowed when
authorizing rules.
tcp
, udp
, icmp
) or number (see Protocol Numbers).
[EC2-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 58
(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 58
(ICMPv6), you can optionally specify a port range; if you don't, traffic for
all types and codes is allowed when authorizing rules.
public IpPermission withIpProtocol(String ipProtocol)
The IP protocol name (tcp
, udp
, icmp
) or number (see Protocol Numbers).
[EC2-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
58
(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 58
(ICMPv6), you can optionally specify a port range; if you don't, traffic for all types and codes is allowed when
authorizing rules.
ipProtocol
- The IP protocol name (tcp
, udp
, icmp
) or number (see Protocol Numbers).
[EC2-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 58
(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 58
(ICMPv6), you can optionally specify a port range; if you don't, traffic for all types
and codes is allowed when authorizing rules.
public List<Ipv6Range> getIpv6Ranges()
[EC2-VPC only] One or more IPv6 ranges.
public void setIpv6Ranges(Collection<Ipv6Range> ipv6Ranges)
[EC2-VPC only] One or more IPv6 ranges.
ipv6Ranges
- [EC2-VPC only] One or more IPv6 ranges.public IpPermission withIpv6Ranges(Ipv6Range... ipv6Ranges)
[EC2-VPC only] One or more IPv6 ranges.
NOTE: This method appends the values to the existing list (if any). Use
setIpv6Ranges(java.util.Collection)
or withIpv6Ranges(java.util.Collection)
if you want to
override the existing values.
ipv6Ranges
- [EC2-VPC only] One or more IPv6 ranges.public IpPermission withIpv6Ranges(Collection<Ipv6Range> ipv6Ranges)
[EC2-VPC only] One or more IPv6 ranges.
ipv6Ranges
- [EC2-VPC only] One or more IPv6 ranges.public List<PrefixListId> getPrefixListIds()
(Valid for AuthorizeSecurityGroupEgress, RevokeSecurityGroupEgress and DescribeSecurityGroups only) One or more prefix list IDs for an AWS service. In an AuthorizeSecurityGroupEgress request, this is the AWS service that you want to access through a VPC endpoint from instances associated with the security group.
public void setPrefixListIds(Collection<PrefixListId> prefixListIds)
(Valid for AuthorizeSecurityGroupEgress, RevokeSecurityGroupEgress and DescribeSecurityGroups only) One or more prefix list IDs for an AWS service. In an AuthorizeSecurityGroupEgress request, this is the AWS service that you want to access through a VPC endpoint from instances associated with the security group.
prefixListIds
- (Valid for AuthorizeSecurityGroupEgress, RevokeSecurityGroupEgress and
DescribeSecurityGroups only) One or more prefix list IDs for an AWS service. In an
AuthorizeSecurityGroupEgress request, this is the AWS service that you want to access through a VPC
endpoint from instances associated with the security group.public IpPermission withPrefixListIds(PrefixListId... prefixListIds)
(Valid for AuthorizeSecurityGroupEgress, RevokeSecurityGroupEgress and DescribeSecurityGroups only) One or more prefix list IDs for an AWS service. In an AuthorizeSecurityGroupEgress request, this is the AWS service that you want to access through a VPC endpoint from instances associated with the security group.
NOTE: This method appends the values to the existing list (if any). Use
setPrefixListIds(java.util.Collection)
or withPrefixListIds(java.util.Collection)
if you want
to override the existing values.
prefixListIds
- (Valid for AuthorizeSecurityGroupEgress, RevokeSecurityGroupEgress and
DescribeSecurityGroups only) One or more prefix list IDs for an AWS service. In an
AuthorizeSecurityGroupEgress request, this is the AWS service that you want to access through a VPC
endpoint from instances associated with the security group.public IpPermission withPrefixListIds(Collection<PrefixListId> prefixListIds)
(Valid for AuthorizeSecurityGroupEgress, RevokeSecurityGroupEgress and DescribeSecurityGroups only) One or more prefix list IDs for an AWS service. In an AuthorizeSecurityGroupEgress request, this is the AWS service that you want to access through a VPC endpoint from instances associated with the security group.
prefixListIds
- (Valid for AuthorizeSecurityGroupEgress, RevokeSecurityGroupEgress and
DescribeSecurityGroups only) One or more prefix list IDs for an AWS service. In an
AuthorizeSecurityGroupEgress request, this is the AWS service that you want to access through a VPC
endpoint from instances associated with the security group.public void setToPort(Integer toPort)
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 for the specified ICMP type. If you specify all ICMP/ICMPv6 types, you must specify all
codes.
toPort
- 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 for the specified ICMP type. If you specify all ICMP/ICMPv6 types, you
must specify all codes.public Integer getToPort()
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 for the specified ICMP type. If you specify all ICMP/ICMPv6 types, you must specify all
codes.
-1
indicates all ICMP/ICMPv6 codes for the specified ICMP type. If you specify all ICMP/ICMPv6 types, you
must specify all codes.public IpPermission withToPort(Integer toPort)
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 for the specified ICMP type. If you specify all ICMP/ICMPv6 types, you must specify all
codes.
toPort
- 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 for the specified ICMP type. If you specify all ICMP/ICMPv6 types, you
must specify all codes.public List<UserIdGroupPair> getUserIdGroupPairs()
One or more security group and AWS account ID pairs.
public void setUserIdGroupPairs(Collection<UserIdGroupPair> userIdGroupPairs)
One or more security group and AWS account ID pairs.
userIdGroupPairs
- One or more security group and AWS account ID pairs.public IpPermission withUserIdGroupPairs(UserIdGroupPair... userIdGroupPairs)
One or more security group and AWS account ID pairs.
NOTE: This method appends the values to the existing list (if any). Use
setUserIdGroupPairs(java.util.Collection)
or withUserIdGroupPairs(java.util.Collection)
if you
want to override the existing values.
userIdGroupPairs
- One or more security group and AWS account ID pairs.public IpPermission withUserIdGroupPairs(Collection<UserIdGroupPair> userIdGroupPairs)
One or more security group and AWS account ID pairs.
userIdGroupPairs
- One or more security group and AWS account ID pairs.public List<IpRange> getIpv4Ranges()
One or more IPv4 ranges.
public void setIpv4Ranges(Collection<IpRange> ipv4Ranges)
One or more IPv4 ranges.
ipv4Ranges
- One or more IPv4 ranges.public IpPermission withIpv4Ranges(IpRange... ipv4Ranges)
One or more IPv4 ranges.
NOTE: This method appends the values to the existing list (if any). Use
setIpv4Ranges(java.util.Collection)
or withIpv4Ranges(java.util.Collection)
if you want to
override the existing values.
ipv4Ranges
- One or more IPv4 ranges.public IpPermission withIpv4Ranges(Collection<IpRange> ipv4Ranges)
One or more IPv4 ranges.
ipv4Ranges
- One or more IPv4 ranges.@Deprecated public List<String> getIpRanges()
getIpv4Ranges()
.One or more IP ranges.
@Deprecated public void setIpRanges(Collection<String> ipRanges)
setIpv4Ranges(java.util.Collection)
One or more IP ranges.
ipRanges
- One or more IP ranges.@Deprecated public IpPermission withIpRanges(String... ipRanges)
withIpv4Ranges(IpRange...)
One or more IP ranges.
NOTE: This method appends the values to the existing list (if any). Use
setIpRanges(java.util.Collection)
or withIpRanges(java.util.Collection)
if you want to override
the existing values.
ipRanges
- One or more IP ranges.@Deprecated public IpPermission withIpRanges(Collection<String> ipRanges)
withIpv4Ranges(java.util.Collection)
One or more IP ranges.
ipRanges
- One or more IP ranges.public String toString()
toString
in class Object
Object.toString()
public IpPermission clone()
Copyright © 2013 Amazon Web Services, Inc. All Rights Reserved.