Show / Hide Table of Contents

Interface CfnDatastorePropsMixin.IDatastorePartitionProperty

A single dimension to partition a data store.

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

The dimension must be an AttributePartition or a TimestampPartition .

See: 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.CfnPropertyMixins.AWS.IoTAnalytics;

             var datastorePartitionProperty = new DatastorePartitionProperty {
                 Partition = new PartitionProperty {
                     AttributeName = "attributeName"
                 },
                 TimestampPartition = new TimestampPartitionProperty {
                     AttributeName = "attributeName",
                     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.

object? Partition { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnDatastorePropsMixin.IPartitionProperty

TimestampPartition

A partition dimension defined by a timestamp attribute.

object? TimestampPartition { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnDatastorePropsMixin.ITimestampPartitionProperty

Back to top Generated by DocFX