Class: Aws::Redshift::Types::PurchaseReservedNodeOfferingMessage

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#node_countInteger

The number of reserved nodes that you want to purchase.

Default: ‘1`

Returns:

  • (Integer)


6349
6350
6351
6352
6353
# File 'lib/aws-sdk-redshift/types.rb', line 6349

class PurchaseReservedNodeOfferingMessage < Struct.new(
  :reserved_node_offering_id,
  :node_count)
  include Aws::Structure
end

#reserved_node_offering_idString

The unique identifier of the reserved node offering you want to purchase.

Returns:

  • (String)


6349
6350
6351
6352
6353
# File 'lib/aws-sdk-redshift/types.rb', line 6349

class PurchaseReservedNodeOfferingMessage < Struct.new(
  :reserved_node_offering_id,
  :node_count)
  include Aws::Structure
end