Class: Aws::IoTAnalytics::Types::VersioningConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTAnalytics::Types::VersioningConfiguration
- Defined in:
- gems/aws-sdk-iotanalytics/lib/aws-sdk-iotanalytics/types.rb
Overview
Note:
When making an API call, you may pass VersioningConfiguration data as a hash:
{
unlimited: false,
max_versions: 1,
}
Information about the versioning of dataset contents.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_versions ⇒ Integer
How many versions of dataset contents are kept.
-
#unlimited ⇒ Boolean
If true, unlimited versions of dataset contents are kept.
Instance Attribute Details
#max_versions ⇒ Integer
How many versions of dataset contents are kept. The unlimited
parameter must be false
.
4258 4259 4260 4261 4262 4263 |
# File 'gems/aws-sdk-iotanalytics/lib/aws-sdk-iotanalytics/types.rb', line 4258 class VersioningConfiguration < Struct.new( :unlimited, :max_versions) SENSITIVE = [] include Aws::Structure end |
#unlimited ⇒ Boolean
If true, unlimited versions of dataset contents are kept.
4258 4259 4260 4261 4262 4263 |
# File 'gems/aws-sdk-iotanalytics/lib/aws-sdk-iotanalytics/types.rb', line 4258 class VersioningConfiguration < Struct.new( :unlimited, :max_versions) SENSITIVE = [] include Aws::Structure end |