Skip to content

Update Group

resourcegroups_update_group R Documentation

Updates the description for an existing group

Description

Updates the description for an existing group. You cannot update the name of a resource group.

Minimum permissions

To run this command, you must have the following permissions:

  • resource-groups:UpdateGroup

Usage

resourcegroups_update_group(GroupName, Group, Description)

Arguments

GroupName

Don't use this parameter. Use Group instead.

Group

The name or the ARN of the resource group to modify.

Description

The new description that you want to update the resource group with. Descriptions can contain letters, numbers, hyphens, underscores, periods, and spaces.

Value

A list with the following syntax:

list(
  Group = list(
    GroupArn = "string",
    Name = "string",
    Description = "string"
  )
)

Request syntax

svc$update_group(
  GroupName = "string",
  Group = "string",
  Description = "string"
)