Class: Aws::EMR::Types::InstanceFleetModifyConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMR::Types::InstanceFleetModifyConfig
- Defined in:
- gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb
Overview
Note:
When making an API call, you may pass InstanceFleetModifyConfig data as a hash:
{
instance_fleet_id: "InstanceFleetId", # required
target_on_demand_capacity: 1,
target_spot_capacity: 1,
}
Configuration parameters for an instance fleet modification request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#instance_fleet_id ⇒ String
A unique identifier for the instance fleet.
-
#target_on_demand_capacity ⇒ Integer
The target capacity of On-Demand units for the instance fleet.
-
#target_spot_capacity ⇒ Integer
The target capacity of Spot units for the instance fleet.
Instance Attribute Details
#instance_fleet_id ⇒ String
A unique identifier for the instance fleet.
2933 2934 2935 2936 2937 2938 2939 |
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 2933 class InstanceFleetModifyConfig < Struct.new( :instance_fleet_id, :target_on_demand_capacity, :target_spot_capacity) SENSITIVE = [] include Aws::Structure end |
#target_on_demand_capacity ⇒ Integer
The target capacity of On-Demand units for the instance fleet. For more information see InstanceFleetConfig$TargetOnDemandCapacity.
2933 2934 2935 2936 2937 2938 2939 |
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 2933 class InstanceFleetModifyConfig < Struct.new( :instance_fleet_id, :target_on_demand_capacity, :target_spot_capacity) SENSITIVE = [] include Aws::Structure end |
#target_spot_capacity ⇒ Integer
The target capacity of Spot units for the instance fleet. For more information, see InstanceFleetConfig$TargetSpotCapacity.
2933 2934 2935 2936 2937 2938 2939 |
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 2933 class InstanceFleetModifyConfig < Struct.new( :instance_fleet_id, :target_on_demand_capacity, :target_spot_capacity) SENSITIVE = [] include Aws::Structure end |