Class: Aws::IoTAnalytics::Types::VersioningConfiguration

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-iotanalytics/types.rb

Overview

Information about the versioning of dataset contents.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#max_versionsInteger

How many versions of dataset contents are kept. The ‘unlimited` parameter must be `false`.

Returns:

  • (Integer)


3132
3133
3134
3135
3136
3137
# File 'lib/aws-sdk-iotanalytics/types.rb', line 3132

class VersioningConfiguration < Struct.new(
  :unlimited,
  :max_versions)
  SENSITIVE = []
  include Aws::Structure
end

#unlimitedBoolean

If true, unlimited versions of dataset contents are kept.

Returns:

  • (Boolean)


3132
3133
3134
3135
3136
3137
# File 'lib/aws-sdk-iotanalytics/types.rb', line 3132

class VersioningConfiguration < Struct.new(
  :unlimited,
  :max_versions)
  SENSITIVE = []
  include Aws::Structure
end