Class CfnCampaign.DataPartitionStorageOptionsProperty
Size, time, and location options for the data partition.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.IoTFleetWise
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnCampaign.DataPartitionStorageOptionsProperty : CfnCampaign.IDataPartitionStorageOptionsProperty
Syntax (vb)
Public Class CfnCampaign.DataPartitionStorageOptionsProperty 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
| DataPartitionStorageOptionsProperty() | Size, time, and location options for the data partition. |
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. |
Constructors
DataPartitionStorageOptionsProperty()
Size, time, and location options for the data partition.
public DataPartitionStorageOptionsProperty()
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"
};
Properties
MaximumSize
The maximum storage size of the data stored in the data partition.
public object MaximumSize { get; set; }
Property Value
Remarks
Newer data overwrites older data when the partition reaches the maximum size.
Type union: either IResolvable or CfnCampaign.IStorageMaximumSizeProperty
MinimumTimeToLive
The amount of time that data in this partition will be kept on disk.
public object MinimumTimeToLive { get; set; }
Property Value
Remarks
StorageLocation
The folder name for the data partition under the campaign storage folder.
public string StorageLocation { get; set; }