interface DataPartitionUploadOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoTFleetWise.CfnCampaignPropsMixin.DataPartitionUploadOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiotfleetwise#CfnCampaignPropsMixin_DataPartitionUploadOptionsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iotfleetwise.CfnCampaignPropsMixin.DataPartitionUploadOptionsProperty |
Python | aws_cdk.cfn_property_mixins.aws_iotfleetwise.CfnCampaignPropsMixin.DataPartitionUploadOptionsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iotfleetwise » 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 { aws_iotfleetwise as iotfleetwise } from '@aws-cdk/cfn-property-mixins';
const dataPartitionUploadOptionsProperty: iotfleetwise.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