Skip to main content

groups

Creates, updates, deletes or gets a group resource or lists groups in a region

Overview

Namegroups
TypeResource
DescriptionSchema for ResourceGroups::Group
Idawscc.resourcegroups.groups

Fields

NameDatatypeDescription
namestringThe name of the resource group
descriptionstringThe description of the resource group
resource_queryobject
tagsarray
arnstringThe Resource Group ARN.
configurationarray
resourcesarray
regionstringAWS region.

For more information, see AWS::ResourceGroups::Group.

Methods

NameResourceAccessible byRequired Params
create_resourcegroupsINSERTName, region
delete_resourcegroupsDELETEIdentifier, region
update_resourcegroupsUPDATEIdentifier, PatchDocument, region
list_resourcesgroups_list_onlySELECTregion
get_resourcegroupsSELECTIdentifier, region

SELECT examples

Gets all properties from an individual group.

SELECT
region,
name,
description,
resource_query,
tags,
arn,
configuration,
resources
FROM awscc.resourcegroups.groups
WHERE
region = 'us-east-1' AND
Identifier = '{{ name }}';

INSERT example

Use the following StackQL query and manifest file to create a new group resource, using stack-deploy.

/*+ create */
INSERT INTO awscc.resourcegroups.groups (
Name,
region
)
SELECT
'{{ name }}',
'{{ region }}';

UPDATE example

Use the following StackQL query and manifest file to update a group resource, using stack-deploy.

/*+ update */
UPDATE awscc.resourcegroups.groups
SET PatchDocument = string('{{ {
"Description": description,
"ResourceQuery": resource_query,
"Tags": tags,
"Configuration": configuration,
"Resources": resources
} | generate_patch_document }}')
WHERE
region = '{{ region }}' AND
Identifier = '{{ name }}';

DELETE example

/*+ delete */
DELETE FROM awscc.resourcegroups.groups
WHERE
Identifier = '{{ name }}' AND
region = 'us-east-1';

Permissions

To operate on the groups resource, the following permissions are required:

resource-groups:CreateGroup,
resource-groups:Tag,
cloudformation:DescribeStacks,
cloudformation:ListStackResources,
resource-groups:ListGroupResources,
resource-groups:GroupResources