interface CfnParameterGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MemoryDB.Mixins.CfnParameterGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmemorydb/mixins#CfnParameterGroupMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.memorydb.mixins.CfnParameterGroupMixinProps |
Python | aws_cdk.mixins_preview.aws_memorydb.mixins.CfnParameterGroupMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_memorydb » mixins » CfnParameterGroupMixinProps |
Properties for CfnParameterGroupPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as memorydb_mixins } from '@aws-cdk/mixins-preview/aws-memorydb';
declare const parameters: any;
const cfnParameterGroupMixinProps: memorydb_mixins.CfnParameterGroupMixinProps = {
description: 'description',
family: 'family',
parameterGroupName: 'parameterGroupName',
parameters: parameters,
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | A description of the parameter group. |
| family? | string | The name of the parameter group family that this parameter group is compatible with. |
| parameter | string | The name 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. |
description?
Type:
string
(optional)
A description of the parameter group.
family?
Type:
string
(optional)
The name of the parameter group family that this parameter group is compatible with.
parameterGroupName?
Type:
string
(optional)
The name 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