[VPC only] Removes the specified egress rules from a security group for EC2-VPC. This action does not apply to security groups for use in EC2-Classic. To remove a rule, the values that you specify (for example, ports) must match the existing rule's values exactly.
[Default VPC] If the values you specify do not match the existing rule's values, no error is returned, and the output describes the security group rules that were not revoked.
AWS recommends that you use
describe_security_groups
to verify
that the rule has been removed.
Each rule consists of the protocol and the IPv4 or IPv6 CIDR range or source security group. For the TCP and UDP protocols, you must also specify the destination port or range of ports. For the ICMP protocol, you must also specify the ICMP type and code. If the security group rule has a description, you do not have to specify the description to revoke the rule.
Rule changes are propagated to instances within the security group as quickly as possible. However, a small delay might occur.
ec2_revoke_security_group_egress(DryRun, GroupId, IpPermissions, CidrIp,
FromPort, IpProtocol, ToPort, SourceSecurityGroupName,
SourceSecurityGroupOwnerId)
A list with the following syntax:
list(
Return = TRUE|FALSE,
UnknownIpPermissions = list(
list(
FromPort = 123,
IpProtocol = "string",
IpRanges = list(
list(
CidrIp = "string",
Description = "string"
)
),
Ipv6Ranges = list(
list(
CidrIpv6 = "string",
Description = "string"
)
),
PrefixListIds = list(
list(
Description = "string",
PrefixListId = "string"
)
),
ToPort = 123,
UserIdGroupPairs = list(
list(
Description = "string",
GroupId = "string",
GroupName = "string",
PeeringStatus = "string",
UserId = "string",
VpcId = "string",
VpcPeeringConnectionId = "string"
)
)
)
)
)
Checks whether you have the required permissions for the action, without
actually making the request, and provides an error response. If you have
the required permissions, the error response is DryRunOperation
.
Otherwise, it is UnauthorizedOperation
.
[required] The ID of the security group.
The sets of IP permissions. You can't specify a destination security group and a CIDR IP address range in the same set of permissions.
Not supported. Use a set of IP permissions to specify the CIDR.
Not supported. Use a set of IP permissions to specify the port.
Not supported. Use a set of IP permissions to specify the protocol name or number.
Not supported. Use a set of IP permissions to specify the port.
Not supported. Use a set of IP permissions to specify a destination security group.
Not supported. Use a set of IP permissions to specify a destination security group.
svc$revoke_security_group_egress(
DryRun = TRUE|FALSE,
GroupId = "string",
IpPermissions = list(
list(
FromPort = 123,
IpProtocol = "string",
IpRanges = list(
list(
CidrIp = "string",
Description = "string"
)
),
Ipv6Ranges = list(
list(
CidrIpv6 = "string",
Description = "string"
)
),
PrefixListIds = list(
list(
Description = "string",
PrefixListId = "string"
)
),
ToPort = 123,
UserIdGroupPairs = list(
list(
Description = "string",
GroupId = "string",
GroupName = "string",
PeeringStatus = "string",
UserId = "string",
VpcId = "string",
VpcPeeringConnectionId = "string"
)
)
)
),
CidrIp = "string",
FromPort = 123,
IpProtocol = "string",
ToPort = 123,
SourceSecurityGroupName = "string",
SourceSecurityGroupOwnerId = "string"
)