Class: Aws::IoTFleetWise::Types::VehicleStatus
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTFleetWise::Types::VehicleStatus
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotfleetwise/types.rb
Overview
Information about a campaign associated with a vehicle.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#campaign_name ⇒ String
The name of a campaign.
-
#status ⇒ String
The status of a campaign, which can be one of the following:.
-
#vehicle_name ⇒ String
The unique ID of the vehicle.
Instance Attribute Details
#campaign_name ⇒ String
The name of a campaign.
5296 5297 5298 5299 5300 5301 5302 |
# File 'lib/aws-sdk-iotfleetwise/types.rb', line 5296 class VehicleStatus < Struct.new( :campaign_name, :vehicle_name, :status) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of a campaign, which can be one of the following:
-
‘CREATED` - The campaign has been created successfully but has not been approved.
-
‘READY` - The campaign has been approved but has not been deployed to the vehicle.
-
‘HEALTHY` - The campaign has been deployed to the vehicle.
-
‘SUSPENDED` - The campaign has been suspended and data collection is paused.
-
‘DELETING` - The campaign is being removed from the vehicle.
5296 5297 5298 5299 5300 5301 5302 |
# File 'lib/aws-sdk-iotfleetwise/types.rb', line 5296 class VehicleStatus < Struct.new( :campaign_name, :vehicle_name, :status) SENSITIVE = [] include Aws::Structure end |
#vehicle_name ⇒ String
The unique ID of the vehicle.
5296 5297 5298 5299 5300 5301 5302 |
# File 'lib/aws-sdk-iotfleetwise/types.rb', line 5296 class VehicleStatus < Struct.new( :campaign_name, :vehicle_name, :status) SENSITIVE = [] include Aws::Structure end |