interface DataPartitionStorageOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTFleetWise.Mixins.CfnCampaignPropsMixin.DataPartitionStorageOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotfleetwise/mixins#CfnCampaignPropsMixin_DataPartitionStorageOptionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotfleetwise.mixins.CfnCampaignPropsMixin.DataPartitionStorageOptionsProperty |
Python | aws_cdk.mixins_preview.aws_iotfleetwise.mixins.CfnCampaignPropsMixin.DataPartitionStorageOptionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotfleetwise » mixins » 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 { mixins as iotfleetwise_mixins } from '@aws-cdk/mixins-preview/aws-iotfleetwise';
const dataPartitionStorageOptionsProperty: iotfleetwise_mixins.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