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, Criticality,
  Owner, DisplayName)
Arguments¶
GroupName | 
Don't use this parameter. Use   | 
Group | 
The name or the ARN of the resource group to update.  | 
Description | 
The new description that you want to update the resource group with. Descriptions can contain letters, numbers, hyphens, underscores, periods, and spaces.  | 
Criticality | 
The critical rank of the application group on a scale of 1 to 10, with a rank of 1 being the most critical, and a rank of 10 being least critical.  | 
Owner | 
A name, email address or other identifier for the person or group who is considered as the owner of this application group within your organization.  | 
DisplayName | 
The name of the application group, which you can change at any time.  | 
Value¶
A list with the following syntax:
list(
  Group = list(
    GroupArn = "string",
    Name = "string",
    Description = "string",
    Criticality = 123,
    Owner = "string",
    DisplayName = "string",
    ApplicationTag = list(
      "string"
    )
  )
)
Request syntax¶
svc$update_group(
  GroupName = "string",
  Group = "string",
  Description = "string",
  Criticality = 123,
  Owner = "string",
  DisplayName = "string"
)