CfnParameterGroupProps
- class aws_cdk.aws_dax.CfnParameterGroupProps(*, description=None, parameter_group_name=None, parameter_name_values=None)
Bases:
object
Properties for defining a
CfnParameterGroup
.- Parameters:
description (
Optional
[str
]) – A description of the parameter group.parameter_group_name (
Optional
[str
]) – The name of the parameter group.parameter_name_values (
Optional
[Any
]) – An array of name-value pairs for the parameters in the group. Each element in the array represents a single parameter. .. epigraph::record-ttl-millis
andquery-ttl-millis
are the only supported parameter names. For more details, see Configuring TTL Settings .
- Link:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-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_dax as dax # parameter_name_values: Any cfn_parameter_group_props = dax.CfnParameterGroupProps( description="description", parameter_group_name="parameterGroupName", parameter_name_values=parameter_name_values )
Attributes
- description
A description of the parameter group.
- parameter_group_name
The name of the parameter group.
- parameter_name_values
An array of name-value pairs for the parameters in the group.
Each element in the array represents a single parameter. .. epigraph:
``record-ttl-millis`` and ``query-ttl-millis`` are the only supported parameter names. For more details, see `Configuring TTL Settings <https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DAX.cluster-management.html#DAX.cluster-management.custom-settings.ttl>`_ .