Class: Aws::Redshift::Types::AcceptReservedNodeExchangeInputMessage

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 AcceptReservedNodeExchangeInputMessage data as a hash:

{
  reserved_node_id: "String", # required
  target_reserved_node_offering_id: "String", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#reserved_node_idString

A string representing the node identifier of the DC1 Reserved Node to be exchanged.

Returns:

  • (String)


32
33
34
35
36
# File 'lib/aws-sdk-redshift/types.rb', line 32

class AcceptReservedNodeExchangeInputMessage < Struct.new(
  :reserved_node_id,
  :target_reserved_node_offering_id)
  include Aws::Structure
end

#target_reserved_node_offering_idString

The unique identifier of the DC2 Reserved Node offering to be used for the exchange. You can obtain the value for the parameter by calling GetReservedNodeExchangeOfferings

Returns:

  • (String)


32
33
34
35
36
# File 'lib/aws-sdk-redshift/types.rb', line 32

class AcceptReservedNodeExchangeInputMessage < Struct.new(
  :reserved_node_id,
  :target_reserved_node_offering_id)
  include Aws::Structure
end