Class CfnCampaign.DataPartitionStorageOptionsProperty
Size, time, and location options for the data partition.
Inheritance
Namespace: Amazon.CDK.AWS.IoTFleetWise
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class DataPartitionStorageOptionsProperty : Object, CfnCampaign.IDataPartitionStorageOptionsProperty
Syntax (vb)
Public Class DataPartitionStorageOptionsProperty
Inherits Object
Implements CfnCampaign.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.AWS.IoTFleetWise;
var dataPartitionStorageOptionsProperty = new DataPartitionStorageOptionsProperty {
MaximumSize = new StorageMaximumSizeProperty {
Unit = "unit",
Value = 123
},
MinimumTimeToLive = new StorageMinimumTimeToLiveProperty {
Unit = "unit",
Value = 123
},
StorageLocation = "storageLocation"
};
Synopsis
Constructors
Data |
Properties
Maximum |
The maximum storage size of the data stored in the data partition. |
Minimum |
The amount of time that data in this partition will be kept on disk. |
Storage |
The folder name for the data partition under the campaign storage folder. |
Constructors
DataPartitionStorageOptionsProperty()
public DataPartitionStorageOptionsProperty()
Properties
MaximumSize
The maximum storage size of the data stored in the data partition.
public object MaximumSize { get; set; }
Property Value
System.
Remarks
Newer data overwrites older data when the partition reaches the maximum size.
MinimumTimeToLive
The amount of time that data in this partition will be kept on disk.
public object MinimumTimeToLive { get; set; }
Property Value
System.
Remarks
StorageLocation
The folder name for the data partition under the campaign storage folder.
public string StorageLocation { get; set; }
Property Value
System.