ParameterGroupReference

class aws_cdk.interfaces.aws_elasticache.ParameterGroupReference(*, cache_parameter_group_name)

Bases: object

A reference to a ParameterGroup resource.

Parameters:

cache_parameter_group_name (str) – The CacheParameterGroupName of the ParameterGroup 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.interfaces import aws_elasticache as interfaces_aws_elasticache

parameter_group_reference = interfaces_aws_elasticache.ParameterGroupReference(
    cache_parameter_group_name="cacheParameterGroupName"
)

Attributes

cache_parameter_group_name

The CacheParameterGroupName of the ParameterGroup resource.