paws.management (version 0.1.0)

resourcegroups_list_group_resources: Returns a list of ARNs of resources that are members of a specified resource group

Description

Returns a list of ARNs of resources that are members of a specified resource group.

Usage

resourcegroups_list_group_resources(GroupName, Filters, MaxResults,
  NextToken)

Arguments

GroupName

[required] The name of the resource group.

Filters

Filters, formatted as ResourceFilter objects, that you want to apply to a ListGroupResources operation.

  • resource-type - Filter resources by their type. Specify up to five resource types in the format AWS::ServiceCode::ResourceType. For example, AWS::EC2::Instance, or AWS::S3::Bucket.

MaxResults

The maximum number of group member ARNs that are returned in a single call by ListGroupResources, in paginated output. By default, this number is 50.

NextToken

The NextToken value that is returned in a paginated ListGroupResources request. To get the next page of results, run the call again, add the NextToken parameter, and specify the NextToken value.

Request syntax

svc$list_group_resources(
  GroupName = "string",
  Filters = list(
    list(
      Name = "resource-type",
      Values = list(
        "string"
      )
    )
  ),
  MaxResults = 123,
  NextToken = "string"
)