Redshift / Paginator / GetReservedNodeExchangeConfigurationOptions
GetReservedNodeExchangeConfigurationOptions#
- class Redshift.Paginator.GetReservedNodeExchangeConfigurationOptions#
paginator = client.get_paginator('get_reserved_node_exchange_configuration_options')
- paginate(**kwargs)#
Creates an iterator that will paginate through responses from
Redshift.Client.get_reserved_node_exchange_configuration_options()
.See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( ActionType='restore-cluster'|'resize-cluster', ClusterIdentifier='string', SnapshotIdentifier='string', PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } )
- Parameters:
ActionType (string) –
[REQUIRED]
The action type of the reserved-node configuration. The action type can be an exchange initiated from either a snapshot or a resize.
ClusterIdentifier (string) – The identifier for the cluster that is the source for a reserved-node exchange.
SnapshotIdentifier (string) – The identifier for the snapshot that is the source for the reserved-node exchange.
PaginationConfig (dict) –
A dictionary that provides parameters to control pagination.
MaxItems (integer) –
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.PageSize (integer) –
The size of each page.
StartingToken (string) –
A token to specify where to start paginating. This is the
NextToken
from a previous response.
- Return type:
dict
- Returns:
Response Syntax
{ 'ReservedNodeConfigurationOptionList': [ { 'SourceReservedNode': { 'ReservedNodeId': 'string', 'ReservedNodeOfferingId': 'string', 'NodeType': 'string', 'StartTime': datetime(2015, 1, 1), 'Duration': 123, 'FixedPrice': 123.0, 'UsagePrice': 123.0, 'CurrencyCode': 'string', 'NodeCount': 123, 'State': 'string', 'OfferingType': 'string', 'RecurringCharges': [ { 'RecurringChargeAmount': 123.0, 'RecurringChargeFrequency': 'string' }, ], 'ReservedNodeOfferingType': 'Regular'|'Upgradable' }, 'TargetReservedNodeCount': 123, 'TargetReservedNodeOffering': { 'ReservedNodeOfferingId': 'string', 'NodeType': 'string', 'Duration': 123, 'FixedPrice': 123.0, 'UsagePrice': 123.0, 'CurrencyCode': 'string', 'OfferingType': 'string', 'RecurringCharges': [ { 'RecurringChargeAmount': 123.0, 'RecurringChargeFrequency': 'string' }, ], 'ReservedNodeOfferingType': 'Regular'|'Upgradable' } }, ], 'NextToken': 'string' }
Response Structure
(dict) –
ReservedNodeConfigurationOptionList (list) –
the configuration options for the reserved-node exchange. These options include information about the source reserved node and target reserved node. Details include the node type, the price, the node count, and the offering type.
(dict) –
Details for a reserved-node exchange. Examples include the node type for a reserved node, the price for a node, the node’s state, and other details.
SourceReservedNode (dict) –
Describes a reserved node. You can call the DescribeReservedNodeOfferings API to obtain the available reserved node offerings.
ReservedNodeId (string) –
The unique identifier for the reservation.
ReservedNodeOfferingId (string) –
The identifier for the reserved node offering.
NodeType (string) –
The node type of the reserved node.
StartTime (datetime) –
The time the reservation started. You purchase a reserved node offering for a duration. This is the start time of that duration.
Duration (integer) –
The duration of the node reservation in seconds.
FixedPrice (float) –
The fixed cost Amazon Redshift charges you for this reserved node.
UsagePrice (float) –
The hourly rate Amazon Redshift charges you for this reserved node.
CurrencyCode (string) –
The currency code for the reserved cluster.
NodeCount (integer) –
The number of reserved compute nodes.
State (string) –
The state of the reserved compute node.
Possible Values:
pending-payment-This reserved node has recently been purchased, and the sale has been approved, but payment has not yet been confirmed.
active-This reserved node is owned by the caller and is available for use.
payment-failed-Payment failed for the purchase attempt.
retired-The reserved node is no longer available.
exchanging-The owner is exchanging the reserved node for another reserved node.
OfferingType (string) –
The anticipated utilization of the reserved node, as defined in the reserved node offering.
RecurringCharges (list) –
The recurring charges for the reserved node.
(dict) –
Describes a recurring charge.
RecurringChargeAmount (float) –
The amount charged per the period of time specified by the recurring charge frequency.
RecurringChargeFrequency (string) –
The frequency at which the recurring charge amount is applied.
ReservedNodeOfferingType (string) –
TargetReservedNodeCount (integer) –
The target reserved-node count.
TargetReservedNodeOffering (dict) –
Describes a reserved node offering.
ReservedNodeOfferingId (string) –
The offering identifier.
NodeType (string) –
The node type offered by the reserved node offering.
Duration (integer) –
The duration, in seconds, for which the offering will reserve the node.
FixedPrice (float) –
The upfront fixed charge you will pay to purchase the specific reserved node offering.
UsagePrice (float) –
The rate you are charged for each hour the cluster that is using the offering is running.
CurrencyCode (string) –
The currency code for the compute nodes offering.
OfferingType (string) –
The anticipated utilization of the reserved node, as defined in the reserved node offering.
RecurringCharges (list) –
The charge to your account regardless of whether you are creating any clusters using the node offering. Recurring charges are only in effect for heavy-utilization reserved nodes.
(dict) –
Describes a recurring charge.
RecurringChargeAmount (float) –
The amount charged per the period of time specified by the recurring charge frequency.
RecurringChargeFrequency (string) –
The frequency at which the recurring charge amount is applied.
ReservedNodeOfferingType (string) –
NextToken (string) –
A token to resume pagination.