Show / Hide Table of Contents

Class CfnDatastorePropsMixin.DatastorePartitionsProperty

Information about the partition dimensions in a data store.

Inheritance
object
CfnDatastorePropsMixin.DatastorePartitionsProperty
Implements
CfnDatastorePropsMixin.IDatastorePartitionsProperty
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.IoTAnalytics
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnDatastorePropsMixin.DatastorePartitionsProperty : CfnDatastorePropsMixin.IDatastorePartitionsProperty
Syntax (vb)
Public Class CfnDatastorePropsMixin.DatastorePartitionsProperty Implements CfnDatastorePropsMixin.IDatastorePartitionsProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-datastorepartitions.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 datastorePartitionsProperty = new DatastorePartitionsProperty {
                 Partitions = new [] { new DatastorePartitionProperty {
                     Partition = new PartitionProperty {
                         AttributeName = "attributeName"
                     },
                     TimestampPartition = new TimestampPartitionProperty {
                         AttributeName = "attributeName",
                         TimestampFormat = "timestampFormat"
                     }
                 } }
             };

Synopsis

Constructors

DatastorePartitionsProperty()

Information about the partition dimensions in a data store.

Properties

Partitions

A list of partition dimensions in a data store.

Constructors

DatastorePartitionsProperty()

Information about the partition dimensions in a data store.

public DatastorePartitionsProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-datastorepartitions.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 datastorePartitionsProperty = new DatastorePartitionsProperty {
                 Partitions = new [] { new DatastorePartitionProperty {
                     Partition = new PartitionProperty {
                         AttributeName = "attributeName"
                     },
                     TimestampPartition = new TimestampPartitionProperty {
                         AttributeName = "attributeName",
                         TimestampFormat = "timestampFormat"
                     }
                 } }
             };

Properties

Partitions

A list of partition dimensions in a data store.

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

object

Remarks

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

Type union: either IResolvable or (either IResolvable or CfnDatastorePropsMixin.IDatastorePartitionProperty)[]

Implements

CfnDatastorePropsMixin.IDatastorePartitionsProperty
Back to top Generated by DocFX