List Group Resources
resourcegroups_list_group_resources | R Documentation |
Returns a list of Amazon resource names (ARNs) of the resources that are members of a specified resource group¶
Description¶
Returns a list of Amazon resource names (ARNs) of the resources that are members of a specified resource group.
Minimum permissions
To run this command, you must have the following permissions:
-
resource-groups:ListGroupResources
-
cloudformation:DescribeStacks
-
cloudformation:ListStackResources
-
tag:GetResources
Usage¶
resourcegroups_list_group_resources(GroupName, Group, Filters,
MaxResults, NextToken)
Arguments¶
GroupName |
Deprecated - don't use this parameter. Use the Group request field instead. |
Group |
The name or the Amazon resource name (ARN) of the resource group. |
Filters |
Filters, formatted as ResourceFilter objects, that you want to
apply to a
When you specify a
The error includes a list of resource types that failed the
validation because they are not part of the query associated with the
group. This validation doesn't occur when the group query specifies
|
MaxResults |
The total number of results that you want included on each page
of the response. If you do not include this parameter, it defaults to a
value that is specific to the operation. If additional items exist
beyond the maximum you specify, the |
NextToken |
The parameter for receiving additional results if you receive a
|
Value¶
A list with the following syntax:
list(
Resources = list(
list(
Identifier = list(
ResourceArn = "string",
ResourceType = "string"
),
Status = list(
Name = "PENDING"
)
)
),
ResourceIdentifiers = list(
list(
ResourceArn = "string",
ResourceType = "string"
)
),
NextToken = "string",
QueryErrors = list(
list(
ErrorCode = "CLOUDFORMATION_STACK_INACTIVE"|"CLOUDFORMATION_STACK_NOT_EXISTING"|"CLOUDFORMATION_STACK_UNASSUMABLE_ROLE"|"RESOURCE_TYPE_NOT_SUPPORTED",
Message = "string"
)
)
)
Request syntax¶
svc$list_group_resources(
GroupName = "string",
Group = "string",
Filters = list(
list(
Name = "resource-type",
Values = list(
"string"
)
)
),
MaxResults = 123,
NextToken = "string"
)