interface SubnetGroupReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.DAX.SubnetGroupReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsdax#SubnetGroupReference |
Java | software.amazon.awscdk.interfaces.dax.SubnetGroupReference |
Python | aws_cdk.interfaces.aws_dax.SubnetGroupReference |
TypeScript | aws-cdk-lib » interfaces » aws_dax » 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_dax as interfaces_aws_dax } from 'aws-cdk-lib/interfaces';
const subnetGroupReference: interfaces_aws_dax.SubnetGroupReference = {
subnetGroupId: 'subnetGroupId',
};
Properties
| Name | Type | Description |
|---|---|---|
| subnet | string | The Id of the SubnetGroup resource. |
subnetGroupId
Type:
string
The Id of the SubnetGroup resource.

.NET
Go
Java
Python
TypeScript