SubnetGroupReference

class aws_cdk.interfaces.aws_memorydb.SubnetGroupReference(*, subnet_group_arn, subnet_group_name)

Bases: object

A reference to a SubnetGroup resource.

Parameters:
  • subnet_group_arn (str) – The ARN of the SubnetGroup resource.

  • subnet_group_name (str) – The SubnetGroupName 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.interfaces import aws_memorydb as interfaces_aws_memorydb

subnet_group_reference = interfaces_aws_memorydb.SubnetGroupReference(
    subnet_group_arn="subnetGroupArn",
    subnet_group_name="subnetGroupName"
)

Attributes

subnet_group_arn

The ARN of the SubnetGroup resource.

subnet_group_name

The SubnetGroupName of the SubnetGroup resource.