interface CfnDBClusterParameterGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DocDB.Mixins.CfnDBClusterParameterGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdocdb/mixins#CfnDBClusterParameterGroupMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.docdb.mixins.CfnDBClusterParameterGroupMixinProps |
Python | aws_cdk.mixins_preview.aws_docdb.mixins.CfnDBClusterParameterGroupMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_docdb » mixins » CfnDBClusterParameterGroupMixinProps |
Properties for CfnDBClusterParameterGroupPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as docdb_mixins } from '@aws-cdk/mixins-preview/aws-docdb';
declare const parameters: any;
const cfnDBClusterParameterGroupMixinProps: docdb_mixins.CfnDBClusterParameterGroupMixinProps = {
description: 'description',
family: 'family',
name: 'name',
parameters: parameters,
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description for the cluster parameter group. |
| family? | string | The cluster parameter group family name. |
| name? | string | The name of the DB cluster parameter group. |
| parameters? | any | Provides a list of parameters for the cluster parameter group. |
| tags? | Cfn[] | The tags to be assigned to the cluster parameter group. |
description?
Type:
string
(optional)
The description for the cluster parameter group.
family?
Type:
string
(optional)
The cluster parameter group family name.
name?
Type:
string
(optional)
The name of the DB cluster parameter group.
Constraints:
- Must not match the name of an existing
DBClusterParameterGroup.
This value is stored as a lowercase string.
parameters?
Type:
any
(optional)
Provides a list of parameters for the cluster parameter group.
tags?
Type:
Cfn[]
(optional)
The tags to be assigned to the cluster parameter group.

.NET
Go
Java
Python
TypeScript