if (FALSE) {
# This example updates the description for the specified security group
# rule.
svc$update_security_group_rule_descriptions_egress(
GroupId = "sg-123abc12",
IpPermissions = list(
list(
FromPort = 80L,
IpProtocol = "tcp",
IpRanges = list(
list(
CidrIp = "203.0.113.0/24",
Description = "Outbound HTTP access to server 2"
)
),
ToPort = 80L
)
)
)
}
Run the code above in your browser using DataLab