if (FALSE) {
# This example updates the description for the specified security group
# rule.
svc$update_security_group_rule_descriptions_ingress(
GroupId = "sg-123abc12",
IpPermissions = list(
list(
FromPort = 22L,
IpProtocol = "tcp",
IpRanges = list(
list(
CidrIp = "203.0.113.0/16",
Description = "SSH access from the LA office"
)
),
ToPort = 22L
)
)
)
}
Run the code above in your browser using DataLab