Class: Aws::IoTFleetWise::Types::VehicleStatus

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#campaign_nameString

The name of a campaign.

Returns:

  • (String)


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

#statusString

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.

Returns:

  • (String)


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_nameString

The unique ID of the vehicle.

Returns:

  • (String)


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