Class: Aws::IoTFleetWise::Types::DataPartition

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

Overview

The configuration for signal data storage and upload options. You can only specify these options when the campaign’s spooling mode is ‘TO_DISK`.

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*.

[1]: docs.aws.amazon.com/iot-fleetwise/latest/developerguide/fleetwise-regions.html

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#idString

The ID of the data partition. The data partition ID must be unique within a campaign. You can establish a data partition as the default partition for a campaign by using ‘default` as the ID.

Returns:

  • (String)


1368
1369
1370
1371
1372
1373
1374
# File 'lib/aws-sdk-iotfleetwise/types.rb', line 1368

class DataPartition < Struct.new(
  :id,
  :storage_options,
  :upload_options)
  SENSITIVE = []
  include Aws::Structure
end

#storage_optionsTypes::DataPartitionStorageOptions

The storage options for a data partition.



1368
1369
1370
1371
1372
1373
1374
# File 'lib/aws-sdk-iotfleetwise/types.rb', line 1368

class DataPartition < Struct.new(
  :id,
  :storage_options,
  :upload_options)
  SENSITIVE = []
  include Aws::Structure
end

#upload_optionsTypes::DataPartitionUploadOptions

The upload options for the data partition.



1368
1369
1370
1371
1372
1373
1374
# File 'lib/aws-sdk-iotfleetwise/types.rb', line 1368

class DataPartition < Struct.new(
  :id,
  :storage_options,
  :upload_options)
  SENSITIVE = []
  include Aws::Structure
end