Check if a group exists
Details
uses aws_group internally. see docs
https://www.paws-r-sdk.com/docs/iam_get_group/
See also
Other groups:
aws_group(),
aws_group_create(),
aws_group_delete(),
aws_groups(),
six_group_delete()
Examples
if (FALSE) { # aws_has_creds()
aws_group_create("apples")
aws_group_exists("apples")
aws_group_exists("doesnotexist")
# cleanup
aws_group_delete("apples")
}