Class: Aws::Connect::Types::DataTableLockVersion
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::DataTableLockVersion
- 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
-
#attribute ⇒ String
The lock version for a specific attribute.
-
#data_table ⇒ String
The lock version for the data table itself.
-
#primary_values ⇒ String
The lock version for a specific set of primary values (record).
-
#value ⇒ String
The lock version for a specific value.
Instance Attribute Details
#attribute ⇒ String
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.
8046 8047 8048 8049 8050 8051 8052 8053 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 8046 class DataTableLockVersion < Struct.new( :data_table, :attribute, :primary_values, :value) SENSITIVE = [] include Aws::Structure end |
#data_table ⇒ String
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.
8046 8047 8048 8049 8050 8051 8052 8053 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 8046 class DataTableLockVersion < Struct.new( :data_table, :attribute, :primary_values, :value) SENSITIVE = [] include Aws::Structure end |
#primary_values ⇒ String
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.
8046 8047 8048 8049 8050 8051 8052 8053 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 8046 class DataTableLockVersion < Struct.new( :data_table, :attribute, :primary_values, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The lock version for a specific value. Changes each time the individual value is modified. Used for the finest-grained locking control.
8046 8047 8048 8049 8050 8051 8052 8053 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 8046 class DataTableLockVersion < Struct.new( :data_table, :attribute, :primary_values, :value) SENSITIVE = [] include Aws::Structure end |