Show / Hide Table of Contents

Class CfnCampaign.DataPartitionStorageOptionsProperty

Size, time, and location options for the data partition.

Inheritance
object
CfnCampaign.DataPartitionStorageOptionsProperty
Implements
CfnCampaign.IDataPartitionStorageOptionsProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-datapartitionstorageoptions.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.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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-datapartitionstorageoptions.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.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

object

Remarks
Newer data overwrites older data when the partition reaches the maximum size.

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

MinimumTimeToLive

The amount of time that data in this partition will be kept on disk.

public object MinimumTimeToLive { get; set; }
Property Value

object

Remarks

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

    StorageLocation

    The folder name for the data partition under the campaign storage folder.

    public string StorageLocation { get; set; }
    Property Value

    string

    Remarks

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

    Implements

    CfnCampaign.IDataPartitionStorageOptionsProperty
    Back to top Generated by DocFX