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.
7848 7849 7850 7851 7852 7853 7854 7855 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 7848 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.
7848 7849 7850 7851 7852 7853 7854 7855 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 7848 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.
7848 7849 7850 7851 7852 7853 7854 7855 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 7848 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.
7848 7849 7850 7851 7852 7853 7854 7855 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 7848 class DataTableLockVersion < Struct.new( :data_table, :attribute, :primary_values, :value) SENSITIVE = [] include Aws::Structure end |