Skip to content

Get Group

resourcegroups_get_group R Documentation

Returns information about a specified resource group

Description

Returns information about a specified resource group.

Minimum permissions

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

  • resource-groups:GetGroup

Usage

resourcegroups_get_group(GroupName, Group)

Arguments

GroupName

Deprecated - don't use this parameter. Use Group instead.

Group

The name or the Amazon resource name (ARN) of the resource group to retrieve.

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$get_group(
  GroupName = "string",
  Group = "string"
)