interface DataPartitionUploadOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoTFleetWise.CfnCampaign.DataPartitionUploadOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiotfleetwise#CfnCampaign_DataPartitionUploadOptionsProperty |
Java | software.amazon.awscdk.services.iotfleetwise.CfnCampaign.DataPartitionUploadOptionsProperty |
Python | aws_cdk.aws_iotfleetwise.CfnCampaign.DataPartitionUploadOptionsProperty |
TypeScript | aws-cdk-lib » aws_iotfleetwise » CfnCampaign » DataPartitionUploadOptionsProperty |
The upload options for the data partition.
If upload options are specified, you must also specify storage options. See DataPartitionStorageOptions .
Access to certain AWS IoT FleetWise features is currently gated. For more information, see AWS Region and feature availability in the AWS IoT FleetWise Developer Guide .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iotfleetwise as iotfleetwise } from 'aws-cdk-lib';
const dataPartitionUploadOptionsProperty: iotfleetwise.CfnCampaign.DataPartitionUploadOptionsProperty = {
expression: 'expression',
// the properties below are optional
conditionLanguageVersion: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| expression | string | The logical expression used to recognize what data to collect. |
| condition | number | The version of the condition language. |
expression
Type:
string
The logical expression used to recognize what data to collect.
For example, $variable.Vehicle.OutsideAirTemperature>= 105.0 .
conditionLanguageVersion?
Type:
number
(optional)
The version of the condition language.
Defaults to the most recent condition language version.

.NET
Go
Java
Python
TypeScript