Class: Aws::EC2::Types::TargetConfigurationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::TargetConfigurationRequest
- Defined in:
- gems/aws-sdk-ec2/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: "ReservedInstancesOfferingId", # required
}
Details about the target configuration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#instance_count ⇒ Integer
The number of instances the Convertible Reserved Instance offering can be applied to.
-
#offering_id ⇒ String
The Convertible Reserved Instance offering ID.
Instance Attribute Details
#instance_count ⇒ Integer
The number of instances the Convertible Reserved Instance offering can be applied to. This parameter is reserved and cannot be specified in a request
65223 65224 65225 65226 65227 65228 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 65223 class TargetConfigurationRequest < Struct.new( :instance_count, :offering_id) SENSITIVE = [] include Aws::Structure end |
#offering_id ⇒ String
The Convertible Reserved Instance offering ID.
65223 65224 65225 65226 65227 65228 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 65223 class TargetConfigurationRequest < Struct.new( :instance_count, :offering_id) SENSITIVE = [] include Aws::Structure end |