aws-cdk-lib.aws_dax.CfnParameterGroupProps

interface CfnParameterGroupProps

LanguageType name
.NETAmazon.CDK.AWS.DAX.CfnParameterGroupProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsdax#CfnParameterGroupProps
Javasoftware.amazon.awscdk.services.dax.CfnParameterGroupProps
Pythonaws_cdk.aws_dax.CfnParameterGroupProps
TypeScript aws-cdk-lib » aws_dax » 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_dax as dax } from 'aws-cdk-lib';

declare const parameterNameValues: any;
const cfnParameterGroupProps: dax.CfnParameterGroupProps = {
  description: 'description',
  parameterGroupName: 'parameterGroupName',
  parameterNameValues: parameterNameValues,
};

Properties

NameTypeDescription
description?stringA description of the parameter group.
parameterGroupName?stringThe name of the parameter group.
parameterNameValues?anyAn 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-millis and query-ttl-millis are the only supported parameter names. For more details, see Configuring TTL Settings .