interface ParameterGroupReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.DAX.ParameterGroupReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsdax#ParameterGroupReference |
Java | software.amazon.awscdk.interfaces.dax.ParameterGroupReference |
Python | aws_cdk.interfaces.aws_dax.ParameterGroupReference |
TypeScript | aws-cdk-lib » interfaces » aws_dax » ParameterGroupReference |
A reference to a ParameterGroup 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 parameterGroupReference: interfaces_aws_dax.ParameterGroupReference = {
parameterGroupId: 'parameterGroupId',
};
Properties
| Name | Type | Description |
|---|---|---|
| parameter | string | The Id of the ParameterGroup resource. |
parameterGroupId
Type:
string
The Id of the ParameterGroup resource.

.NET
Go
Java
Python
TypeScript