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

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

Overview

Contains the parameters for CreateReservedInstancesListing.

Constant Summary collapse

SENSITIVE =
[]

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)


10109
10110
10111
10112
10113
10114
10115
10116
# File 'lib/aws-sdk-ec2/types.rb', line 10109

class CreateReservedInstancesListingRequest < Struct.new(
  :client_token,
  :instance_count,
  :price_schedules,
  :reserved_instances_id)
  SENSITIVE = []
  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)


10109
10110
10111
10112
10113
10114
10115
10116
# File 'lib/aws-sdk-ec2/types.rb', line 10109

class CreateReservedInstancesListingRequest < Struct.new(
  :client_token,
  :instance_count,
  :price_schedules,
  :reserved_instances_id)
  SENSITIVE = []
  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.



10109
10110
10111
10112
10113
10114
10115
10116
# File 'lib/aws-sdk-ec2/types.rb', line 10109

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

#reserved_instances_idString

The ID of the active Standard Reserved Instance.

Returns:

  • (String)


10109
10110
10111
10112
10113
10114
10115
10116
# File 'lib/aws-sdk-ec2/types.rb', line 10109

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