Show / Hide Table of Contents

Class CfnCampaignPropsMixin.DataPartitionStorageOptionsProperty

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

Inheritance
object
CfnCampaignPropsMixin.DataPartitionStorageOptionsProperty
Implements
CfnCampaignPropsMixin.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.CfnPropertyMixins.AWS.IoTFleetWise
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnCampaignPropsMixin.DataPartitionStorageOptionsProperty : CfnCampaignPropsMixin.IDataPartitionStorageOptionsProperty
Syntax (vb)
Public Class CfnCampaignPropsMixin.DataPartitionStorageOptionsProperty Implements CfnCampaignPropsMixin.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.CfnPropertyMixins.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.CfnPropertyMixins.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

Type union: either IResolvable or CfnCampaignPropsMixin.IStorageMaximumSizeProperty

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

    Type union: either IResolvable or CfnCampaignPropsMixin.IStorageMinimumTimeToLiveProperty

    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

    CfnCampaignPropsMixin.IDataPartitionStorageOptionsProperty
    Back to top Generated by DocFX