SubnetGroupReference

class aws_cdk.aws_elasticache.SubnetGroupReference(*, cache_subnet_group_name)

Bases: object

A reference to a SubnetGroup resource.

Parameters:

cache_subnet_group_name (str) – The CacheSubnetGroupName of the SubnetGroup resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_elasticache as elasticache

subnet_group_reference = elasticache.SubnetGroupReference(
    cache_subnet_group_name="cacheSubnetGroupName"
)

Attributes

cache_subnet_group_name

The CacheSubnetGroupName of the SubnetGroup resource.