package awsiotanalytics // Information about the partition dimensions in a data store. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // datastorePartitionsProperty := &DatastorePartitionsProperty{ // Partitions: []interface{}{ // &DatastorePartitionProperty{ // Partition: &PartitionProperty{ // AttributeName: jsii.String("attributeName"), // }, // TimestampPartition: &TimestampPartitionProperty{ // AttributeName: jsii.String("attributeName"), // // // the properties below are optional // TimestampFormat: jsii.String("timestampFormat"), // }, // }, // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-datastorepartitions.html // type CfnDatastore_DatastorePartitionsProperty struct { // A list of partition dimensions in a data store. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-datastorepartitions.html#cfn-iotanalytics-datastore-datastorepartitions-partitions // Partitions interface{} `field:"optional" json:"partitions" yaml:"partitions"` }