interface DataPartitionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTFleetWise.Mixins.CfnCampaignPropsMixin.DataPartitionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotfleetwise/mixins#CfnCampaignPropsMixin_DataPartitionProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotfleetwise.mixins.CfnCampaignPropsMixin.DataPartitionProperty |
Python | aws_cdk.mixins_preview.aws_iotfleetwise.mixins.CfnCampaignPropsMixin.DataPartitionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotfleetwise » mixins » CfnCampaignPropsMixin » DataPartitionProperty |
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 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 dataPartitionProperty: iotfleetwise_mixins.CfnCampaignPropsMixin.DataPartitionProperty = {
id: 'id',
storageOptions: {
maximumSize: {
unit: 'unit',
value: 123,
},
minimumTimeToLive: {
unit: 'unit',
value: 123,
},
storageLocation: 'storageLocation',
},
uploadOptions: {
conditionLanguageVersion: 123,
expression: 'expression',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| id? | string | The ID of the data partition. |
| storage | IResolvable | Data | The storage options for a data partition. |
| upload | IResolvable | Data | The upload options for the data partition. |
id?
Type:
string
(optional)
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.
storageOptions?
Type:
IResolvable | Data
(optional)
The storage options for a data partition.
uploadOptions?
Type:
IResolvable | Data
(optional)
The upload options for the data partition.

.NET
Go
Java
Python
TypeScript