aws-cdk-lib.aws_memorydb.CfnParameterGroupProps

interface CfnParameterGroupProps

LanguageType name
.NETAmazon.CDK.AWS.MemoryDB.CfnParameterGroupProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsmemorydb#CfnParameterGroupProps
Javasoftware.amazon.awscdk.services.memorydb.CfnParameterGroupProps
Pythonaws_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

NameTypeDescription
familystringThe name of the parameter group family that this parameter group is compatible with.
parameterGroupNamestringThe name of the parameter group.
description?stringA description of the parameter group.
parameters?anyReturns the detailed parameter list for the parameter group.
tags?CfnTag[]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: CfnTag[] (optional)

An array of key-value pairs to apply to this resource.

For more information, see Tag .