Class: Aws::EC2::Types::TargetConfigurationRequest

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

{
  instance_count: 1,
  offering_id: "String", # required
}

Details about the target configuration.

Instance Attribute Summary collapse

Instance Attribute Details

#instance_countInteger

The number of instances the Covertible Reserved Instance offering can be applied to. This parameter is reserved and cannot be specified in a request

Returns:

  • (Integer)


35365
35366
35367
35368
35369
# File 'lib/aws-sdk-ec2/types.rb', line 35365

class TargetConfigurationRequest < Struct.new(
  :instance_count,
  :offering_id)
  include Aws::Structure
end

#offering_idString

The Convertible Reserved Instance offering ID.

Returns:

  • (String)


35365
35366
35367
35368
35369
# File 'lib/aws-sdk-ec2/types.rb', line 35365

class TargetConfigurationRequest < Struct.new(
  :instance_count,
  :offering_id)
  include Aws::Structure
end