Class: Aws::EC2::Types::CreateReservedInstancesListingRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ec2/types.rb

Overview

Note:

When making an API call, you may pass CreateReservedInstancesListingRequest data as a hash:

{
  client_token: "String", # required
  instance_count: 1, # required
  price_schedules: [ # required
    {
      currency_code: "USD", # accepts USD
      price: 1.0,
      term: 1,
    },
  ],
  reserved_instances_id: "String", # required
}

Contains the parameters for CreateReservedInstancesListing.

Instance Attribute Summary collapse

Instance Attribute Details

#client_tokenString

Unique, case-sensitive identifier you provide to ensure idempotency of your listings. This helps avoid duplicate listings. For more information, see [Ensuring Idempotency].

[1]: docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html

Returns:

  • (String)


6022
6023
6024
6025
6026
6027
6028
# File 'lib/aws-sdk-ec2/types.rb', line 6022

class CreateReservedInstancesListingRequest < Struct.new(
  :client_token,
  :instance_count,
  :price_schedules,
  :reserved_instances_id)
  include Aws::Structure
end

#instance_countInteger

The number of instances that are a part of a Reserved Instance account to be listed in the Reserved Instance Marketplace. This number should be less than or equal to the instance count associated with the Reserved Instance ID specified in this call.

Returns:

  • (Integer)


6022
6023
6024
6025
6026
6027
6028
# File 'lib/aws-sdk-ec2/types.rb', line 6022

class CreateReservedInstancesListingRequest < Struct.new(
  :client_token,
  :instance_count,
  :price_schedules,
  :reserved_instances_id)
  include Aws::Structure
end

#price_schedulesArray<Types::PriceScheduleSpecification>

A list specifying the price of the Standard Reserved Instance for each month remaining in the Reserved Instance term.



6022
6023
6024
6025
6026
6027
6028
# File 'lib/aws-sdk-ec2/types.rb', line 6022

class CreateReservedInstancesListingRequest < Struct.new(
  :client_token,
  :instance_count,
  :price_schedules,
  :reserved_instances_id)
  include Aws::Structure
end

#reserved_instances_idString

The ID of the active Standard Reserved Instance.

Returns:

  • (String)


6022
6023
6024
6025
6026
6027
6028
# File 'lib/aws-sdk-ec2/types.rb', line 6022

class CreateReservedInstancesListingRequest < Struct.new(
  :client_token,
  :instance_count,
  :price_schedules,
  :reserved_instances_id)
  include Aws::Structure
end