Class: Aws::IoTFleetWise::Types::DataPartitionUploadOptions

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-iotfleetwise/lib/aws-sdk-iotfleetwise/types.rb

Overview

The upload options for the data partition. If upload options are specified, you must also specify storage options. See DataPartitionStorageOptions.

Access to certain Amazon Web Services IoT FleetWise features is currently gated. For more information, see Amazon Web Services Region and feature availability in the Amazon Web Services IoT FleetWise Developer Guide.

Constant Summary collapse

SENSITIVE =
[:expression]

Instance Attribute Summary collapse

Instance Attribute Details

#condition_language_versionInteger

The version of the condition language. Defaults to the most recent condition language version.

Returns:

  • (Integer)


1437
1438
1439
1440
1441
1442
# File 'gems/aws-sdk-iotfleetwise/lib/aws-sdk-iotfleetwise/types.rb', line 1437

class DataPartitionUploadOptions < Struct.new(
  :expression,
  :condition_language_version)
  SENSITIVE = [:expression]
  include Aws::Structure
end

#expressionString

The logical expression used to recognize what data to collect. For example, $variable.`Vehicle.OutsideAirTemperature` >= 105.0.

Returns:

  • (String)


1437
1438
1439
1440
1441
1442
# File 'gems/aws-sdk-iotfleetwise/lib/aws-sdk-iotfleetwise/types.rb', line 1437

class DataPartitionUploadOptions < Struct.new(
  :expression,
  :condition_language_version)
  SENSITIVE = [:expression]
  include Aws::Structure
end