interface CfnParameterGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DAX.CfnParameterGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdax#CfnParameterGroupMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.dax.CfnParameterGroupMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_dax.CfnParameterGroupMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_dax » 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 { aws_dax as dax } from '@aws-cdk/cfn-property-mixins';
declare const parameterNameValues: any;
const cfnParameterGroupMixinProps: dax.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