interface CfnParameterGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DAX.Mixins.CfnParameterGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdax/mixins#CfnParameterGroupMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.dax.mixins.CfnParameterGroupMixinProps |
Python | aws_cdk.mixins_preview.aws_dax.mixins.CfnParameterGroupMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_dax » mixins » CfnParameterGroupMixinProps |
Properties for CfnParameterGroupPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-parametergroup.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as dax_mixins } from '@aws-cdk/mixins-preview/aws-dax';
declare const parameterNameValues: any;
const cfnParameterGroupMixinProps: dax_mixins.CfnParameterGroupMixinProps = {
description: 'description',
parameterGroupName: 'parameterGroupName',
parameterNameValues: parameterNameValues,
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | A description of the parameter group. |
| parameter | string | The name of the parameter group. |
| parameter | any | An array of name-value pairs for the parameters in the group. |
description?
Type:
string
(optional)
A description of the parameter group.
parameterGroupName?
Type:
string
(optional)
The name of the parameter group.
parameterNameValues?
Type:
any
(optional)
An array of name-value pairs for the parameters in the group.
Each element in the array represents a single parameter.
record-ttl-millisandquery-ttl-millisare the only supported parameter names. For more details, see Configuring TTL Settings .

.NET
Go
Java
Python
TypeScript