Class: Aws::Redshift::Types::PurchaseReservedNodeOfferingMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::Redshift::Types::PurchaseReservedNodeOfferingMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-redshift/types.rb
Overview
Note:
When making an API call, you may pass PurchaseReservedNodeOfferingMessage data as a hash:
{
reserved_node_offering_id: "String", # required
node_count: 1,
}
Instance Attribute Summary collapse
-
#node_count ⇒ Integer
The number of reserved nodes that you want to purchase.
-
#reserved_node_offering_id ⇒ String
The unique identifier of the reserved node offering you want to purchase.
Instance Attribute Details
#node_count ⇒ Integer
The number of reserved nodes that you want to purchase.
Default: 1
5163 5164 5165 5166 5167 |
# File 'lib/aws-sdk-redshift/types.rb', line 5163 class PurchaseReservedNodeOfferingMessage < Struct.new( :reserved_node_offering_id, :node_count) include Aws::Structure end |
#reserved_node_offering_id ⇒ String
The unique identifier of the reserved node offering you want to purchase.
5163 5164 5165 5166 5167 |
# File 'lib/aws-sdk-redshift/types.rb', line 5163 class PurchaseReservedNodeOfferingMessage < Struct.new( :reserved_node_offering_id, :node_count) include Aws::Structure end |