Redshift.Paginator.
DescribeClusterVersions
¶paginator = client.get_paginator('describe_cluster_versions')
paginate
(**kwargs)¶Creates an iterator that will paginate through responses from Redshift.Client.describe_cluster_versions()
.
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
ClusterVersion='string',
ClusterParameterGroupFamily='string',
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
The specific cluster version to return.
Example: 1.0
The name of a specific cluster parameter group family to return details for.
Constraints:
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
{
'ClusterVersions': [
{
'ClusterVersion': 'string',
'ClusterParameterGroupFamily': 'string',
'Description': 'string'
},
],
'NextToken': 'string'
}
Response Structure
(dict) --
Contains the output from the DescribeClusterVersions action.
ClusterVersions (list) --
A list of Version
elements.
(dict) --
Describes a cluster version, including the parameter group family and description of the version.
ClusterVersion (string) --
The version number used by the cluster.
ClusterParameterGroupFamily (string) --
The name of the cluster parameter group family for the cluster.
Description (string) --
The description of the cluster version.
NextToken (string) --
A token to resume pagination.