Class: Aws::TimestreamWrite::Types::RetentionProperties
- Inherits:
-
Struct
- Object
- Struct
- Aws::TimestreamWrite::Types::RetentionProperties
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-timestreamwrite/types.rb
Overview
Retention properties contain the duration for which your time-series data must be stored in the magnetic store and the memory store.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#magnetic_store_retention_period_in_days ⇒ Integer
The duration for which data must be stored in the magnetic store.
-
#memory_store_retention_period_in_hours ⇒ Integer
The duration for which data must be stored in the memory store.
Instance Attribute Details
#magnetic_store_retention_period_in_days ⇒ Integer
The duration for which data must be stored in the magnetic store.
1378 1379 1380 1381 1382 1383 |
# File 'lib/aws-sdk-timestreamwrite/types.rb', line 1378 class RetentionProperties < Struct.new( :memory_store_retention_period_in_hours, :magnetic_store_retention_period_in_days) SENSITIVE = [] include Aws::Structure end |
#memory_store_retention_period_in_hours ⇒ Integer
The duration for which data must be stored in the memory store.
1378 1379 1380 1381 1382 1383 |
# File 'lib/aws-sdk-timestreamwrite/types.rb', line 1378 class RetentionProperties < Struct.new( :memory_store_retention_period_in_hours, :magnetic_store_retention_period_in_days) SENSITIVE = [] include Aws::Structure end |