interface DataPartitionStorageOptionsProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.IoTFleetWise.CfnCampaign.DataPartitionStorageOptionsProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiotfleetwise#CfnCampaign_DataPartitionStorageOptionsProperty | 
  Java | software.amazon.awscdk.services.iotfleetwise.CfnCampaign.DataPartitionStorageOptionsProperty | 
  Python | aws_cdk.aws_iotfleetwise.CfnCampaign.DataPartitionStorageOptionsProperty | 
  TypeScript  | aws-cdk-lib » aws_iotfleetwise » CfnCampaign » 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-lib';
const dataPartitionStorageOptionsProperty: iotfleetwise.CfnCampaign.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
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
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
The folder name for the data partition under the campaign storage folder.

 .NET
 Go
 Java
 Python
 TypeScript