Class: Aws::Connect::Types::DataTableLockVersion

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb

Overview

Contains lock version information for different levels of a data table hierarchy. Used for optimistic locking to prevent concurrent modification conflicts. Each component has its own lock version that changes when that component is modified.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#attributeString

The lock version for a specific attribute. When the ValueLockLevel is ATTRIBUTE, this version changes when any value for the attribute changes. For other lock levels, it only changes when the attribute's properties are directly updated.

Returns:

  • (String)


8289
8290
8291
8292
8293
8294
8295
8296
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 8289

class DataTableLockVersion < Struct.new(
  :data_table,
  :attribute,
  :primary_values,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#data_tableString

The lock version for the data table itself. Used for optimistic locking and table versioning. Changes with each update to the table's metadata or structure.

Returns:

  • (String)


8289
8290
8291
8292
8293
8294
8295
8296
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 8289

class DataTableLockVersion < Struct.new(
  :data_table,
  :attribute,
  :primary_values,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#primary_valuesString

The lock version for a specific set of primary values (record). This includes the default record even if the table does not have any primary attributes. Used for record-level locking.

Returns:

  • (String)


8289
8290
8291
8292
8293
8294
8295
8296
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 8289

class DataTableLockVersion < Struct.new(
  :data_table,
  :attribute,
  :primary_values,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#valueString

The lock version for a specific value. Changes each time the individual value is modified. Used for the finest-grained locking control.

Returns:

  • (String)


8289
8290
8291
8292
8293
8294
8295
8296
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 8289

class DataTableLockVersion < Struct.new(
  :data_table,
  :attribute,
  :primary_values,
  :value)
  SENSITIVE = []
  include Aws::Structure
end