interface DataPartitionProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.IoTFleetWise.CfnCampaign.DataPartitionProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsiotfleetwise#CfnCampaign_DataPartitionProperty |
![]() | software.amazon.awscdk.services.iotfleetwise.CfnCampaign.DataPartitionProperty |
![]() | aws_cdk.aws_iotfleetwise.CfnCampaign.DataPartitionProperty |
![]() | aws-cdk-lib » aws_iotfleetwise » CfnCampaign » 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 { aws_iotfleetwise as iotfleetwise } from 'aws-cdk-lib';
const dataPartitionProperty: iotfleetwise.CfnCampaign.DataPartitionProperty = {
id: 'id',
storageOptions: {
maximumSize: {
unit: 'unit',
value: 123,
},
minimumTimeToLive: {
unit: 'unit',
value: 123,
},
storageLocation: 'storageLocation',
},
// the properties below are optional
uploadOptions: {
expression: 'expression',
// the properties below are optional
conditionLanguageVersion: 123,
},
};
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
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
The storage options for a data partition.
uploadOptions?
Type:
IResolvable
|
Data
(optional)
The upload options for the data partition.