Show / Hide Table of Contents

Class CfnDatastore.TimestampPartitionProperty

A partition dimension defined by a timestamp attribute.

Inheritance
object
CfnDatastore.TimestampPartitionProperty
Implements
CfnDatastore.ITimestampPartitionProperty
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.IoTAnalytics
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDatastore.TimestampPartitionProperty : CfnDatastore.ITimestampPartitionProperty
Syntax (vb)
Public Class CfnDatastore.TimestampPartitionProperty Implements CfnDatastore.ITimestampPartitionProperty
Remarks

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

             var timestampPartitionProperty = new TimestampPartitionProperty {
                 AttributeName = "attributeName",

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

Synopsis

Constructors

TimestampPartitionProperty()

A partition dimension defined by a timestamp attribute.

Properties

AttributeName

The attribute name of the partition defined by a timestamp.

TimestampFormat

The timestamp format of a partition defined by a timestamp.

Constructors

TimestampPartitionProperty()

A partition dimension defined by a timestamp attribute.

public TimestampPartitionProperty()
Remarks

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

             var timestampPartitionProperty = new TimestampPartitionProperty {
                 AttributeName = "attributeName",

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

Properties

AttributeName

The attribute name of the partition defined by a timestamp.

public string AttributeName { get; set; }
Property Value

string

Remarks

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

TimestampFormat

The timestamp format of a partition defined by a timestamp.

public string? TimestampFormat { get; set; }
Property Value

string

Remarks

The default format is seconds since epoch (January 1, 1970 at midnight UTC time).

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

Implements

CfnDatastore.ITimestampPartitionProperty
Back to top Generated by DocFX