Skip to main content

db_subnet_groups

Creates, updates, deletes or gets a db_subnet_group resource or lists db_subnet_groups in a region

Overview

Namedb_subnet_groups
TypeResource
DescriptionThe AWS::Neptune::DBSubnetGroup type creates an Amazon Neptune DB subnet group. Subnet groups must contain at least two subnets in two different Availability Zones in the same AWS Region.
Idawscc.neptune.db_subnet_groups

Fields

NameDatatypeDescription
db_subnet_group_namestringThe name for the DB subnet group. This value is stored as a lowercase string.<br />Constraints: Must contain no more than 255 lowercase alphanumeric characters or hyphens. Must not be "Default".<br />Example: mysubnetgroup<br />
db_subnet_group_descriptionstringThe description for the DB subnet group.
subnet_idsarrayThe Amazon EC2 subnet IDs for the DB subnet group.
tagsarrayAn optional array of key-value pairs to apply to this DB subnet group.
regionstringAWS region.

For more information, see AWS::Neptune::DBSubnetGroup.

Methods

NameResourceAccessible byRequired Params
create_resourcedb_subnet_groupsINSERTDBSubnetGroupDescription, SubnetIds, region
delete_resourcedb_subnet_groupsDELETEIdentifier, region
update_resourcedb_subnet_groupsUPDATEIdentifier, PatchDocument, region
list_resourcesdb_subnet_groups_list_onlySELECTregion
get_resourcedb_subnet_groupsSELECTIdentifier, region

SELECT examples

Gets all properties from an individual db_subnet_group.

SELECT
region,
db_subnet_group_name,
db_subnet_group_description,
subnet_ids,
tags
FROM awscc.neptune.db_subnet_groups
WHERE
region = 'us-east-1' AND
Identifier = '{{ db_subnet_group_name }}';

INSERT example

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

/*+ create */
INSERT INTO awscc.neptune.db_subnet_groups (
DBSubnetGroupDescription,
SubnetIds,
region
)
SELECT
'{{ db_subnet_group_description }}',
'{{ subnet_ids }}',
'{{ region }}';

UPDATE example

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

/*+ update */
UPDATE awscc.neptune.db_subnet_groups
SET PatchDocument = string('{{ {
"DBSubnetGroupDescription": db_subnet_group_description,
"SubnetIds": subnet_ids,
"Tags": tags
} | generate_patch_document }}')
WHERE
region = '{{ region }}' AND
Identifier = '{{ db_subnet_group_name }}';

DELETE example

/*+ delete */
DELETE FROM awscc.neptune.db_subnet_groups
WHERE
Identifier = '{{ db_subnet_group_name }}' AND
region = 'us-east-1';

Permissions

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

rds:CreateDBSubnetGroup,
rds:DescribeDBSubnetGroups,
rds:ListTagsForResource,
rds:AddTagsToResource,
iam:CreateServiceLinkedRole