interface CfnParameterGroupProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MemoryDB.CfnParameterGroupProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmemorydb#CfnParameterGroupProps |
Java | software.amazon.awscdk.services.memorydb.CfnParameterGroupProps |
Python | aws_cdk.aws_memorydb.CfnParameterGroupProps |
TypeScript | aws-cdk-lib » aws_memorydb » CfnParameterGroupProps |
Properties for defining a CfnParameterGroup.
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';
declare const parameters: any;
const cfnParameterGroupProps: memorydb.CfnParameterGroupProps = {
family: 'family',
parameterGroupName: 'parameterGroupName',
// the properties below are optional
description: 'description',
parameters: parameters,
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| family | string | The name of the parameter group family that this parameter group is compatible with. |
| parameter | string | The name of the parameter group. |
| description? | string | A description of the parameter group. |
| parameters? | any | Returns the detailed parameter list for the parameter group. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
family
Type:
string
The name of the parameter group family that this parameter group is compatible with.
parameterGroupName
Type:
string
The name of the parameter group.
description?
Type:
string
(optional)
A description of the parameter group.
parameters?
Type:
any
(optional)
Returns the detailed parameter list for the parameter group.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.
For more information, see Tag .

.NET
Go
Java
Python
TypeScript