Interface CfnCampaign.IDataPartitionProperty
The configuration for signal data storage and upload options.
Namespace: Amazon.CDK.AWS.IoTFleetWise
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IDataPartitionProperty
Syntax (vb)
Public Interface IDataPartitionProperty
Remarks
You can only specify these options when the campaign's spooling mode is TO_DISK
.
Access to certain AWS IoT FleetWise features is currently gated. For more information, see AWS Region and feature availability in the AWS IoT FleetWise Developer Guide .
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 dataPartitionProperty = new DataPartitionProperty {
Id = "id",
StorageOptions = new DataPartitionStorageOptionsProperty {
MaximumSize = new StorageMaximumSizeProperty {
Unit = "unit",
Value = 123
},
MinimumTimeToLive = new StorageMinimumTimeToLiveProperty {
Unit = "unit",
Value = 123
},
StorageLocation = "storageLocation"
},
// the properties below are optional
UploadOptions = new DataPartitionUploadOptionsProperty {
Expression = "expression",
// the properties below are optional
ConditionLanguageVersion = 123
}
};
Synopsis
Properties
Id | The ID of the data partition. |
Storage |
The storage options for a data partition. |
Upload |
The upload options for the data partition. |
Properties
Id
The ID of the data partition.
string Id { get; }
Property Value
System.
Remarks
The data partition ID must be unique within a campaign. You can establish a data partition as the default partition for a campaign by using default
as the ID.
StorageOptions
The storage options for a data partition.
object StorageOptions { get; }
Property Value
System.
Remarks
UploadOptions
The upload options for the data partition.
virtual object UploadOptions { get; }
Property Value
System.