Show / Hide Table of Contents

Interface CfnDatastore.IDatastorePartitionProperty

A single dimension to partition a data store.

Namespace: Amazon.CDK.AWS.IoTAnalytics
Assembly: Amazon.CDK.AWS.IoTAnalytics.dll
Syntax (csharp)
public interface IDatastorePartitionProperty
Syntax (vb)
Public Interface IDatastorePartitionProperty
Remarks

The dimension must be an AttributePartition or a TimestampPartition .

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-datastorepartition.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.IoTAnalytics;

DatastorePartitionProperty datastorePartitionProperty = new DatastorePartitionProperty {
    Partition = new PartitionProperty {
        AttributeName = "attributeName"
    },
    TimestampPartition = new TimestampPartitionProperty {
        AttributeName = "attributeName",

        // the properties below are optional
        TimestampFormat = "timestampFormat"
    }
};

Synopsis

Properties

Partition

A partition dimension defined by an attribute.

TimestampPartition

A partition dimension defined by a timestamp attribute.

Properties

Partition

A partition dimension defined by an attribute.

virtual object Partition { get; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-datastorepartition.html#cfn-iotanalytics-datastore-datastorepartition-partition

TimestampPartition

A partition dimension defined by a timestamp attribute.

virtual object TimestampPartition { get; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-datastorepartition.html#cfn-iotanalytics-datastore-datastorepartition-timestamppartition

Back to top Generated by DocFX