DAX.Paginator.
DescribeDefaultParameters
¶paginator = client.get_paginator('describe_default_parameters')
paginate
(**kwargs)¶Creates an iterator that will paginate through responses from DAX.Client.describe_default_parameters()
.
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
A dictionary that provides parameters to control pagination.
The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken
will be provided in the output that you can use to resume pagination.
The size of each page.
A token to specify where to start paginating. This is the NextToken
from a previous response.
{
'Parameters': [
{
'ParameterName': 'string',
'ParameterType': 'DEFAULT'|'NODE_TYPE_SPECIFIC',
'ParameterValue': 'string',
'NodeTypeSpecificValues': [
{
'NodeType': 'string',
'Value': 'string'
},
],
'Description': 'string',
'Source': 'string',
'DataType': 'string',
'AllowedValues': 'string',
'IsModifiable': 'TRUE'|'FALSE'|'CONDITIONAL',
'ChangeType': 'IMMEDIATE'|'REQUIRES_REBOOT'
},
]
}
Response Structure
A list of parameters. Each element in the list represents one parameter.
Describes an individual setting that controls some aspect of DAX behavior.
The name of the parameter.
Determines whether the parameter can be applied to any nodes, or only nodes of a particular type.
The value for the parameter.
A list of node types, and specific parameter values for each node.
Represents a parameter value that is applicable to a particular node type.
A node type to which the parameter value applies.
The parameter value for this node type.
A description of the parameter
How the parameter is defined. For example, system
denotes a system-defined parameter.
The data type of the parameter. For example, integer
:
A range of values within which the parameter can be set.
Whether the customer is allowed to modify the parameter.
The conditions under which changes to this parameter can be applied. For example, requires-reboot
indicates that a new value for this parameter will only take effect if a node is rebooted.