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
Note:
When making an API call, you may pass RetentionPeriod data as a hash:
{
number_of_days: 1,
unlimited: false,
}
How many 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
.
6866 6867 6868 6869 6870 6871 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 6866 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.
6866 6867 6868 6869 6870 6871 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 6866 class RetentionPeriod < Struct.new( :number_of_days, :unlimited) SENSITIVE = [] include Aws::Structure end |