Interface CfnDatastore.TimestampPartitionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDatastore.TimestampPartitionProperty.Jsii$Proxy
- Enclosing class:
- CfnDatastore
@Stability(Stable)
public static interface CfnDatastore.TimestampPartitionProperty
extends software.amazon.jsii.JsiiSerializable
A partition dimension defined by a timestamp attribute.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.iotanalytics.*;
TimestampPartitionProperty timestampPartitionProperty = TimestampPartitionProperty.builder()
.attributeName("attributeName")
// the properties below are optional
.timestampFormat("timestampFormat")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDatastore.TimestampPartitionPropertystatic final classAn implementation forCfnDatastore.TimestampPartitionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAttributeName
The attribute name of the partition defined by a timestamp. -
getTimestampFormat
The timestamp format of a partition defined by a timestamp.The default format is seconds since epoch (January 1, 1970 at midnight UTC time).
-
builder
-