CfnParameterGroupMixinProps

class aws_cdk.mixins_preview.aws_memorydb.mixins.CfnParameterGroupMixinProps(*, description=None, family=None, parameter_group_name=None, parameters=None, tags=None)

Bases: object

Properties for CfnParameterGroupPropsMixin.

Parameters:
  • description (Optional[str]) – A description of the parameter group.

  • family (Optional[str]) – The name of the parameter group family that this parameter group is compatible with.

  • parameter_group_name (Optional[str]) – The name of the parameter group.

  • parameters (Any) – Returns the detailed parameter list for the parameter group.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – An array of key-value pairs to apply to this resource. For more information, see Tag .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-memorydb-parametergroup.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_memorydb import mixins as memorydb_mixins

# parameters: Any

cfn_parameter_group_mixin_props = memorydb_mixins.CfnParameterGroupMixinProps(
    description="description",
    family="family",
    parameter_group_name="parameterGroupName",
    parameters=parameters,
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

description

A description of the parameter group.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-memorydb-parametergroup.html#cfn-memorydb-parametergroup-description

family

The name of the parameter group family that this parameter group is compatible with.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-memorydb-parametergroup.html#cfn-memorydb-parametergroup-family

parameter_group_name

The name of the parameter group.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-memorydb-parametergroup.html#cfn-memorydb-parametergroup-parametergroupname

parameters

Returns the detailed parameter list for the parameter group.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-memorydb-parametergroup.html#cfn-memorydb-parametergroup-parameters

tags

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

For more information, see Tag .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-memorydb-parametergroup.html#cfn-memorydb-parametergroup-tags