Interface CfnCampaign.DataPartitionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCampaign.DataPartitionProperty.Jsii$Proxy
- Enclosing class:
CfnCampaign
@Stability(Stable)
public static interface CfnCampaign.DataPartitionProperty
extends software.amazon.jsii.JsiiSerializable
The configuration for signal data storage and upload options.
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 .
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.iotfleetwise.*;
DataPartitionProperty dataPartitionProperty = DataPartitionProperty.builder()
.id("id")
.storageOptions(DataPartitionStorageOptionsProperty.builder()
.maximumSize(StorageMaximumSizeProperty.builder()
.unit("unit")
.value(123)
.build())
.minimumTimeToLive(StorageMinimumTimeToLiveProperty.builder()
.unit("unit")
.value(123)
.build())
.storageLocation("storageLocation")
.build())
// the properties below are optional
.uploadOptions(DataPartitionUploadOptionsProperty.builder()
.expression("expression")
// the properties below are optional
.conditionLanguageVersion(123)
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCampaign.DataPartitionPropertystatic final classAn implementation forCfnCampaign.DataPartitionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getId
The ID of the data partition.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
defaultas the ID.- See Also:
-
getStorageOptions
The storage options for a data partition.Returns union: either
IResolvableorCfnCampaign.DataPartitionStorageOptionsProperty- See Also:
-
getUploadOptions
The upload options for the data partition.Returns union: either
IResolvableorCfnCampaign.DataPartitionUploadOptionsProperty- See Also:
-
builder
-