CfnParameterGroupProps

class aws_cdk.aws_memorydb.CfnParameterGroupProps(*, family, parameter_group_name, description=None, parameters=None, tags=None)

Bases: object

Properties for defining a CfnParameterGroup.

Parameters:
  • family (str) – The name of the parameter group family that this parameter group is compatible with.

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

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

  • parameters (Optional[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 .

Link:

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.
import aws_cdk.aws_memorydb as memorydb

# parameters: Any

cfn_parameter_group_props = memorydb.CfnParameterGroupProps(
    family="family",
    parameter_group_name="parameterGroupName",

    # the properties below are optional
    description="description",
    parameters=parameters,
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

description

A description of the parameter group.

Link:

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.

Link:

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.

Link:

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.

Link:

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 .

Link:

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