Class: Aws::IoTSiteWise::Types::RetentionPeriod
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTSiteWise::Types::RetentionPeriod
- Defined in:
- gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb
Overview
The number of days your data is kept in the hot tier. By default, your data is kept indefinitely in the hot tier.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#number_of_days ⇒ Integer
The number of days that your data is kept.
-
#unlimited ⇒ Boolean
If true, your data is kept indefinitely.
Instance Attribute Details
#number_of_days ⇒ Integer
The number of days that your data is kept.
unlimited
parameter must be false
.
8482 8483 8484 8485 8486 8487 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 8482 class RetentionPeriod < Struct.new( :number_of_days, :unlimited) SENSITIVE = [] include Aws::Structure end |
#unlimited ⇒ Boolean
If true, your data is kept indefinitely.
true
, you must not specify a value for the
numberOfDays
parameter.
8482 8483 8484 8485 8486 8487 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 8482 class RetentionPeriod < Struct.new( :number_of_days, :unlimited) SENSITIVE = [] include Aws::Structure end |