interface DataPartitionUploadOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTFleetWise.Mixins.CfnCampaignPropsMixin.DataPartitionUploadOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotfleetwise/mixins#CfnCampaignPropsMixin_DataPartitionUploadOptionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotfleetwise.mixins.CfnCampaignPropsMixin.DataPartitionUploadOptionsProperty |
Python | aws_cdk.mixins_preview.aws_iotfleetwise.mixins.CfnCampaignPropsMixin.DataPartitionUploadOptionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotfleetwise » mixins » CfnCampaignPropsMixin » 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 { mixins as iotfleetwise_mixins } from '@aws-cdk/mixins-preview/aws-iotfleetwise';
const dataPartitionUploadOptionsProperty: iotfleetwise_mixins.CfnCampaignPropsMixin.DataPartitionUploadOptionsProperty = {
conditionLanguageVersion: 123,
expression: 'expression',
};
Properties
| Name | Type | Description |
|---|---|---|
| condition | number | The version of the condition language. |
| expression? | string | The logical expression used to recognize what data to collect. |
conditionLanguageVersion?
Type:
number
(optional)
The version of the condition language.
Defaults to the most recent condition language version.
expression?
Type:
string
(optional)
The logical expression used to recognize what data to collect.
For example, $variable.Vehicle.OutsideAirTemperature>= 105.0 .

.NET
Go
Java
Python
TypeScript