CfnParameterGroupMixinProps
- class aws_cdk.mixins_preview.aws_memorydb.mixins.CfnParameterGroupMixinProps(*, description=None, family=None, parameter_group_name=None, parameters=None, tags=None)
Bases:
objectProperties 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:
- 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.
- family
The name of the parameter group family that this parameter group is compatible with.
- parameter_group_name
The name of the parameter group.
- parameters
Returns the detailed parameter list for the parameter group.