Show / Hide Table of Contents

Class CfnCampaignPropsMixin.DataPartitionProperty

The configuration for signal data storage and upload options.

Inheritance
object
CfnCampaignPropsMixin.DataPartitionProperty
Implements
CfnCampaignPropsMixin.IDataPartitionProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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> .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-datapartition.html

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> .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-datapartition.html

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

string

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-datapartition.html#cfn-iotfleetwise-campaign-datapartition-id

StorageOptions

The storage options for a data partition.

public object? StorageOptions { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-datapartition.html#cfn-iotfleetwise-campaign-datapartition-storageoptions

Type union: either IResolvable or CfnCampaignPropsMixin.IDataPartitionStorageOptionsProperty

UploadOptions

The upload options for the data partition.

public object? UploadOptions { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-datapartition.html#cfn-iotfleetwise-campaign-datapartition-uploadoptions

Type union: either IResolvable or CfnCampaignPropsMixin.IDataPartitionUploadOptionsProperty

Implements

CfnCampaignPropsMixin.IDataPartitionProperty
Back to top Generated by DocFX