interface SubnetGroupReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MemoryDB.SubnetGroupReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmemorydb#SubnetGroupReference |
Java | software.amazon.awscdk.services.memorydb.SubnetGroupReference |
Python | aws_cdk.aws_memorydb.SubnetGroupReference |
TypeScript | aws-cdk-lib » aws_memorydb » SubnetGroupReference |
A reference to a SubnetGroup resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_memorydb as memorydb } from 'aws-cdk-lib';
const subnetGroupReference: memorydb.SubnetGroupReference = {
subnetGroupName: 'subnetGroupName',
};
Properties
| Name | Type | Description |
|---|---|---|
| subnet | string | The SubnetGroupName of the SubnetGroup resource. |
subnetGroupName
Type:
string
The SubnetGroupName of the SubnetGroup resource.

.NET
Go
Java
Python
TypeScript