interface RetentionPropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Timestream.Mixins.CfnTablePropsMixin.RetentionPropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awstimestream/mixins#CfnTablePropsMixin_RetentionPropertiesProperty |
Java | software.amazon.awscdk.mixins.preview.services.timestream.mixins.CfnTablePropsMixin.RetentionPropertiesProperty |
Python | aws_cdk.mixins_preview.aws_timestream.mixins.CfnTablePropsMixin.RetentionPropertiesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_timestream » mixins » CfnTablePropsMixin » RetentionPropertiesProperty |
Retention properties contain the duration for which your time-series data must be stored in the magnetic store and the memory store.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as timestream_mixins } from '@aws-cdk/mixins-preview/aws-timestream';
const retentionPropertiesProperty: timestream_mixins.CfnTablePropsMixin.RetentionPropertiesProperty = {
magneticStoreRetentionPeriodInDays: 'magneticStoreRetentionPeriodInDays',
memoryStoreRetentionPeriodInHours: 'memoryStoreRetentionPeriodInHours',
};
Properties
| Name | Type | Description |
|---|---|---|
| magnetic | string | The duration for which data must be stored in the magnetic store. |
| memory | string | The duration for which data must be stored in the memory store. |
magneticStoreRetentionPeriodInDays?
Type:
string
(optional)
The duration for which data must be stored in the magnetic store.
memoryStoreRetentionPeriodInHours?
Type:
string
(optional)
The duration for which data must be stored in the memory store.

.NET
Go
Java
Python
TypeScript