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 (
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 import 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.
- 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.