interface DataPartitionStorageOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoTFleetWise.CfnCampaignPropsMixin.DataPartitionStorageOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiotfleetwise#CfnCampaignPropsMixin_DataPartitionStorageOptionsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iotfleetwise.CfnCampaignPropsMixin.DataPartitionStorageOptionsProperty |
Python | aws_cdk.cfn_property_mixins.aws_iotfleetwise.CfnCampaignPropsMixin.DataPartitionStorageOptionsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iotfleetwise » CfnCampaignPropsMixin » DataPartitionStorageOptionsProperty |
Size, time, and location options for the data partition.
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 dataPartitionStorageOptionsProperty: iotfleetwise.CfnCampaignPropsMixin.DataPartitionStorageOptionsProperty = {
maximumSize: {
unit: 'unit',
value: 123,
},
minimumTimeToLive: {
unit: 'unit',
value: 123,
},
storageLocation: 'storageLocation',
};
Properties
| Name | Type | Description |
|---|---|---|
| maximum | IResolvable | Storage | The maximum storage size of the data stored in the data partition. |
| minimum | IResolvable | Storage | The amount of time that data in this partition will be kept on disk. |
| storage | string | The folder name for the data partition under the campaign storage folder. |
maximumSize?
Type:
IResolvable | Storage
(optional)
The maximum storage size of the data stored in the data partition.
Newer data overwrites older data when the partition reaches the maximum size.
minimumTimeToLive?
Type:
IResolvable | Storage
(optional)
The amount of time that data in this partition will be kept on disk.
- After the designated amount of time passes, the data can be removed, but it's not guaranteed to be removed.
- Before the time expires, data in this partition can still be deleted if the partition reaches its configured maximum size.
- Newer data will overwrite older data when the partition reaches the maximum size.
storageLocation?
Type:
string
(optional)
The folder name for the data partition under the campaign storage folder.

.NET
Go
Java
Python
TypeScript