ParameterGroupReference

class aws_cdk.interfaces.aws_memorydb.ParameterGroupReference(*, parameter_group_arn, parameter_group_name)

Bases: object

A reference to a ParameterGroup resource.

Parameters:
  • parameter_group_arn (str) – The ARN of the ParameterGroup resource.

  • parameter_group_name (str) – The ParameterGroupName 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_memorydb as interfaces_memorydb

parameter_group_reference = interfaces_memorydb.ParameterGroupReference(
    parameter_group_arn="parameterGroupArn",
    parameter_group_name="parameterGroupName"
)

Attributes

parameter_group_arn

The ARN of the ParameterGroup resource.

parameter_group_name

The ParameterGroupName of the ParameterGroup resource.