Class CfnCampaignPropsMixin.DataPartitionProperty
The configuration for signal data storage and upload options.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.IoTFleetWise.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnCampaignPropsMixin.DataPartitionProperty : CfnCampaignPropsMixin.IDataPartitionProperty
Syntax (vb)
Public Class CfnCampaignPropsMixin.DataPartitionProperty Implements CfnCampaignPropsMixin.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 <a href="https://docs.aws.amazon.com/iot-fleetwise/latest/developerguide/fleetwise-regions.html">AWS Region and feature availability</a> in the <em>AWS IoT FleetWise Developer Guide</em> .
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 dataPartitionProperty = new DataPartitionProperty {
Id = "id",
StorageOptions = new DataPartitionStorageOptionsProperty {
MaximumSize = new StorageMaximumSizeProperty {
Unit = "unit",
Value = 123
},
MinimumTimeToLive = new StorageMinimumTimeToLiveProperty {
Unit = "unit",
Value = 123
},
StorageLocation = "storageLocation"
},
UploadOptions = new DataPartitionUploadOptionsProperty {
ConditionLanguageVersion = 123,
Expression = "expression"
}
};
Synopsis
Constructors
| DataPartitionProperty() | The configuration for signal data storage and upload options. |
Properties
| Id | The ID of the data partition. |
| StorageOptions | The storage options for a data partition. |
| UploadOptions | The upload options for the data partition. |
Constructors
DataPartitionProperty()
The configuration for signal data storage and upload options.
public DataPartitionProperty()
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 <a href="https://docs.aws.amazon.com/iot-fleetwise/latest/developerguide/fleetwise-regions.html">AWS Region and feature availability</a> in the <em>AWS IoT FleetWise Developer Guide</em> .
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 dataPartitionProperty = new DataPartitionProperty {
Id = "id",
StorageOptions = new DataPartitionStorageOptionsProperty {
MaximumSize = new StorageMaximumSizeProperty {
Unit = "unit",
Value = 123
},
MinimumTimeToLive = new StorageMinimumTimeToLiveProperty {
Unit = "unit",
Value = 123
},
StorageLocation = "storageLocation"
},
UploadOptions = new DataPartitionUploadOptionsProperty {
ConditionLanguageVersion = 123,
Expression = "expression"
}
};
Properties
Id
The ID of the data partition.
public string? Id { get; set; }
Property Value
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.
public object? StorageOptions { get; set; }
Property Value
Remarks
UploadOptions
The upload options for the data partition.
public object? UploadOptions { get; set; }