Redshift.Paginator.
DescribeNodeConfigurationOptions
¶paginator = client.get_paginator('describe_node_configuration_options')
paginate
(**kwargs)¶Creates an iterator that will paginate through responses from Redshift.Client.describe_node_configuration_options()
.
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
ActionType='restore-cluster'|'recommend-node-config'|'resize-cluster',
ClusterIdentifier='string',
SnapshotIdentifier='string',
SnapshotArn='string',
OwnerAccount='string',
Filters=[
{
'Name': 'NodeType'|'NumberOfNodes'|'EstimatedDiskUtilizationPercent'|'Mode',
'Operator': 'eq'|'lt'|'gt'|'le'|'ge'|'in'|'between',
'Values': [
'string',
]
},
],
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
[REQUIRED]
The action type to evaluate for possible node configurations. Specify "restore-cluster" to get configuration combinations based on an existing snapshot. Specify "recommend-node-config" to get configuration recommendations based on an existing cluster or snapshot. Specify "resize-cluster" to get configuration combinations for elastic resize based on an existing cluster.
A set of name, operator, and value items to filter the results.
A set of elements to filter the returned node configurations.
The name of the element to filter.
The filter operator. If filter Name is NodeType only the 'in' operator is supported. Provide one value to evaluate for 'eq', 'lt', 'le', 'gt', and 'ge'. Provide two values to evaluate for 'between'. Provide a list of values for 'in'.
List of values. Compare Name using Operator to Values. If filter Name is NumberOfNodes, then values can range from 0 to 200. If filter Name is EstimatedDiskUtilizationPercent, then values can range from 0 to 100. For example, filter NumberOfNodes (name) GT (operator) 3 (values).
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.
dict
Response Syntax
{
'NodeConfigurationOptionList': [
{
'NodeType': 'string',
'NumberOfNodes': 123,
'EstimatedDiskUtilizationPercent': 123.0,
'Mode': 'standard'|'high-performance'
},
],
'NextToken': 'string'
}
Response Structure
(dict) --
NodeConfigurationOptionList (list) --
A list of valid node configurations.
(dict) --
A list of node configurations.
NodeType (string) --
The node type, such as, "ds2.8xlarge".
NumberOfNodes (integer) --
The number of nodes.
EstimatedDiskUtilizationPercent (float) --
The estimated disk utilizaton percentage.
Mode (string) --
The category of the node configuration recommendation.
NextToken (string) --
A token to resume pagination.