Class: Aws::GeoRoutes::Types::RouteChargeStepDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoRoutes::Types::RouteChargeStepDetails
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-georoutes/types.rb
Overview
Details about the EV charge at the current step.
Constant Summary collapse
- SENSITIVE =
[:arrival_charge, :consumable_power, :desired_charge]
Instance Attribute Summary collapse
-
#arrival_charge ⇒ Float
Estimated vehicle battery charge before this step (in kWh).
-
#consumable_power ⇒ Float
Maximum charging power available to the vehicle.
-
#desired_charge ⇒ Float
Details that are specific to a Charge step.
Instance Attribute Details
#arrival_charge ⇒ Float
Estimated vehicle battery charge before this step (in kWh).
2807 2808 2809 2810 2811 2812 2813 |
# File 'lib/aws-sdk-georoutes/types.rb', line 2807 class RouteChargeStepDetails < Struct.new( :arrival_charge, :consumable_power, :desired_charge) SENSITIVE = [:arrival_charge, :consumable_power, :desired_charge] include Aws::Structure end |
#consumable_power ⇒ Float
Maximum charging power available to the vehicle.
Unit: ‘KwH`
2807 2808 2809 2810 2811 2812 2813 |
# File 'lib/aws-sdk-georoutes/types.rb', line 2807 class RouteChargeStepDetails < Struct.new( :arrival_charge, :consumable_power, :desired_charge) SENSITIVE = [:arrival_charge, :consumable_power, :desired_charge] include Aws::Structure end |
#desired_charge ⇒ Float
Details that are specific to a Charge step.
Unit: ‘KwH`
2807 2808 2809 2810 2811 2812 2813 |
# File 'lib/aws-sdk-georoutes/types.rb', line 2807 class RouteChargeStepDetails < Struct.new( :arrival_charge, :consumable_power, :desired_charge) SENSITIVE = [:arrival_charge, :consumable_power, :desired_charge] include Aws::Structure end |