Interface CfnCampaignPropsMixin.IDataPartitionStorageOptionsProperty
Size, time, and location options for the data partition.
Namespace: Amazon.CDK.Mixins.Preview.AWS.IoTFleetWise.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnCampaignPropsMixin.IDataPartitionStorageOptionsProperty
Syntax (vb)
Public Interface CfnCampaignPropsMixin.IDataPartitionStorageOptionsProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.IoTFleetWise.Mixins;
var dataPartitionStorageOptionsProperty = new DataPartitionStorageOptionsProperty {
MaximumSize = new StorageMaximumSizeProperty {
Unit = "unit",
Value = 123
},
MinimumTimeToLive = new StorageMinimumTimeToLiveProperty {
Unit = "unit",
Value = 123
},
StorageLocation = "storageLocation"
};
Synopsis
Properties
| MaximumSize | The maximum storage size of the data stored in the data partition. |
| MinimumTimeToLive | The amount of time that data in this partition will be kept on disk. |
| StorageLocation | The folder name for the data partition under the campaign storage folder. |
Properties
MaximumSize
The maximum storage size of the data stored in the data partition.
object? MaximumSize { get; }
Property Value
Remarks
Newer data overwrites older data when the partition reaches the maximum size.
Type union: either IResolvable or CfnCampaignPropsMixin.IStorageMaximumSizeProperty
MinimumTimeToLive
The amount of time that data in this partition will be kept on disk.
object? MinimumTimeToLive { get; }
Property Value
Remarks
StorageLocation
The folder name for the data partition under the campaign storage folder.
string? StorageLocation { get; }