[ aws . keyspacesstreams ]
Retrieves data records from a specified shard in an Amazon Keyspaces data stream. This operation returns a collection of data records from the shard, including the primary key columns and information about modifications made to the captured table data. Each record represents a single data modification in the Amazon Keyspaces table and includes metadata about when the change occurred.
See also: AWS API Documentation
get-records
--shard-iterator <value>
[--max-results <value>]
[--cli-input-json | --cli-input-yaml]
[--generate-cli-skeleton <value>]
[--debug]
[--endpoint-url <value>]
[--no-verify-ssl]
[--no-paginate]
[--output <value>]
[--query <value>]
[--profile <value>]
[--region <value>]
[--version <value>]
[--color <value>]
[--no-sign-request]
[--ca-bundle <value>]
[--cli-read-timeout <value>]
[--cli-connect-timeout <value>]
[--cli-binary-format <value>]
[--no-cli-pager]
[--cli-auto-prompt]
[--no-cli-auto-prompt]
--shard-iterator
(string)
The unique identifier of the shard iterator. A shard iterator specifies the position in the shard from which you want to start reading data records sequentially. You obtain this value by calling theGetShardIterator
operation. Each shard iterator is valid for 5 minutes after creation.
--max-results
(integer)
The maximum number of records to return in a singleGetRecords
request. Default value is 1000. You can specify a limit between 1 and 10000, but the actual number returned might be less than the specified maximum if the size of the data for the returned records exceeds the internal size limit.
--cli-input-json
| --cli-input-yaml
(string)
Reads arguments from the JSON string provided. The JSON string follows the format provided by --generate-cli-skeleton
. If other arguments are provided on the command line, those values will override the JSON-provided values. It is not possible to pass arbitrary binary values using a JSON-provided value as the string will be taken literally. This may not be specified along with --cli-input-yaml
.
--generate-cli-skeleton
(string)
Prints a JSON skeleton to standard output without sending an API request. If provided with no value or the value input
, prints a sample input JSON that can be used as an argument for --cli-input-json
. Similarly, if provided yaml-input
it will print a sample input YAML that can be used with --cli-input-yaml
. If provided with the value output
, it validates the command inputs and returns a sample output JSON for that command. The generated JSON skeleton is not stable between versions of the AWS CLI and there are no backwards compatibility guarantees in the JSON skeleton generated.
--debug
(boolean)
Turn on debug logging.
--endpoint-url
(string)
Override command’s default URL with the given URL.
--no-verify-ssl
(boolean)
By default, the AWS CLI uses SSL when communicating with AWS services. For each SSL connection, the AWS CLI will verify SSL certificates. This option overrides the default behavior of verifying SSL certificates.
--no-paginate
(boolean)
Disable automatic pagination. If automatic pagination is disabled, the AWS CLI will only make one call, for the first page of results.
--output
(string)
The formatting style for command output.
--query
(string)
A JMESPath query to use in filtering the response data.
--profile
(string)
Use a specific profile from your credential file.
--region
(string)
The region to use. Overrides config/env settings.
--version
(string)
Display the version of this tool.
--color
(string)
Turn on/off color output.
--no-sign-request
(boolean)
Do not sign requests. Credentials will not be loaded if this argument is provided.
--ca-bundle
(string)
The CA certificate bundle to use when verifying SSL certificates. Overrides config/env settings.
--cli-read-timeout
(int)
The maximum socket read time in seconds. If the value is set to 0, the socket read will be blocking and not timeout. The default value is 60 seconds.
--cli-connect-timeout
(int)
The maximum socket connect time in seconds. If the value is set to 0, the socket connect will be blocking and not timeout. The default value is 60 seconds.
--cli-binary-format
(string)
The formatting style to be used for binary blobs. The default format is base64. The base64 format expects binary blobs to be provided as a base64 encoded string. The raw-in-base64-out format preserves compatibility with AWS CLI V1 behavior and binary values must be passed literally. When providing contents from a file that map to a binary blob fileb://
will always be treated as binary and use the file contents directly regardless of the cli-binary-format
setting. When using file://
the file contents will need to properly formatted for the configured cli-binary-format
.
--no-cli-pager
(boolean)
Disable cli pager for output.
--cli-auto-prompt
(boolean)
Automatically prompt for CLI input parameters.
--no-cli-auto-prompt
(boolean)
Disable automatically prompt for CLI input parameters.
changeRecords -> (list)
An array of change data records retrieved from the specified shard. Each record represents a single data modification (insert, update, or delete) to a row in the Amazon Keyspaces table. Records include the primary key columns and information about what data was modified.
(structure)
Represents a change data capture record for a row in an Amazon Keyspaces table, containing both the new and old states of the row.
eventVersion -> (string)
The version of the record format, used to track the evolution of the record structure over time.createdAt -> (timestamp)
The timestamp indicating when this change data capture record was created.origin -> (string)
The origin or source of this change data capture record.partitionKeys -> (map)
The partition key columns and their values for the affected row.
key -> (string)
value -> (tagged union structure)
Represents the value of a cell in an Amazon Keyspaces table, supporting various data types with type-specific fields.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:asciiT
,bigintT
,blobT
,boolT
,counterT
,dateT
,decimalT
,doubleT
,floatT
,inetT
,intT
,listT
,mapT
,setT
,smallintT
,textT
,timeT
,timestampT
,timeuuidT
,tinyintT
,tupleT
,uuidT
,varcharT
,varintT
,udtT
.asciiT -> (string)
A value of ASCII text type, containing US-ASCII characters.bigintT -> (string)
A 64-bit signed integer value.blobT -> (blob)
A binary large object (BLOB) value stored as a Base64-encoded string.boolT -> (boolean)
A Boolean value, eithertrue
orfalse
.counterT -> (string)
A distributed counter value that can be incremented and decremented.dateT -> (string)
A date value without a time component, represented as days since epoch (January 1, 1970).decimalT -> (string)
A variable-precision decimal number value.doubleT -> (string)
A 64-bit double-precision floating point value.floatT -> (string)
A 32-bit single-precision floating point value.inetT -> (string)
An IP address value, either IPv4 or IPv6 format.intT -> (string)
A 32-bit signed integer value.listT -> (list)
An ordered collection of elements that can contain duplicate values.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
value -> (tagged union structure)
The value stored in this cell, which can be of various data types supported by Amazon Keyspaces.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:asciiT
,bigintT
,blobT
,boolT
,counterT
,dateT
,decimalT
,doubleT
,floatT
,inetT
,intT
,listT
,mapT
,setT
,smallintT
,textT
,timeT
,timestampT
,timeuuidT
,tinyintT
,tupleT
,uuidT
,varcharT
,varintT
,udtT
.asciiT -> (string)
A value of ASCII text type, containing US-ASCII characters.bigintT -> (string)
A 64-bit signed integer value.blobT -> (blob)
A binary large object (BLOB) value stored as a Base64-encoded string.boolT -> (boolean)
A Boolean value, eithertrue
orfalse
.counterT -> (string)
A distributed counter value that can be incremented and decremented.dateT -> (string)
A date value without a time component, represented as days since epoch (January 1, 1970).decimalT -> (string)
A variable-precision decimal number value.doubleT -> (string)
A 64-bit double-precision floating point value.floatT -> (string)
A 32-bit single-precision floating point value.inetT -> (string)
An IP address value, either IPv4 or IPv6 format.intT -> (string)
A 32-bit signed integer value.listT -> (list)
An ordered collection of elements that can contain duplicate values.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.mapT -> (list)
A collection of key-value pairs where each key is unique.
(structure)
Represents a key-value pair within a map data type in Amazon Keyspaces, including the associated metadata.
( … recursive … )( … recursive … )metadata -> (structure)
Metadata for this specific key-value pair within the map, such as timestamps and TTL information.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.setT -> (list)
An unordered collection of unique elements.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.smallintT -> (string)
A 16-bit signed integer value.textT -> (string)
A UTF-8 encoded string value.timeT -> (string)
A time value without a date component, with nanosecond precision.timestampT -> (string)
A timestamp value representing date and time with millisecond precision.timeuuidT -> (string)
A universally unique identifier (UUID) that includes a timestamp component, ensuring both uniqueness and time ordering.tinyintT -> (string)
An 8-bit signed integer value.tupleT -> (list)
A fixed-length ordered list of elements, where each element can be of a different data type.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.uuidT -> (string)
A universally unique identifier (UUID) value.varcharT -> (string)
A UTF-8 encoded string value, functionally equivalent to text type.varintT -> (string)
A variable precision integer value with arbitrary length.udtT -> (map)
A user-defined type (UDT) value consisting of named fields, each with its own data type.
key -> (string)
value -> (structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.mapT -> (list)
A collection of key-value pairs where each key is unique.
(structure)
Represents a key-value pair within a map data type in Amazon Keyspaces, including the associated metadata.
key -> (tagged union structure)
The key of this map entry in the Amazon Keyspaces cell.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:asciiT
,bigintT
,blobT
,boolT
,counterT
,dateT
,decimalT
,doubleT
,floatT
,inetT
,intT
,listT
,mapT
,setT
,smallintT
,textT
,timeT
,timestampT
,timeuuidT
,tinyintT
,tupleT
,uuidT
,varcharT
,varintT
,udtT
.asciiT -> (string)
A value of ASCII text type, containing US-ASCII characters.bigintT -> (string)
A 64-bit signed integer value.blobT -> (blob)
A binary large object (BLOB) value stored as a Base64-encoded string.boolT -> (boolean)
A Boolean value, eithertrue
orfalse
.counterT -> (string)
A distributed counter value that can be incremented and decremented.dateT -> (string)
A date value without a time component, represented as days since epoch (January 1, 1970).decimalT -> (string)
A variable-precision decimal number value.doubleT -> (string)
A 64-bit double-precision floating point value.floatT -> (string)
A 32-bit single-precision floating point value.inetT -> (string)
An IP address value, either IPv4 or IPv6 format.intT -> (string)
A 32-bit signed integer value.listT -> (list)
An ordered collection of elements that can contain duplicate values.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.mapT -> (list)
A collection of key-value pairs where each key is unique.
(structure)
Represents a key-value pair within a map data type in Amazon Keyspaces, including the associated metadata.
( … recursive … )( … recursive … )metadata -> (structure)
Metadata for this specific key-value pair within the map, such as timestamps and TTL information.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.setT -> (list)
An unordered collection of unique elements.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.smallintT -> (string)
A 16-bit signed integer value.textT -> (string)
A UTF-8 encoded string value.timeT -> (string)
A time value without a date component, with nanosecond precision.timestampT -> (string)
A timestamp value representing date and time with millisecond precision.timeuuidT -> (string)
A universally unique identifier (UUID) that includes a timestamp component, ensuring both uniqueness and time ordering.tinyintT -> (string)
An 8-bit signed integer value.tupleT -> (list)
A fixed-length ordered list of elements, where each element can be of a different data type.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.uuidT -> (string)
A universally unique identifier (UUID) value.varcharT -> (string)
A UTF-8 encoded string value, functionally equivalent to text type.varintT -> (string)
A variable precision integer value with arbitrary length.udtT -> (map)
A user-defined type (UDT) value consisting of named fields, each with its own data type.
key -> (string)
value -> (structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.value -> (tagged union structure)
The value associated with the key in this map entry.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:asciiT
,bigintT
,blobT
,boolT
,counterT
,dateT
,decimalT
,doubleT
,floatT
,inetT
,intT
,listT
,mapT
,setT
,smallintT
,textT
,timeT
,timestampT
,timeuuidT
,tinyintT
,tupleT
,uuidT
,varcharT
,varintT
,udtT
.asciiT -> (string)
A value of ASCII text type, containing US-ASCII characters.bigintT -> (string)
A 64-bit signed integer value.blobT -> (blob)
A binary large object (BLOB) value stored as a Base64-encoded string.boolT -> (boolean)
A Boolean value, eithertrue
orfalse
.counterT -> (string)
A distributed counter value that can be incremented and decremented.dateT -> (string)
A date value without a time component, represented as days since epoch (January 1, 1970).decimalT -> (string)
A variable-precision decimal number value.doubleT -> (string)
A 64-bit double-precision floating point value.floatT -> (string)
A 32-bit single-precision floating point value.inetT -> (string)
An IP address value, either IPv4 or IPv6 format.intT -> (string)
A 32-bit signed integer value.listT -> (list)
An ordered collection of elements that can contain duplicate values.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.mapT -> (list)
A collection of key-value pairs where each key is unique.
(structure)
Represents a key-value pair within a map data type in Amazon Keyspaces, including the associated metadata.
( … recursive … )( … recursive … )metadata -> (structure)
Metadata for this specific key-value pair within the map, such as timestamps and TTL information.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.setT -> (list)
An unordered collection of unique elements.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.smallintT -> (string)
A 16-bit signed integer value.textT -> (string)
A UTF-8 encoded string value.timeT -> (string)
A time value without a date component, with nanosecond precision.timestampT -> (string)
A timestamp value representing date and time with millisecond precision.timeuuidT -> (string)
A universally unique identifier (UUID) that includes a timestamp component, ensuring both uniqueness and time ordering.tinyintT -> (string)
An 8-bit signed integer value.tupleT -> (list)
A fixed-length ordered list of elements, where each element can be of a different data type.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.uuidT -> (string)
A universally unique identifier (UUID) value.varcharT -> (string)
A UTF-8 encoded string value, functionally equivalent to text type.varintT -> (string)
A variable precision integer value with arbitrary length.udtT -> (map)
A user-defined type (UDT) value consisting of named fields, each with its own data type.
key -> (string)
value -> (structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.metadata -> (structure)
Metadata for this specific key-value pair within the map, such as timestamps and TTL information.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.setT -> (list)
An unordered collection of unique elements.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
value -> (tagged union structure)
The value stored in this cell, which can be of various data types supported by Amazon Keyspaces.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:asciiT
,bigintT
,blobT
,boolT
,counterT
,dateT
,decimalT
,doubleT
,floatT
,inetT
,intT
,listT
,mapT
,setT
,smallintT
,textT
,timeT
,timestampT
,timeuuidT
,tinyintT
,tupleT
,uuidT
,varcharT
,varintT
,udtT
.asciiT -> (string)
A value of ASCII text type, containing US-ASCII characters.bigintT -> (string)
A 64-bit signed integer value.blobT -> (blob)
A binary large object (BLOB) value stored as a Base64-encoded string.boolT -> (boolean)
A Boolean value, eithertrue
orfalse
.counterT -> (string)
A distributed counter value that can be incremented and decremented.dateT -> (string)
A date value without a time component, represented as days since epoch (January 1, 1970).decimalT -> (string)
A variable-precision decimal number value.doubleT -> (string)
A 64-bit double-precision floating point value.floatT -> (string)
A 32-bit single-precision floating point value.inetT -> (string)
An IP address value, either IPv4 or IPv6 format.intT -> (string)
A 32-bit signed integer value.listT -> (list)
An ordered collection of elements that can contain duplicate values.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.mapT -> (list)
A collection of key-value pairs where each key is unique.
(structure)
Represents a key-value pair within a map data type in Amazon Keyspaces, including the associated metadata.
( … recursive … )( … recursive … )metadata -> (structure)
Metadata for this specific key-value pair within the map, such as timestamps and TTL information.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.setT -> (list)
An unordered collection of unique elements.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.smallintT -> (string)
A 16-bit signed integer value.textT -> (string)
A UTF-8 encoded string value.timeT -> (string)
A time value without a date component, with nanosecond precision.timestampT -> (string)
A timestamp value representing date and time with millisecond precision.timeuuidT -> (string)
A universally unique identifier (UUID) that includes a timestamp component, ensuring both uniqueness and time ordering.tinyintT -> (string)
An 8-bit signed integer value.tupleT -> (list)
A fixed-length ordered list of elements, where each element can be of a different data type.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.uuidT -> (string)
A universally unique identifier (UUID) value.varcharT -> (string)
A UTF-8 encoded string value, functionally equivalent to text type.varintT -> (string)
A variable precision integer value with arbitrary length.udtT -> (map)
A user-defined type (UDT) value consisting of named fields, each with its own data type.
key -> (string)
value -> (structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.smallintT -> (string)
A 16-bit signed integer value.textT -> (string)
A UTF-8 encoded string value.timeT -> (string)
A time value without a date component, with nanosecond precision.timestampT -> (string)
A timestamp value representing date and time with millisecond precision.timeuuidT -> (string)
A universally unique identifier (UUID) that includes a timestamp component, ensuring both uniqueness and time ordering.tinyintT -> (string)
An 8-bit signed integer value.tupleT -> (list)
A fixed-length ordered list of elements, where each element can be of a different data type.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
value -> (tagged union structure)
The value stored in this cell, which can be of various data types supported by Amazon Keyspaces.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:asciiT
,bigintT
,blobT
,boolT
,counterT
,dateT
,decimalT
,doubleT
,floatT
,inetT
,intT
,listT
,mapT
,setT
,smallintT
,textT
,timeT
,timestampT
,timeuuidT
,tinyintT
,tupleT
,uuidT
,varcharT
,varintT
,udtT
.asciiT -> (string)
A value of ASCII text type, containing US-ASCII characters.bigintT -> (string)
A 64-bit signed integer value.blobT -> (blob)
A binary large object (BLOB) value stored as a Base64-encoded string.boolT -> (boolean)
A Boolean value, eithertrue
orfalse
.counterT -> (string)
A distributed counter value that can be incremented and decremented.dateT -> (string)
A date value without a time component, represented as days since epoch (January 1, 1970).decimalT -> (string)
A variable-precision decimal number value.doubleT -> (string)
A 64-bit double-precision floating point value.floatT -> (string)
A 32-bit single-precision floating point value.inetT -> (string)
An IP address value, either IPv4 or IPv6 format.intT -> (string)
A 32-bit signed integer value.listT -> (list)
An ordered collection of elements that can contain duplicate values.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.mapT -> (list)
A collection of key-value pairs where each key is unique.
(structure)
Represents a key-value pair within a map data type in Amazon Keyspaces, including the associated metadata.
( … recursive … )( … recursive … )metadata -> (structure)
Metadata for this specific key-value pair within the map, such as timestamps and TTL information.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.setT -> (list)
An unordered collection of unique elements.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.smallintT -> (string)
A 16-bit signed integer value.textT -> (string)
A UTF-8 encoded string value.timeT -> (string)
A time value without a date component, with nanosecond precision.timestampT -> (string)
A timestamp value representing date and time with millisecond precision.timeuuidT -> (string)
A universally unique identifier (UUID) that includes a timestamp component, ensuring both uniqueness and time ordering.tinyintT -> (string)
An 8-bit signed integer value.tupleT -> (list)
A fixed-length ordered list of elements, where each element can be of a different data type.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.uuidT -> (string)
A universally unique identifier (UUID) value.varcharT -> (string)
A UTF-8 encoded string value, functionally equivalent to text type.varintT -> (string)
A variable precision integer value with arbitrary length.udtT -> (map)
A user-defined type (UDT) value consisting of named fields, each with its own data type.
key -> (string)
value -> (structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.uuidT -> (string)
A universally unique identifier (UUID) value.varcharT -> (string)
A UTF-8 encoded string value, functionally equivalent to text type.varintT -> (string)
A variable precision integer value with arbitrary length.udtT -> (map)
A user-defined type (UDT) value consisting of named fields, each with its own data type.
key -> (string)
value -> (structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
value -> (tagged union structure)
The value stored in this cell, which can be of various data types supported by Amazon Keyspaces.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:asciiT
,bigintT
,blobT
,boolT
,counterT
,dateT
,decimalT
,doubleT
,floatT
,inetT
,intT
,listT
,mapT
,setT
,smallintT
,textT
,timeT
,timestampT
,timeuuidT
,tinyintT
,tupleT
,uuidT
,varcharT
,varintT
,udtT
.asciiT -> (string)
A value of ASCII text type, containing US-ASCII characters.bigintT -> (string)
A 64-bit signed integer value.blobT -> (blob)
A binary large object (BLOB) value stored as a Base64-encoded string.boolT -> (boolean)
A Boolean value, eithertrue
orfalse
.counterT -> (string)
A distributed counter value that can be incremented and decremented.dateT -> (string)
A date value without a time component, represented as days since epoch (January 1, 1970).decimalT -> (string)
A variable-precision decimal number value.doubleT -> (string)
A 64-bit double-precision floating point value.floatT -> (string)
A 32-bit single-precision floating point value.inetT -> (string)
An IP address value, either IPv4 or IPv6 format.intT -> (string)
A 32-bit signed integer value.listT -> (list)
An ordered collection of elements that can contain duplicate values.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.mapT -> (list)
A collection of key-value pairs where each key is unique.
(structure)
Represents a key-value pair within a map data type in Amazon Keyspaces, including the associated metadata.
( … recursive … )( … recursive … )metadata -> (structure)
Metadata for this specific key-value pair within the map, such as timestamps and TTL information.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.setT -> (list)
An unordered collection of unique elements.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.smallintT -> (string)
A 16-bit signed integer value.textT -> (string)
A UTF-8 encoded string value.timeT -> (string)
A time value without a date component, with nanosecond precision.timestampT -> (string)
A timestamp value representing date and time with millisecond precision.timeuuidT -> (string)
A universally unique identifier (UUID) that includes a timestamp component, ensuring both uniqueness and time ordering.tinyintT -> (string)
An 8-bit signed integer value.tupleT -> (list)
A fixed-length ordered list of elements, where each element can be of a different data type.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.uuidT -> (string)
A universally unique identifier (UUID) value.varcharT -> (string)
A UTF-8 encoded string value, functionally equivalent to text type.varintT -> (string)
A variable precision integer value with arbitrary length.udtT -> (map)
A user-defined type (UDT) value consisting of named fields, each with its own data type.
key -> (string)
value -> (structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.clusteringKeys -> (map)
The clustering key columns and their values for the affected row, which determine the order of rows within a partition.
key -> (string)
value -> (tagged union structure)
Represents the value of a cell in an Amazon Keyspaces table, supporting various data types with type-specific fields.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:asciiT
,bigintT
,blobT
,boolT
,counterT
,dateT
,decimalT
,doubleT
,floatT
,inetT
,intT
,listT
,mapT
,setT
,smallintT
,textT
,timeT
,timestampT
,timeuuidT
,tinyintT
,tupleT
,uuidT
,varcharT
,varintT
,udtT
.asciiT -> (string)
A value of ASCII text type, containing US-ASCII characters.bigintT -> (string)
A 64-bit signed integer value.blobT -> (blob)
A binary large object (BLOB) value stored as a Base64-encoded string.boolT -> (boolean)
A Boolean value, eithertrue
orfalse
.counterT -> (string)
A distributed counter value that can be incremented and decremented.dateT -> (string)
A date value without a time component, represented as days since epoch (January 1, 1970).decimalT -> (string)
A variable-precision decimal number value.doubleT -> (string)
A 64-bit double-precision floating point value.floatT -> (string)
A 32-bit single-precision floating point value.inetT -> (string)
An IP address value, either IPv4 or IPv6 format.intT -> (string)
A 32-bit signed integer value.listT -> (list)
An ordered collection of elements that can contain duplicate values.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
value -> (tagged union structure)
The value stored in this cell, which can be of various data types supported by Amazon Keyspaces.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:asciiT
,bigintT
,blobT
,boolT
,counterT
,dateT
,decimalT
,doubleT
,floatT
,inetT
,intT
,listT
,mapT
,setT
,smallintT
,textT
,timeT
,timestampT
,timeuuidT
,tinyintT
,tupleT
,uuidT
,varcharT
,varintT
,udtT
.asciiT -> (string)
A value of ASCII text type, containing US-ASCII characters.bigintT -> (string)
A 64-bit signed integer value.blobT -> (blob)
A binary large object (BLOB) value stored as a Base64-encoded string.boolT -> (boolean)
A Boolean value, eithertrue
orfalse
.counterT -> (string)
A distributed counter value that can be incremented and decremented.dateT -> (string)
A date value without a time component, represented as days since epoch (January 1, 1970).decimalT -> (string)
A variable-precision decimal number value.doubleT -> (string)
A 64-bit double-precision floating point value.floatT -> (string)
A 32-bit single-precision floating point value.inetT -> (string)
An IP address value, either IPv4 or IPv6 format.intT -> (string)
A 32-bit signed integer value.listT -> (list)
An ordered collection of elements that can contain duplicate values.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.mapT -> (list)
A collection of key-value pairs where each key is unique.
(structure)
Represents a key-value pair within a map data type in Amazon Keyspaces, including the associated metadata.
( … recursive … )( … recursive … )metadata -> (structure)
Metadata for this specific key-value pair within the map, such as timestamps and TTL information.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.setT -> (list)
An unordered collection of unique elements.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.smallintT -> (string)
A 16-bit signed integer value.textT -> (string)
A UTF-8 encoded string value.timeT -> (string)
A time value without a date component, with nanosecond precision.timestampT -> (string)
A timestamp value representing date and time with millisecond precision.timeuuidT -> (string)
A universally unique identifier (UUID) that includes a timestamp component, ensuring both uniqueness and time ordering.tinyintT -> (string)
An 8-bit signed integer value.tupleT -> (list)
A fixed-length ordered list of elements, where each element can be of a different data type.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.uuidT -> (string)
A universally unique identifier (UUID) value.varcharT -> (string)
A UTF-8 encoded string value, functionally equivalent to text type.varintT -> (string)
A variable precision integer value with arbitrary length.udtT -> (map)
A user-defined type (UDT) value consisting of named fields, each with its own data type.
key -> (string)
value -> (structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.mapT -> (list)
A collection of key-value pairs where each key is unique.
(structure)
Represents a key-value pair within a map data type in Amazon Keyspaces, including the associated metadata.
key -> (tagged union structure)
The key of this map entry in the Amazon Keyspaces cell.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:asciiT
,bigintT
,blobT
,boolT
,counterT
,dateT
,decimalT
,doubleT
,floatT
,inetT
,intT
,listT
,mapT
,setT
,smallintT
,textT
,timeT
,timestampT
,timeuuidT
,tinyintT
,tupleT
,uuidT
,varcharT
,varintT
,udtT
.asciiT -> (string)
A value of ASCII text type, containing US-ASCII characters.bigintT -> (string)
A 64-bit signed integer value.blobT -> (blob)
A binary large object (BLOB) value stored as a Base64-encoded string.boolT -> (boolean)
A Boolean value, eithertrue
orfalse
.counterT -> (string)
A distributed counter value that can be incremented and decremented.dateT -> (string)
A date value without a time component, represented as days since epoch (January 1, 1970).decimalT -> (string)
A variable-precision decimal number value.doubleT -> (string)
A 64-bit double-precision floating point value.floatT -> (string)
A 32-bit single-precision floating point value.inetT -> (string)
An IP address value, either IPv4 or IPv6 format.intT -> (string)
A 32-bit signed integer value.listT -> (list)
An ordered collection of elements that can contain duplicate values.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.mapT -> (list)
A collection of key-value pairs where each key is unique.
(structure)
Represents a key-value pair within a map data type in Amazon Keyspaces, including the associated metadata.
( … recursive … )( … recursive … )metadata -> (structure)
Metadata for this specific key-value pair within the map, such as timestamps and TTL information.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.setT -> (list)
An unordered collection of unique elements.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.smallintT -> (string)
A 16-bit signed integer value.textT -> (string)
A UTF-8 encoded string value.timeT -> (string)
A time value without a date component, with nanosecond precision.timestampT -> (string)
A timestamp value representing date and time with millisecond precision.timeuuidT -> (string)
A universally unique identifier (UUID) that includes a timestamp component, ensuring both uniqueness and time ordering.tinyintT -> (string)
An 8-bit signed integer value.tupleT -> (list)
A fixed-length ordered list of elements, where each element can be of a different data type.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.uuidT -> (string)
A universally unique identifier (UUID) value.varcharT -> (string)
A UTF-8 encoded string value, functionally equivalent to text type.varintT -> (string)
A variable precision integer value with arbitrary length.udtT -> (map)
A user-defined type (UDT) value consisting of named fields, each with its own data type.
key -> (string)
value -> (structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.value -> (tagged union structure)
The value associated with the key in this map entry.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:asciiT
,bigintT
,blobT
,boolT
,counterT
,dateT
,decimalT
,doubleT
,floatT
,inetT
,intT
,listT
,mapT
,setT
,smallintT
,textT
,timeT
,timestampT
,timeuuidT
,tinyintT
,tupleT
,uuidT
,varcharT
,varintT
,udtT
.asciiT -> (string)
A value of ASCII text type, containing US-ASCII characters.bigintT -> (string)
A 64-bit signed integer value.blobT -> (blob)
A binary large object (BLOB) value stored as a Base64-encoded string.boolT -> (boolean)
A Boolean value, eithertrue
orfalse
.counterT -> (string)
A distributed counter value that can be incremented and decremented.dateT -> (string)
A date value without a time component, represented as days since epoch (January 1, 1970).decimalT -> (string)
A variable-precision decimal number value.doubleT -> (string)
A 64-bit double-precision floating point value.floatT -> (string)
A 32-bit single-precision floating point value.inetT -> (string)
An IP address value, either IPv4 or IPv6 format.intT -> (string)
A 32-bit signed integer value.listT -> (list)
An ordered collection of elements that can contain duplicate values.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.mapT -> (list)
A collection of key-value pairs where each key is unique.
(structure)
Represents a key-value pair within a map data type in Amazon Keyspaces, including the associated metadata.
( … recursive … )( … recursive … )metadata -> (structure)
Metadata for this specific key-value pair within the map, such as timestamps and TTL information.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.setT -> (list)
An unordered collection of unique elements.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.smallintT -> (string)
A 16-bit signed integer value.textT -> (string)
A UTF-8 encoded string value.timeT -> (string)
A time value without a date component, with nanosecond precision.timestampT -> (string)
A timestamp value representing date and time with millisecond precision.timeuuidT -> (string)
A universally unique identifier (UUID) that includes a timestamp component, ensuring both uniqueness and time ordering.tinyintT -> (string)
An 8-bit signed integer value.tupleT -> (list)
A fixed-length ordered list of elements, where each element can be of a different data type.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.uuidT -> (string)
A universally unique identifier (UUID) value.varcharT -> (string)
A UTF-8 encoded string value, functionally equivalent to text type.varintT -> (string)
A variable precision integer value with arbitrary length.udtT -> (map)
A user-defined type (UDT) value consisting of named fields, each with its own data type.
key -> (string)
value -> (structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.metadata -> (structure)
Metadata for this specific key-value pair within the map, such as timestamps and TTL information.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.setT -> (list)
An unordered collection of unique elements.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
value -> (tagged union structure)
The value stored in this cell, which can be of various data types supported by Amazon Keyspaces.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:asciiT
,bigintT
,blobT
,boolT
,counterT
,dateT
,decimalT
,doubleT
,floatT
,inetT
,intT
,listT
,mapT
,setT
,smallintT
,textT
,timeT
,timestampT
,timeuuidT
,tinyintT
,tupleT
,uuidT
,varcharT
,varintT
,udtT
.asciiT -> (string)
A value of ASCII text type, containing US-ASCII characters.bigintT -> (string)
A 64-bit signed integer value.blobT -> (blob)
A binary large object (BLOB) value stored as a Base64-encoded string.boolT -> (boolean)
A Boolean value, eithertrue
orfalse
.counterT -> (string)
A distributed counter value that can be incremented and decremented.dateT -> (string)
A date value without a time component, represented as days since epoch (January 1, 1970).decimalT -> (string)
A variable-precision decimal number value.doubleT -> (string)
A 64-bit double-precision floating point value.floatT -> (string)
A 32-bit single-precision floating point value.inetT -> (string)
An IP address value, either IPv4 or IPv6 format.intT -> (string)
A 32-bit signed integer value.listT -> (list)
An ordered collection of elements that can contain duplicate values.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.mapT -> (list)
A collection of key-value pairs where each key is unique.
(structure)
Represents a key-value pair within a map data type in Amazon Keyspaces, including the associated metadata.
( … recursive … )( … recursive … )metadata -> (structure)
Metadata for this specific key-value pair within the map, such as timestamps and TTL information.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.setT -> (list)
An unordered collection of unique elements.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.smallintT -> (string)
A 16-bit signed integer value.textT -> (string)
A UTF-8 encoded string value.timeT -> (string)
A time value without a date component, with nanosecond precision.timestampT -> (string)
A timestamp value representing date and time with millisecond precision.timeuuidT -> (string)
A universally unique identifier (UUID) that includes a timestamp component, ensuring both uniqueness and time ordering.tinyintT -> (string)
An 8-bit signed integer value.tupleT -> (list)
A fixed-length ordered list of elements, where each element can be of a different data type.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.uuidT -> (string)
A universally unique identifier (UUID) value.varcharT -> (string)
A UTF-8 encoded string value, functionally equivalent to text type.varintT -> (string)
A variable precision integer value with arbitrary length.udtT -> (map)
A user-defined type (UDT) value consisting of named fields, each with its own data type.
key -> (string)
value -> (structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.smallintT -> (string)
A 16-bit signed integer value.textT -> (string)
A UTF-8 encoded string value.timeT -> (string)
A time value without a date component, with nanosecond precision.timestampT -> (string)
A timestamp value representing date and time with millisecond precision.timeuuidT -> (string)
A universally unique identifier (UUID) that includes a timestamp component, ensuring both uniqueness and time ordering.tinyintT -> (string)
An 8-bit signed integer value.tupleT -> (list)
A fixed-length ordered list of elements, where each element can be of a different data type.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
value -> (tagged union structure)
The value stored in this cell, which can be of various data types supported by Amazon Keyspaces.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:asciiT
,bigintT
,blobT
,boolT
,counterT
,dateT
,decimalT
,doubleT
,floatT
,inetT
,intT
,listT
,mapT
,setT
,smallintT
,textT
,timeT
,timestampT
,timeuuidT
,tinyintT
,tupleT
,uuidT
,varcharT
,varintT
,udtT
.asciiT -> (string)
A value of ASCII text type, containing US-ASCII characters.bigintT -> (string)
A 64-bit signed integer value.blobT -> (blob)
A binary large object (BLOB) value stored as a Base64-encoded string.boolT -> (boolean)
A Boolean value, eithertrue
orfalse
.counterT -> (string)
A distributed counter value that can be incremented and decremented.dateT -> (string)
A date value without a time component, represented as days since epoch (January 1, 1970).decimalT -> (string)
A variable-precision decimal number value.doubleT -> (string)
A 64-bit double-precision floating point value.floatT -> (string)
A 32-bit single-precision floating point value.inetT -> (string)
An IP address value, either IPv4 or IPv6 format.intT -> (string)
A 32-bit signed integer value.listT -> (list)
An ordered collection of elements that can contain duplicate values.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.mapT -> (list)
A collection of key-value pairs where each key is unique.
(structure)
Represents a key-value pair within a map data type in Amazon Keyspaces, including the associated metadata.
( … recursive … )( … recursive … )metadata -> (structure)
Metadata for this specific key-value pair within the map, such as timestamps and TTL information.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.setT -> (list)
An unordered collection of unique elements.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.smallintT -> (string)
A 16-bit signed integer value.textT -> (string)
A UTF-8 encoded string value.timeT -> (string)
A time value without a date component, with nanosecond precision.timestampT -> (string)
A timestamp value representing date and time with millisecond precision.timeuuidT -> (string)
A universally unique identifier (UUID) that includes a timestamp component, ensuring both uniqueness and time ordering.tinyintT -> (string)
An 8-bit signed integer value.tupleT -> (list)
A fixed-length ordered list of elements, where each element can be of a different data type.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.uuidT -> (string)
A universally unique identifier (UUID) value.varcharT -> (string)
A UTF-8 encoded string value, functionally equivalent to text type.varintT -> (string)
A variable precision integer value with arbitrary length.udtT -> (map)
A user-defined type (UDT) value consisting of named fields, each with its own data type.
key -> (string)
value -> (structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.uuidT -> (string)
A universally unique identifier (UUID) value.varcharT -> (string)
A UTF-8 encoded string value, functionally equivalent to text type.varintT -> (string)
A variable precision integer value with arbitrary length.udtT -> (map)
A user-defined type (UDT) value consisting of named fields, each with its own data type.
key -> (string)
value -> (structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
value -> (tagged union structure)
The value stored in this cell, which can be of various data types supported by Amazon Keyspaces.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:asciiT
,bigintT
,blobT
,boolT
,counterT
,dateT
,decimalT
,doubleT
,floatT
,inetT
,intT
,listT
,mapT
,setT
,smallintT
,textT
,timeT
,timestampT
,timeuuidT
,tinyintT
,tupleT
,uuidT
,varcharT
,varintT
,udtT
.asciiT -> (string)
A value of ASCII text type, containing US-ASCII characters.bigintT -> (string)
A 64-bit signed integer value.blobT -> (blob)
A binary large object (BLOB) value stored as a Base64-encoded string.boolT -> (boolean)
A Boolean value, eithertrue
orfalse
.counterT -> (string)
A distributed counter value that can be incremented and decremented.dateT -> (string)
A date value without a time component, represented as days since epoch (January 1, 1970).decimalT -> (string)
A variable-precision decimal number value.doubleT -> (string)
A 64-bit double-precision floating point value.floatT -> (string)
A 32-bit single-precision floating point value.inetT -> (string)
An IP address value, either IPv4 or IPv6 format.intT -> (string)
A 32-bit signed integer value.listT -> (list)
An ordered collection of elements that can contain duplicate values.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.mapT -> (list)
A collection of key-value pairs where each key is unique.
(structure)
Represents a key-value pair within a map data type in Amazon Keyspaces, including the associated metadata.
( … recursive … )( … recursive … )metadata -> (structure)
Metadata for this specific key-value pair within the map, such as timestamps and TTL information.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.setT -> (list)
An unordered collection of unique elements.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.smallintT -> (string)
A 16-bit signed integer value.textT -> (string)
A UTF-8 encoded string value.timeT -> (string)
A time value without a date component, with nanosecond precision.timestampT -> (string)
A timestamp value representing date and time with millisecond precision.timeuuidT -> (string)
A universally unique identifier (UUID) that includes a timestamp component, ensuring both uniqueness and time ordering.tinyintT -> (string)
An 8-bit signed integer value.tupleT -> (list)
A fixed-length ordered list of elements, where each element can be of a different data type.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.uuidT -> (string)
A universally unique identifier (UUID) value.varcharT -> (string)
A UTF-8 encoded string value, functionally equivalent to text type.varintT -> (string)
A variable precision integer value with arbitrary length.udtT -> (map)
A user-defined type (UDT) value consisting of named fields, each with its own data type.
key -> (string)
value -> (structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.newImage -> (structure)
The state of the row after the change operation that generated this record.
valueCells -> (map)
A map of regular (non-static) column cells in the row, where keys are column names and values are the corresponding cells.
key -> (string)
value -> (structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
value -> (tagged union structure)
The value stored in this cell, which can be of various data types supported by Amazon Keyspaces.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:asciiT
,bigintT
,blobT
,boolT
,counterT
,dateT
,decimalT
,doubleT
,floatT
,inetT
,intT
,listT
,mapT
,setT
,smallintT
,textT
,timeT
,timestampT
,timeuuidT
,tinyintT
,tupleT
,uuidT
,varcharT
,varintT
,udtT
.asciiT -> (string)
A value of ASCII text type, containing US-ASCII characters.bigintT -> (string)
A 64-bit signed integer value.blobT -> (blob)
A binary large object (BLOB) value stored as a Base64-encoded string.boolT -> (boolean)
A Boolean value, eithertrue
orfalse
.counterT -> (string)
A distributed counter value that can be incremented and decremented.dateT -> (string)
A date value without a time component, represented as days since epoch (January 1, 1970).decimalT -> (string)
A variable-precision decimal number value.doubleT -> (string)
A 64-bit double-precision floating point value.floatT -> (string)
A 32-bit single-precision floating point value.inetT -> (string)
An IP address value, either IPv4 or IPv6 format.intT -> (string)
A 32-bit signed integer value.listT -> (list)
An ordered collection of elements that can contain duplicate values.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
value -> (tagged union structure)
The value stored in this cell, which can be of various data types supported by Amazon Keyspaces.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:asciiT
,bigintT
,blobT
,boolT
,counterT
,dateT
,decimalT
,doubleT
,floatT
,inetT
,intT
,listT
,mapT
,setT
,smallintT
,textT
,timeT
,timestampT
,timeuuidT
,tinyintT
,tupleT
,uuidT
,varcharT
,varintT
,udtT
.asciiT -> (string)
A value of ASCII text type, containing US-ASCII characters.bigintT -> (string)
A 64-bit signed integer value.blobT -> (blob)
A binary large object (BLOB) value stored as a Base64-encoded string.boolT -> (boolean)
A Boolean value, eithertrue
orfalse
.counterT -> (string)
A distributed counter value that can be incremented and decremented.dateT -> (string)
A date value without a time component, represented as days since epoch (January 1, 1970).decimalT -> (string)
A variable-precision decimal number value.doubleT -> (string)
A 64-bit double-precision floating point value.floatT -> (string)
A 32-bit single-precision floating point value.inetT -> (string)
An IP address value, either IPv4 or IPv6 format.intT -> (string)
A 32-bit signed integer value.listT -> (list)
An ordered collection of elements that can contain duplicate values.
( … recursive … )
mapT -> (list)
A collection of key-value pairs where each key is unique.
(structure)
Represents a key-value pair within a map data type in Amazon Keyspaces, including the associated metadata.
( … recursive … )( … recursive … )metadata -> (structure)
Metadata for this specific key-value pair within the map, such as timestamps and TTL information.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.setT -> (list)
An unordered collection of unique elements.
( … recursive … )
smallintT -> (string)
A 16-bit signed integer value.textT -> (string)
A UTF-8 encoded string value.timeT -> (string)
A time value without a date component, with nanosecond precision.timestampT -> (string)
A timestamp value representing date and time with millisecond precision.timeuuidT -> (string)
A universally unique identifier (UUID) that includes a timestamp component, ensuring both uniqueness and time ordering.tinyintT -> (string)
An 8-bit signed integer value.tupleT -> (list)
A fixed-length ordered list of elements, where each element can be of a different data type.
( … recursive … )
uuidT -> (string)
A universally unique identifier (UUID) value.varcharT -> (string)
A UTF-8 encoded string value, functionally equivalent to text type.varintT -> (string)
A variable precision integer value with arbitrary length.udtT -> (map)
A user-defined type (UDT) value consisting of named fields, each with its own data type.
key -> (string)
( … recursive … )
metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.mapT -> (list)
A collection of key-value pairs where each key is unique.
(structure)
Represents a key-value pair within a map data type in Amazon Keyspaces, including the associated metadata.
key -> (tagged union structure)
The key of this map entry in the Amazon Keyspaces cell.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:asciiT
,bigintT
,blobT
,boolT
,counterT
,dateT
,decimalT
,doubleT
,floatT
,inetT
,intT
,listT
,mapT
,setT
,smallintT
,textT
,timeT
,timestampT
,timeuuidT
,tinyintT
,tupleT
,uuidT
,varcharT
,varintT
,udtT
.asciiT -> (string)
A value of ASCII text type, containing US-ASCII characters.bigintT -> (string)
A 64-bit signed integer value.blobT -> (blob)
A binary large object (BLOB) value stored as a Base64-encoded string.boolT -> (boolean)
A Boolean value, eithertrue
orfalse
.counterT -> (string)
A distributed counter value that can be incremented and decremented.dateT -> (string)
A date value without a time component, represented as days since epoch (January 1, 1970).decimalT -> (string)
A variable-precision decimal number value.doubleT -> (string)
A 64-bit double-precision floating point value.floatT -> (string)
A 32-bit single-precision floating point value.inetT -> (string)
An IP address value, either IPv4 or IPv6 format.intT -> (string)
A 32-bit signed integer value.listT -> (list)
An ordered collection of elements that can contain duplicate values.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.mapT -> (list)
A collection of key-value pairs where each key is unique.
(structure)
Represents a key-value pair within a map data type in Amazon Keyspaces, including the associated metadata.
( … recursive … )( … recursive … )metadata -> (structure)
Metadata for this specific key-value pair within the map, such as timestamps and TTL information.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.setT -> (list)
An unordered collection of unique elements.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.smallintT -> (string)
A 16-bit signed integer value.textT -> (string)
A UTF-8 encoded string value.timeT -> (string)
A time value without a date component, with nanosecond precision.timestampT -> (string)
A timestamp value representing date and time with millisecond precision.timeuuidT -> (string)
A universally unique identifier (UUID) that includes a timestamp component, ensuring both uniqueness and time ordering.tinyintT -> (string)
An 8-bit signed integer value.tupleT -> (list)
A fixed-length ordered list of elements, where each element can be of a different data type.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.uuidT -> (string)
A universally unique identifier (UUID) value.varcharT -> (string)
A UTF-8 encoded string value, functionally equivalent to text type.varintT -> (string)
A variable precision integer value with arbitrary length.udtT -> (map)
A user-defined type (UDT) value consisting of named fields, each with its own data type.
key -> (string)
value -> (structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.value -> (tagged union structure)
The value associated with the key in this map entry.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:asciiT
,bigintT
,blobT
,boolT
,counterT
,dateT
,decimalT
,doubleT
,floatT
,inetT
,intT
,listT
,mapT
,setT
,smallintT
,textT
,timeT
,timestampT
,timeuuidT
,tinyintT
,tupleT
,uuidT
,varcharT
,varintT
,udtT
.asciiT -> (string)
A value of ASCII text type, containing US-ASCII characters.bigintT -> (string)
A 64-bit signed integer value.blobT -> (blob)
A binary large object (BLOB) value stored as a Base64-encoded string.boolT -> (boolean)
A Boolean value, eithertrue
orfalse
.counterT -> (string)
A distributed counter value that can be incremented and decremented.dateT -> (string)
A date value without a time component, represented as days since epoch (January 1, 1970).decimalT -> (string)
A variable-precision decimal number value.doubleT -> (string)
A 64-bit double-precision floating point value.floatT -> (string)
A 32-bit single-precision floating point value.inetT -> (string)
An IP address value, either IPv4 or IPv6 format.intT -> (string)
A 32-bit signed integer value.listT -> (list)
An ordered collection of elements that can contain duplicate values.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.mapT -> (list)
A collection of key-value pairs where each key is unique.
(structure)
Represents a key-value pair within a map data type in Amazon Keyspaces, including the associated metadata.
( … recursive … )( … recursive … )metadata -> (structure)
Metadata for this specific key-value pair within the map, such as timestamps and TTL information.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.setT -> (list)
An unordered collection of unique elements.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.smallintT -> (string)
A 16-bit signed integer value.textT -> (string)
A UTF-8 encoded string value.timeT -> (string)
A time value without a date component, with nanosecond precision.timestampT -> (string)
A timestamp value representing date and time with millisecond precision.timeuuidT -> (string)
A universally unique identifier (UUID) that includes a timestamp component, ensuring both uniqueness and time ordering.tinyintT -> (string)
An 8-bit signed integer value.tupleT -> (list)
A fixed-length ordered list of elements, where each element can be of a different data type.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.uuidT -> (string)
A universally unique identifier (UUID) value.varcharT -> (string)
A UTF-8 encoded string value, functionally equivalent to text type.varintT -> (string)
A variable precision integer value with arbitrary length.udtT -> (map)
A user-defined type (UDT) value consisting of named fields, each with its own data type.
key -> (string)
value -> (structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.metadata -> (structure)
Metadata for this specific key-value pair within the map, such as timestamps and TTL information.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.setT -> (list)
An unordered collection of unique elements.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
value -> (tagged union structure)
The value stored in this cell, which can be of various data types supported by Amazon Keyspaces.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:asciiT
,bigintT
,blobT
,boolT
,counterT
,dateT
,decimalT
,doubleT
,floatT
,inetT
,intT
,listT
,mapT
,setT
,smallintT
,textT
,timeT
,timestampT
,timeuuidT
,tinyintT
,tupleT
,uuidT
,varcharT
,varintT
,udtT
.asciiT -> (string)
A value of ASCII text type, containing US-ASCII characters.bigintT -> (string)
A 64-bit signed integer value.blobT -> (blob)
A binary large object (BLOB) value stored as a Base64-encoded string.boolT -> (boolean)
A Boolean value, eithertrue
orfalse
.counterT -> (string)
A distributed counter value that can be incremented and decremented.dateT -> (string)
A date value without a time component, represented as days since epoch (January 1, 1970).decimalT -> (string)
A variable-precision decimal number value.doubleT -> (string)
A 64-bit double-precision floating point value.floatT -> (string)
A 32-bit single-precision floating point value.inetT -> (string)
An IP address value, either IPv4 or IPv6 format.intT -> (string)
A 32-bit signed integer value.listT -> (list)
An ordered collection of elements that can contain duplicate values.
( … recursive … )
mapT -> (list)
A collection of key-value pairs where each key is unique.
(structure)
Represents a key-value pair within a map data type in Amazon Keyspaces, including the associated metadata.
( … recursive … )( … recursive … )metadata -> (structure)
Metadata for this specific key-value pair within the map, such as timestamps and TTL information.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.setT -> (list)
An unordered collection of unique elements.
( … recursive … )
smallintT -> (string)
A 16-bit signed integer value.textT -> (string)
A UTF-8 encoded string value.timeT -> (string)
A time value without a date component, with nanosecond precision.timestampT -> (string)
A timestamp value representing date and time with millisecond precision.timeuuidT -> (string)
A universally unique identifier (UUID) that includes a timestamp component, ensuring both uniqueness and time ordering.tinyintT -> (string)
An 8-bit signed integer value.tupleT -> (list)
A fixed-length ordered list of elements, where each element can be of a different data type.
( … recursive … )
uuidT -> (string)
A universally unique identifier (UUID) value.varcharT -> (string)
A UTF-8 encoded string value, functionally equivalent to text type.varintT -> (string)
A variable precision integer value with arbitrary length.udtT -> (map)
A user-defined type (UDT) value consisting of named fields, each with its own data type.
key -> (string)
( … recursive … )
metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.smallintT -> (string)
A 16-bit signed integer value.textT -> (string)
A UTF-8 encoded string value.timeT -> (string)
A time value without a date component, with nanosecond precision.timestampT -> (string)
A timestamp value representing date and time with millisecond precision.timeuuidT -> (string)
A universally unique identifier (UUID) that includes a timestamp component, ensuring both uniqueness and time ordering.tinyintT -> (string)
An 8-bit signed integer value.tupleT -> (list)
A fixed-length ordered list of elements, where each element can be of a different data type.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
value -> (tagged union structure)
The value stored in this cell, which can be of various data types supported by Amazon Keyspaces.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:asciiT
,bigintT
,blobT
,boolT
,counterT
,dateT
,decimalT
,doubleT
,floatT
,inetT
,intT
,listT
,mapT
,setT
,smallintT
,textT
,timeT
,timestampT
,timeuuidT
,tinyintT
,tupleT
,uuidT
,varcharT
,varintT
,udtT
.asciiT -> (string)
A value of ASCII text type, containing US-ASCII characters.bigintT -> (string)
A 64-bit signed integer value.blobT -> (blob)
A binary large object (BLOB) value stored as a Base64-encoded string.boolT -> (boolean)
A Boolean value, eithertrue
orfalse
.counterT -> (string)
A distributed counter value that can be incremented and decremented.dateT -> (string)
A date value without a time component, represented as days since epoch (January 1, 1970).decimalT -> (string)
A variable-precision decimal number value.doubleT -> (string)
A 64-bit double-precision floating point value.floatT -> (string)
A 32-bit single-precision floating point value.inetT -> (string)
An IP address value, either IPv4 or IPv6 format.intT -> (string)
A 32-bit signed integer value.listT -> (list)
An ordered collection of elements that can contain duplicate values.
( … recursive … )
mapT -> (list)
A collection of key-value pairs where each key is unique.
(structure)
Represents a key-value pair within a map data type in Amazon Keyspaces, including the associated metadata.
( … recursive … )( … recursive … )metadata -> (structure)
Metadata for this specific key-value pair within the map, such as timestamps and TTL information.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.setT -> (list)
An unordered collection of unique elements.
( … recursive … )
smallintT -> (string)
A 16-bit signed integer value.textT -> (string)
A UTF-8 encoded string value.timeT -> (string)
A time value without a date component, with nanosecond precision.timestampT -> (string)
A timestamp value representing date and time with millisecond precision.timeuuidT -> (string)
A universally unique identifier (UUID) that includes a timestamp component, ensuring both uniqueness and time ordering.tinyintT -> (string)
An 8-bit signed integer value.tupleT -> (list)
A fixed-length ordered list of elements, where each element can be of a different data type.
( … recursive … )
uuidT -> (string)
A universally unique identifier (UUID) value.varcharT -> (string)
A UTF-8 encoded string value, functionally equivalent to text type.varintT -> (string)
A variable precision integer value with arbitrary length.udtT -> (map)
A user-defined type (UDT) value consisting of named fields, each with its own data type.
key -> (string)
( … recursive … )
metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.uuidT -> (string)
A universally unique identifier (UUID) value.varcharT -> (string)
A UTF-8 encoded string value, functionally equivalent to text type.varintT -> (string)
A variable precision integer value with arbitrary length.udtT -> (map)
A user-defined type (UDT) value consisting of named fields, each with its own data type.
key -> (string)
value -> (structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
value -> (tagged union structure)
The value stored in this cell, which can be of various data types supported by Amazon Keyspaces.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:asciiT
,bigintT
,blobT
,boolT
,counterT
,dateT
,decimalT
,doubleT
,floatT
,inetT
,intT
,listT
,mapT
,setT
,smallintT
,textT
,timeT
,timestampT
,timeuuidT
,tinyintT
,tupleT
,uuidT
,varcharT
,varintT
,udtT
.asciiT -> (string)
A value of ASCII text type, containing US-ASCII characters.bigintT -> (string)
A 64-bit signed integer value.blobT -> (blob)
A binary large object (BLOB) value stored as a Base64-encoded string.boolT -> (boolean)
A Boolean value, eithertrue
orfalse
.counterT -> (string)
A distributed counter value that can be incremented and decremented.dateT -> (string)
A date value without a time component, represented as days since epoch (January 1, 1970).decimalT -> (string)
A variable-precision decimal number value.doubleT -> (string)
A 64-bit double-precision floating point value.floatT -> (string)
A 32-bit single-precision floating point value.inetT -> (string)
An IP address value, either IPv4 or IPv6 format.intT -> (string)
A 32-bit signed integer value.listT -> (list)
An ordered collection of elements that can contain duplicate values.
( … recursive … )
mapT -> (list)
A collection of key-value pairs where each key is unique.
(structure)
Represents a key-value pair within a map data type in Amazon Keyspaces, including the associated metadata.
( … recursive … )( … recursive … )metadata -> (structure)
Metadata for this specific key-value pair within the map, such as timestamps and TTL information.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.setT -> (list)
An unordered collection of unique elements.
( … recursive … )
smallintT -> (string)
A 16-bit signed integer value.textT -> (string)
A UTF-8 encoded string value.timeT -> (string)
A time value without a date component, with nanosecond precision.timestampT -> (string)
A timestamp value representing date and time with millisecond precision.timeuuidT -> (string)
A universally unique identifier (UUID) that includes a timestamp component, ensuring both uniqueness and time ordering.tinyintT -> (string)
An 8-bit signed integer value.tupleT -> (list)
A fixed-length ordered list of elements, where each element can be of a different data type.
( … recursive … )
uuidT -> (string)
A universally unique identifier (UUID) value.varcharT -> (string)
A UTF-8 encoded string value, functionally equivalent to text type.varintT -> (string)
A variable precision integer value with arbitrary length.udtT -> (map)
A user-defined type (UDT) value consisting of named fields, each with its own data type.
key -> (string)
( … recursive … )
metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.staticCells -> (map)
A map of static column cells shared by all rows with the same partition key, where keys are column names and values are the corresponding cells.
key -> (string)
value -> (structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
value -> (tagged union structure)
The value stored in this cell, which can be of various data types supported by Amazon Keyspaces.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:asciiT
,bigintT
,blobT
,boolT
,counterT
,dateT
,decimalT
,doubleT
,floatT
,inetT
,intT
,listT
,mapT
,setT
,smallintT
,textT
,timeT
,timestampT
,timeuuidT
,tinyintT
,tupleT
,uuidT
,varcharT
,varintT
,udtT
.asciiT -> (string)
A value of ASCII text type, containing US-ASCII characters.bigintT -> (string)
A 64-bit signed integer value.blobT -> (blob)
A binary large object (BLOB) value stored as a Base64-encoded string.boolT -> (boolean)
A Boolean value, eithertrue
orfalse
.counterT -> (string)
A distributed counter value that can be incremented and decremented.dateT -> (string)
A date value without a time component, represented as days since epoch (January 1, 1970).decimalT -> (string)
A variable-precision decimal number value.doubleT -> (string)
A 64-bit double-precision floating point value.floatT -> (string)
A 32-bit single-precision floating point value.inetT -> (string)
An IP address value, either IPv4 or IPv6 format.intT -> (string)
A 32-bit signed integer value.listT -> (list)
An ordered collection of elements that can contain duplicate values.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
value -> (tagged union structure)
The value stored in this cell, which can be of various data types supported by Amazon Keyspaces.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:asciiT
,bigintT
,blobT
,boolT
,counterT
,dateT
,decimalT
,doubleT
,floatT
,inetT
,intT
,listT
,mapT
,setT
,smallintT
,textT
,timeT
,timestampT
,timeuuidT
,tinyintT
,tupleT
,uuidT
,varcharT
,varintT
,udtT
.asciiT -> (string)
A value of ASCII text type, containing US-ASCII characters.bigintT -> (string)
A 64-bit signed integer value.blobT -> (blob)
A binary large object (BLOB) value stored as a Base64-encoded string.boolT -> (boolean)
A Boolean value, eithertrue
orfalse
.counterT -> (string)
A distributed counter value that can be incremented and decremented.dateT -> (string)
A date value without a time component, represented as days since epoch (January 1, 1970).decimalT -> (string)
A variable-precision decimal number value.doubleT -> (string)
A 64-bit double-precision floating point value.floatT -> (string)
A 32-bit single-precision floating point value.inetT -> (string)
An IP address value, either IPv4 or IPv6 format.intT -> (string)
A 32-bit signed integer value.listT -> (list)
An ordered collection of elements that can contain duplicate values.
( … recursive … )
mapT -> (list)
A collection of key-value pairs where each key is unique.
(structure)
Represents a key-value pair within a map data type in Amazon Keyspaces, including the associated metadata.
( … recursive … )( … recursive … )metadata -> (structure)
Metadata for this specific key-value pair within the map, such as timestamps and TTL information.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.setT -> (list)
An unordered collection of unique elements.
( … recursive … )
smallintT -> (string)
A 16-bit signed integer value.textT -> (string)
A UTF-8 encoded string value.timeT -> (string)
A time value without a date component, with nanosecond precision.timestampT -> (string)
A timestamp value representing date and time with millisecond precision.timeuuidT -> (string)
A universally unique identifier (UUID) that includes a timestamp component, ensuring both uniqueness and time ordering.tinyintT -> (string)
An 8-bit signed integer value.tupleT -> (list)
A fixed-length ordered list of elements, where each element can be of a different data type.
( … recursive … )
uuidT -> (string)
A universally unique identifier (UUID) value.varcharT -> (string)
A UTF-8 encoded string value, functionally equivalent to text type.varintT -> (string)
A variable precision integer value with arbitrary length.udtT -> (map)
A user-defined type (UDT) value consisting of named fields, each with its own data type.
key -> (string)
( … recursive … )
metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.mapT -> (list)
A collection of key-value pairs where each key is unique.
(structure)
Represents a key-value pair within a map data type in Amazon Keyspaces, including the associated metadata.
key -> (tagged union structure)
The key of this map entry in the Amazon Keyspaces cell.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:asciiT
,bigintT
,blobT
,boolT
,counterT
,dateT
,decimalT
,doubleT
,floatT
,inetT
,intT
,listT
,mapT
,setT
,smallintT
,textT
,timeT
,timestampT
,timeuuidT
,tinyintT
,tupleT
,uuidT
,varcharT
,varintT
,udtT
.asciiT -> (string)
A value of ASCII text type, containing US-ASCII characters.bigintT -> (string)
A 64-bit signed integer value.blobT -> (blob)
A binary large object (BLOB) value stored as a Base64-encoded string.boolT -> (boolean)
A Boolean value, eithertrue
orfalse
.counterT -> (string)
A distributed counter value that can be incremented and decremented.dateT -> (string)
A date value without a time component, represented as days since epoch (January 1, 1970).decimalT -> (string)
A variable-precision decimal number value.doubleT -> (string)
A 64-bit double-precision floating point value.floatT -> (string)
A 32-bit single-precision floating point value.inetT -> (string)
An IP address value, either IPv4 or IPv6 format.intT -> (string)
A 32-bit signed integer value.listT -> (list)
An ordered collection of elements that can contain duplicate values.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.mapT -> (list)
A collection of key-value pairs where each key is unique.
(structure)
Represents a key-value pair within a map data type in Amazon Keyspaces, including the associated metadata.
( … recursive … )( … recursive … )metadata -> (structure)
Metadata for this specific key-value pair within the map, such as timestamps and TTL information.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.setT -> (list)
An unordered collection of unique elements.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.smallintT -> (string)
A 16-bit signed integer value.textT -> (string)
A UTF-8 encoded string value.timeT -> (string)
A time value without a date component, with nanosecond precision.timestampT -> (string)
A timestamp value representing date and time with millisecond precision.timeuuidT -> (string)
A universally unique identifier (UUID) that includes a timestamp component, ensuring both uniqueness and time ordering.tinyintT -> (string)
An 8-bit signed integer value.tupleT -> (list)
A fixed-length ordered list of elements, where each element can be of a different data type.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.uuidT -> (string)
A universally unique identifier (UUID) value.varcharT -> (string)
A UTF-8 encoded string value, functionally equivalent to text type.varintT -> (string)
A variable precision integer value with arbitrary length.udtT -> (map)
A user-defined type (UDT) value consisting of named fields, each with its own data type.
key -> (string)
value -> (structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.value -> (tagged union structure)
The value associated with the key in this map entry.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:asciiT
,bigintT
,blobT
,boolT
,counterT
,dateT
,decimalT
,doubleT
,floatT
,inetT
,intT
,listT
,mapT
,setT
,smallintT
,textT
,timeT
,timestampT
,timeuuidT
,tinyintT
,tupleT
,uuidT
,varcharT
,varintT
,udtT
.asciiT -> (string)
A value of ASCII text type, containing US-ASCII characters.bigintT -> (string)
A 64-bit signed integer value.blobT -> (blob)
A binary large object (BLOB) value stored as a Base64-encoded string.boolT -> (boolean)
A Boolean value, eithertrue
orfalse
.counterT -> (string)
A distributed counter value that can be incremented and decremented.dateT -> (string)
A date value without a time component, represented as days since epoch (January 1, 1970).decimalT -> (string)
A variable-precision decimal number value.doubleT -> (string)
A 64-bit double-precision floating point value.floatT -> (string)
A 32-bit single-precision floating point value.inetT -> (string)
An IP address value, either IPv4 or IPv6 format.intT -> (string)
A 32-bit signed integer value.listT -> (list)
An ordered collection of elements that can contain duplicate values.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.mapT -> (list)
A collection of key-value pairs where each key is unique.
(structure)
Represents a key-value pair within a map data type in Amazon Keyspaces, including the associated metadata.
( … recursive … )( … recursive … )metadata -> (structure)
Metadata for this specific key-value pair within the map, such as timestamps and TTL information.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.setT -> (list)
An unordered collection of unique elements.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.smallintT -> (string)
A 16-bit signed integer value.textT -> (string)
A UTF-8 encoded string value.timeT -> (string)
A time value without a date component, with nanosecond precision.timestampT -> (string)
A timestamp value representing date and time with millisecond precision.timeuuidT -> (string)
A universally unique identifier (UUID) that includes a timestamp component, ensuring both uniqueness and time ordering.tinyintT -> (string)
An 8-bit signed integer value.tupleT -> (list)
A fixed-length ordered list of elements, where each element can be of a different data type.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.uuidT -> (string)
A universally unique identifier (UUID) value.varcharT -> (string)
A UTF-8 encoded string value, functionally equivalent to text type.varintT -> (string)
A variable precision integer value with arbitrary length.udtT -> (map)
A user-defined type (UDT) value consisting of named fields, each with its own data type.
key -> (string)
value -> (structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.metadata -> (structure)
Metadata for this specific key-value pair within the map, such as timestamps and TTL information.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.setT -> (list)
An unordered collection of unique elements.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
value -> (tagged union structure)
The value stored in this cell, which can be of various data types supported by Amazon Keyspaces.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:asciiT
,bigintT
,blobT
,boolT
,counterT
,dateT
,decimalT
,doubleT
,floatT
,inetT
,intT
,listT
,mapT
,setT
,smallintT
,textT
,timeT
,timestampT
,timeuuidT
,tinyintT
,tupleT
,uuidT
,varcharT
,varintT
,udtT
.asciiT -> (string)
A value of ASCII text type, containing US-ASCII characters.bigintT -> (string)
A 64-bit signed integer value.blobT -> (blob)
A binary large object (BLOB) value stored as a Base64-encoded string.boolT -> (boolean)
A Boolean value, eithertrue
orfalse
.counterT -> (string)
A distributed counter value that can be incremented and decremented.dateT -> (string)
A date value without a time component, represented as days since epoch (January 1, 1970).decimalT -> (string)
A variable-precision decimal number value.doubleT -> (string)
A 64-bit double-precision floating point value.floatT -> (string)
A 32-bit single-precision floating point value.inetT -> (string)
An IP address value, either IPv4 or IPv6 format.intT -> (string)
A 32-bit signed integer value.listT -> (list)
An ordered collection of elements that can contain duplicate values.
( … recursive … )
mapT -> (list)
A collection of key-value pairs where each key is unique.
(structure)
Represents a key-value pair within a map data type in Amazon Keyspaces, including the associated metadata.
( … recursive … )( … recursive … )metadata -> (structure)
Metadata for this specific key-value pair within the map, such as timestamps and TTL information.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.setT -> (list)
An unordered collection of unique elements.
( … recursive … )
smallintT -> (string)
A 16-bit signed integer value.textT -> (string)
A UTF-8 encoded string value.timeT -> (string)
A time value without a date component, with nanosecond precision.timestampT -> (string)
A timestamp value representing date and time with millisecond precision.timeuuidT -> (string)
A universally unique identifier (UUID) that includes a timestamp component, ensuring both uniqueness and time ordering.tinyintT -> (string)
An 8-bit signed integer value.tupleT -> (list)
A fixed-length ordered list of elements, where each element can be of a different data type.
( … recursive … )
uuidT -> (string)
A universally unique identifier (UUID) value.varcharT -> (string)
A UTF-8 encoded string value, functionally equivalent to text type.varintT -> (string)
A variable precision integer value with arbitrary length.udtT -> (map)
A user-defined type (UDT) value consisting of named fields, each with its own data type.
key -> (string)
( … recursive … )
metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.smallintT -> (string)
A 16-bit signed integer value.textT -> (string)
A UTF-8 encoded string value.timeT -> (string)
A time value without a date component, with nanosecond precision.timestampT -> (string)
A timestamp value representing date and time with millisecond precision.timeuuidT -> (string)
A universally unique identifier (UUID) that includes a timestamp component, ensuring both uniqueness and time ordering.tinyintT -> (string)
An 8-bit signed integer value.tupleT -> (list)
A fixed-length ordered list of elements, where each element can be of a different data type.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
value -> (tagged union structure)
The value stored in this cell, which can be of various data types supported by Amazon Keyspaces.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:asciiT
,bigintT
,blobT
,boolT
,counterT
,dateT
,decimalT
,doubleT
,floatT
,inetT
,intT
,listT
,mapT
,setT
,smallintT
,textT
,timeT
,timestampT
,timeuuidT
,tinyintT
,tupleT
,uuidT
,varcharT
,varintT
,udtT
.asciiT -> (string)
A value of ASCII text type, containing US-ASCII characters.bigintT -> (string)
A 64-bit signed integer value.blobT -> (blob)
A binary large object (BLOB) value stored as a Base64-encoded string.boolT -> (boolean)
A Boolean value, eithertrue
orfalse
.counterT -> (string)
A distributed counter value that can be incremented and decremented.dateT -> (string)
A date value without a time component, represented as days since epoch (January 1, 1970).decimalT -> (string)
A variable-precision decimal number value.doubleT -> (string)
A 64-bit double-precision floating point value.floatT -> (string)
A 32-bit single-precision floating point value.inetT -> (string)
An IP address value, either IPv4 or IPv6 format.intT -> (string)
A 32-bit signed integer value.listT -> (list)
An ordered collection of elements that can contain duplicate values.
( … recursive … )
mapT -> (list)
A collection of key-value pairs where each key is unique.
(structure)
Represents a key-value pair within a map data type in Amazon Keyspaces, including the associated metadata.
( … recursive … )( … recursive … )metadata -> (structure)
Metadata for this specific key-value pair within the map, such as timestamps and TTL information.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.setT -> (list)
An unordered collection of unique elements.
( … recursive … )
smallintT -> (string)
A 16-bit signed integer value.textT -> (string)
A UTF-8 encoded string value.timeT -> (string)
A time value without a date component, with nanosecond precision.timestampT -> (string)
A timestamp value representing date and time with millisecond precision.timeuuidT -> (string)
A universally unique identifier (UUID) that includes a timestamp component, ensuring both uniqueness and time ordering.tinyintT -> (string)
An 8-bit signed integer value.tupleT -> (list)
A fixed-length ordered list of elements, where each element can be of a different data type.
( … recursive … )
uuidT -> (string)
A universally unique identifier (UUID) value.varcharT -> (string)
A UTF-8 encoded string value, functionally equivalent to text type.varintT -> (string)
A variable precision integer value with arbitrary length.udtT -> (map)
A user-defined type (UDT) value consisting of named fields, each with its own data type.
key -> (string)
( … recursive … )
metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.uuidT -> (string)
A universally unique identifier (UUID) value.varcharT -> (string)
A UTF-8 encoded string value, functionally equivalent to text type.varintT -> (string)
A variable precision integer value with arbitrary length.udtT -> (map)
A user-defined type (UDT) value consisting of named fields, each with its own data type.
key -> (string)
value -> (structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
value -> (tagged union structure)
The value stored in this cell, which can be of various data types supported by Amazon Keyspaces.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:asciiT
,bigintT
,blobT
,boolT
,counterT
,dateT
,decimalT
,doubleT
,floatT
,inetT
,intT
,listT
,mapT
,setT
,smallintT
,textT
,timeT
,timestampT
,timeuuidT
,tinyintT
,tupleT
,uuidT
,varcharT
,varintT
,udtT
.asciiT -> (string)
A value of ASCII text type, containing US-ASCII characters.bigintT -> (string)
A 64-bit signed integer value.blobT -> (blob)
A binary large object (BLOB) value stored as a Base64-encoded string.boolT -> (boolean)
A Boolean value, eithertrue
orfalse
.counterT -> (string)
A distributed counter value that can be incremented and decremented.dateT -> (string)
A date value without a time component, represented as days since epoch (January 1, 1970).decimalT -> (string)
A variable-precision decimal number value.doubleT -> (string)
A 64-bit double-precision floating point value.floatT -> (string)
A 32-bit single-precision floating point value.inetT -> (string)
An IP address value, either IPv4 or IPv6 format.intT -> (string)
A 32-bit signed integer value.listT -> (list)
An ordered collection of elements that can contain duplicate values.
( … recursive … )
mapT -> (list)
A collection of key-value pairs where each key is unique.
(structure)
Represents a key-value pair within a map data type in Amazon Keyspaces, including the associated metadata.
( … recursive … )( … recursive … )metadata -> (structure)
Metadata for this specific key-value pair within the map, such as timestamps and TTL information.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.setT -> (list)
An unordered collection of unique elements.
( … recursive … )
smallintT -> (string)
A 16-bit signed integer value.textT -> (string)
A UTF-8 encoded string value.timeT -> (string)
A time value without a date component, with nanosecond precision.timestampT -> (string)
A timestamp value representing date and time with millisecond precision.timeuuidT -> (string)
A universally unique identifier (UUID) that includes a timestamp component, ensuring both uniqueness and time ordering.tinyintT -> (string)
An 8-bit signed integer value.tupleT -> (list)
A fixed-length ordered list of elements, where each element can be of a different data type.
( … recursive … )
uuidT -> (string)
A universally unique identifier (UUID) value.varcharT -> (string)
A UTF-8 encoded string value, functionally equivalent to text type.varintT -> (string)
A variable precision integer value with arbitrary length.udtT -> (map)
A user-defined type (UDT) value consisting of named fields, each with its own data type.
key -> (string)
( … recursive … )
metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.rowMetadata -> (structure)
Metadata that applies to the entire row, such as timestamps and TTL information.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.oldImage -> (structure)
The state of the row before the change operation that generated this record.
valueCells -> (map)
A map of regular (non-static) column cells in the row, where keys are column names and values are the corresponding cells.
key -> (string)
value -> (structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
value -> (tagged union structure)
The value stored in this cell, which can be of various data types supported by Amazon Keyspaces.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:asciiT
,bigintT
,blobT
,boolT
,counterT
,dateT
,decimalT
,doubleT
,floatT
,inetT
,intT
,listT
,mapT
,setT
,smallintT
,textT
,timeT
,timestampT
,timeuuidT
,tinyintT
,tupleT
,uuidT
,varcharT
,varintT
,udtT
.asciiT -> (string)
A value of ASCII text type, containing US-ASCII characters.bigintT -> (string)
A 64-bit signed integer value.blobT -> (blob)
A binary large object (BLOB) value stored as a Base64-encoded string.boolT -> (boolean)
A Boolean value, eithertrue
orfalse
.counterT -> (string)
A distributed counter value that can be incremented and decremented.dateT -> (string)
A date value without a time component, represented as days since epoch (January 1, 1970).decimalT -> (string)
A variable-precision decimal number value.doubleT -> (string)
A 64-bit double-precision floating point value.floatT -> (string)
A 32-bit single-precision floating point value.inetT -> (string)
An IP address value, either IPv4 or IPv6 format.intT -> (string)
A 32-bit signed integer value.listT -> (list)
An ordered collection of elements that can contain duplicate values.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
value -> (tagged union structure)
The value stored in this cell, which can be of various data types supported by Amazon Keyspaces.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:asciiT
,bigintT
,blobT
,boolT
,counterT
,dateT
,decimalT
,doubleT
,floatT
,inetT
,intT
,listT
,mapT
,setT
,smallintT
,textT
,timeT
,timestampT
,timeuuidT
,tinyintT
,tupleT
,uuidT
,varcharT
,varintT
,udtT
.asciiT -> (string)
A value of ASCII text type, containing US-ASCII characters.bigintT -> (string)
A 64-bit signed integer value.blobT -> (blob)
A binary large object (BLOB) value stored as a Base64-encoded string.boolT -> (boolean)
A Boolean value, eithertrue
orfalse
.counterT -> (string)
A distributed counter value that can be incremented and decremented.dateT -> (string)
A date value without a time component, represented as days since epoch (January 1, 1970).decimalT -> (string)
A variable-precision decimal number value.doubleT -> (string)
A 64-bit double-precision floating point value.floatT -> (string)
A 32-bit single-precision floating point value.inetT -> (string)
An IP address value, either IPv4 or IPv6 format.intT -> (string)
A 32-bit signed integer value.listT -> (list)
An ordered collection of elements that can contain duplicate values.
( … recursive … )
mapT -> (list)
A collection of key-value pairs where each key is unique.
(structure)
Represents a key-value pair within a map data type in Amazon Keyspaces, including the associated metadata.
( … recursive … )( … recursive … )metadata -> (structure)
Metadata for this specific key-value pair within the map, such as timestamps and TTL information.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.setT -> (list)
An unordered collection of unique elements.
( … recursive … )
smallintT -> (string)
A 16-bit signed integer value.textT -> (string)
A UTF-8 encoded string value.timeT -> (string)
A time value without a date component, with nanosecond precision.timestampT -> (string)
A timestamp value representing date and time with millisecond precision.timeuuidT -> (string)
A universally unique identifier (UUID) that includes a timestamp component, ensuring both uniqueness and time ordering.tinyintT -> (string)
An 8-bit signed integer value.tupleT -> (list)
A fixed-length ordered list of elements, where each element can be of a different data type.
( … recursive … )
uuidT -> (string)
A universally unique identifier (UUID) value.varcharT -> (string)
A UTF-8 encoded string value, functionally equivalent to text type.varintT -> (string)
A variable precision integer value with arbitrary length.udtT -> (map)
A user-defined type (UDT) value consisting of named fields, each with its own data type.
key -> (string)
( … recursive … )
metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.mapT -> (list)
A collection of key-value pairs where each key is unique.
(structure)
Represents a key-value pair within a map data type in Amazon Keyspaces, including the associated metadata.
key -> (tagged union structure)
The key of this map entry in the Amazon Keyspaces cell.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:asciiT
,bigintT
,blobT
,boolT
,counterT
,dateT
,decimalT
,doubleT
,floatT
,inetT
,intT
,listT
,mapT
,setT
,smallintT
,textT
,timeT
,timestampT
,timeuuidT
,tinyintT
,tupleT
,uuidT
,varcharT
,varintT
,udtT
.asciiT -> (string)
A value of ASCII text type, containing US-ASCII characters.bigintT -> (string)
A 64-bit signed integer value.blobT -> (blob)
A binary large object (BLOB) value stored as a Base64-encoded string.boolT -> (boolean)
A Boolean value, eithertrue
orfalse
.counterT -> (string)
A distributed counter value that can be incremented and decremented.dateT -> (string)
A date value without a time component, represented as days since epoch (January 1, 1970).decimalT -> (string)
A variable-precision decimal number value.doubleT -> (string)
A 64-bit double-precision floating point value.floatT -> (string)
A 32-bit single-precision floating point value.inetT -> (string)
An IP address value, either IPv4 or IPv6 format.intT -> (string)
A 32-bit signed integer value.listT -> (list)
An ordered collection of elements that can contain duplicate values.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.mapT -> (list)
A collection of key-value pairs where each key is unique.
(structure)
Represents a key-value pair within a map data type in Amazon Keyspaces, including the associated metadata.
( … recursive … )( … recursive … )metadata -> (structure)
Metadata for this specific key-value pair within the map, such as timestamps and TTL information.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.setT -> (list)
An unordered collection of unique elements.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.smallintT -> (string)
A 16-bit signed integer value.textT -> (string)
A UTF-8 encoded string value.timeT -> (string)
A time value without a date component, with nanosecond precision.timestampT -> (string)
A timestamp value representing date and time with millisecond precision.timeuuidT -> (string)
A universally unique identifier (UUID) that includes a timestamp component, ensuring both uniqueness and time ordering.tinyintT -> (string)
An 8-bit signed integer value.tupleT -> (list)
A fixed-length ordered list of elements, where each element can be of a different data type.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.uuidT -> (string)
A universally unique identifier (UUID) value.varcharT -> (string)
A UTF-8 encoded string value, functionally equivalent to text type.varintT -> (string)
A variable precision integer value with arbitrary length.udtT -> (map)
A user-defined type (UDT) value consisting of named fields, each with its own data type.
key -> (string)
value -> (structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.value -> (tagged union structure)
The value associated with the key in this map entry.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:asciiT
,bigintT
,blobT
,boolT
,counterT
,dateT
,decimalT
,doubleT
,floatT
,inetT
,intT
,listT
,mapT
,setT
,smallintT
,textT
,timeT
,timestampT
,timeuuidT
,tinyintT
,tupleT
,uuidT
,varcharT
,varintT
,udtT
.asciiT -> (string)
A value of ASCII text type, containing US-ASCII characters.bigintT -> (string)
A 64-bit signed integer value.blobT -> (blob)
A binary large object (BLOB) value stored as a Base64-encoded string.boolT -> (boolean)
A Boolean value, eithertrue
orfalse
.counterT -> (string)
A distributed counter value that can be incremented and decremented.dateT -> (string)
A date value without a time component, represented as days since epoch (January 1, 1970).decimalT -> (string)
A variable-precision decimal number value.doubleT -> (string)
A 64-bit double-precision floating point value.floatT -> (string)
A 32-bit single-precision floating point value.inetT -> (string)
An IP address value, either IPv4 or IPv6 format.intT -> (string)
A 32-bit signed integer value.listT -> (list)
An ordered collection of elements that can contain duplicate values.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.mapT -> (list)
A collection of key-value pairs where each key is unique.
(structure)
Represents a key-value pair within a map data type in Amazon Keyspaces, including the associated metadata.
( … recursive … )( … recursive … )metadata -> (structure)
Metadata for this specific key-value pair within the map, such as timestamps and TTL information.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.setT -> (list)
An unordered collection of unique elements.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.smallintT -> (string)
A 16-bit signed integer value.textT -> (string)
A UTF-8 encoded string value.timeT -> (string)
A time value without a date component, with nanosecond precision.timestampT -> (string)
A timestamp value representing date and time with millisecond precision.timeuuidT -> (string)
A universally unique identifier (UUID) that includes a timestamp component, ensuring both uniqueness and time ordering.tinyintT -> (string)
An 8-bit signed integer value.tupleT -> (list)
A fixed-length ordered list of elements, where each element can be of a different data type.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.uuidT -> (string)
A universally unique identifier (UUID) value.varcharT -> (string)
A UTF-8 encoded string value, functionally equivalent to text type.varintT -> (string)
A variable precision integer value with arbitrary length.udtT -> (map)
A user-defined type (UDT) value consisting of named fields, each with its own data type.
key -> (string)
value -> (structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.metadata -> (structure)
Metadata for this specific key-value pair within the map, such as timestamps and TTL information.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.setT -> (list)
An unordered collection of unique elements.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
value -> (tagged union structure)
The value stored in this cell, which can be of various data types supported by Amazon Keyspaces.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:asciiT
,bigintT
,blobT
,boolT
,counterT
,dateT
,decimalT
,doubleT
,floatT
,inetT
,intT
,listT
,mapT
,setT
,smallintT
,textT
,timeT
,timestampT
,timeuuidT
,tinyintT
,tupleT
,uuidT
,varcharT
,varintT
,udtT
.asciiT -> (string)
A value of ASCII text type, containing US-ASCII characters.bigintT -> (string)
A 64-bit signed integer value.blobT -> (blob)
A binary large object (BLOB) value stored as a Base64-encoded string.boolT -> (boolean)
A Boolean value, eithertrue
orfalse
.counterT -> (string)
A distributed counter value that can be incremented and decremented.dateT -> (string)
A date value without a time component, represented as days since epoch (January 1, 1970).decimalT -> (string)
A variable-precision decimal number value.doubleT -> (string)
A 64-bit double-precision floating point value.floatT -> (string)
A 32-bit single-precision floating point value.inetT -> (string)
An IP address value, either IPv4 or IPv6 format.intT -> (string)
A 32-bit signed integer value.listT -> (list)
An ordered collection of elements that can contain duplicate values.
( … recursive … )
mapT -> (list)
A collection of key-value pairs where each key is unique.
(structure)
Represents a key-value pair within a map data type in Amazon Keyspaces, including the associated metadata.
( … recursive … )( … recursive … )metadata -> (structure)
Metadata for this specific key-value pair within the map, such as timestamps and TTL information.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.setT -> (list)
An unordered collection of unique elements.
( … recursive … )
smallintT -> (string)
A 16-bit signed integer value.textT -> (string)
A UTF-8 encoded string value.timeT -> (string)
A time value without a date component, with nanosecond precision.timestampT -> (string)
A timestamp value representing date and time with millisecond precision.timeuuidT -> (string)
A universally unique identifier (UUID) that includes a timestamp component, ensuring both uniqueness and time ordering.tinyintT -> (string)
An 8-bit signed integer value.tupleT -> (list)
A fixed-length ordered list of elements, where each element can be of a different data type.
( … recursive … )
uuidT -> (string)
A universally unique identifier (UUID) value.varcharT -> (string)
A UTF-8 encoded string value, functionally equivalent to text type.varintT -> (string)
A variable precision integer value with arbitrary length.udtT -> (map)
A user-defined type (UDT) value consisting of named fields, each with its own data type.
key -> (string)
( … recursive … )
metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.smallintT -> (string)
A 16-bit signed integer value.textT -> (string)
A UTF-8 encoded string value.timeT -> (string)
A time value without a date component, with nanosecond precision.timestampT -> (string)
A timestamp value representing date and time with millisecond precision.timeuuidT -> (string)
A universally unique identifier (UUID) that includes a timestamp component, ensuring both uniqueness and time ordering.tinyintT -> (string)
An 8-bit signed integer value.tupleT -> (list)
A fixed-length ordered list of elements, where each element can be of a different data type.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
value -> (tagged union structure)
The value stored in this cell, which can be of various data types supported by Amazon Keyspaces.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:asciiT
,bigintT
,blobT
,boolT
,counterT
,dateT
,decimalT
,doubleT
,floatT
,inetT
,intT
,listT
,mapT
,setT
,smallintT
,textT
,timeT
,timestampT
,timeuuidT
,tinyintT
,tupleT
,uuidT
,varcharT
,varintT
,udtT
.asciiT -> (string)
A value of ASCII text type, containing US-ASCII characters.bigintT -> (string)
A 64-bit signed integer value.blobT -> (blob)
A binary large object (BLOB) value stored as a Base64-encoded string.boolT -> (boolean)
A Boolean value, eithertrue
orfalse
.counterT -> (string)
A distributed counter value that can be incremented and decremented.dateT -> (string)
A date value without a time component, represented as days since epoch (January 1, 1970).decimalT -> (string)
A variable-precision decimal number value.doubleT -> (string)
A 64-bit double-precision floating point value.floatT -> (string)
A 32-bit single-precision floating point value.inetT -> (string)
An IP address value, either IPv4 or IPv6 format.intT -> (string)
A 32-bit signed integer value.listT -> (list)
An ordered collection of elements that can contain duplicate values.
( … recursive … )
mapT -> (list)
A collection of key-value pairs where each key is unique.
(structure)
Represents a key-value pair within a map data type in Amazon Keyspaces, including the associated metadata.
( … recursive … )( … recursive … )metadata -> (structure)
Metadata for this specific key-value pair within the map, such as timestamps and TTL information.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.setT -> (list)
An unordered collection of unique elements.
( … recursive … )
smallintT -> (string)
A 16-bit signed integer value.textT -> (string)
A UTF-8 encoded string value.timeT -> (string)
A time value without a date component, with nanosecond precision.timestampT -> (string)
A timestamp value representing date and time with millisecond precision.timeuuidT -> (string)
A universally unique identifier (UUID) that includes a timestamp component, ensuring both uniqueness and time ordering.tinyintT -> (string)
An 8-bit signed integer value.tupleT -> (list)
A fixed-length ordered list of elements, where each element can be of a different data type.
( … recursive … )
uuidT -> (string)
A universally unique identifier (UUID) value.varcharT -> (string)
A UTF-8 encoded string value, functionally equivalent to text type.varintT -> (string)
A variable precision integer value with arbitrary length.udtT -> (map)
A user-defined type (UDT) value consisting of named fields, each with its own data type.
key -> (string)
( … recursive … )
metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.uuidT -> (string)
A universally unique identifier (UUID) value.varcharT -> (string)
A UTF-8 encoded string value, functionally equivalent to text type.varintT -> (string)
A variable precision integer value with arbitrary length.udtT -> (map)
A user-defined type (UDT) value consisting of named fields, each with its own data type.
key -> (string)
value -> (structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
value -> (tagged union structure)
The value stored in this cell, which can be of various data types supported by Amazon Keyspaces.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:asciiT
,bigintT
,blobT
,boolT
,counterT
,dateT
,decimalT
,doubleT
,floatT
,inetT
,intT
,listT
,mapT
,setT
,smallintT
,textT
,timeT
,timestampT
,timeuuidT
,tinyintT
,tupleT
,uuidT
,varcharT
,varintT
,udtT
.asciiT -> (string)
A value of ASCII text type, containing US-ASCII characters.bigintT -> (string)
A 64-bit signed integer value.blobT -> (blob)
A binary large object (BLOB) value stored as a Base64-encoded string.boolT -> (boolean)
A Boolean value, eithertrue
orfalse
.counterT -> (string)
A distributed counter value that can be incremented and decremented.dateT -> (string)
A date value without a time component, represented as days since epoch (January 1, 1970).decimalT -> (string)
A variable-precision decimal number value.doubleT -> (string)
A 64-bit double-precision floating point value.floatT -> (string)
A 32-bit single-precision floating point value.inetT -> (string)
An IP address value, either IPv4 or IPv6 format.intT -> (string)
A 32-bit signed integer value.listT -> (list)
An ordered collection of elements that can contain duplicate values.
( … recursive … )
mapT -> (list)
A collection of key-value pairs where each key is unique.
(structure)
Represents a key-value pair within a map data type in Amazon Keyspaces, including the associated metadata.
( … recursive … )( … recursive … )metadata -> (structure)
Metadata for this specific key-value pair within the map, such as timestamps and TTL information.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.setT -> (list)
An unordered collection of unique elements.
( … recursive … )
smallintT -> (string)
A 16-bit signed integer value.textT -> (string)
A UTF-8 encoded string value.timeT -> (string)
A time value without a date component, with nanosecond precision.timestampT -> (string)
A timestamp value representing date and time with millisecond precision.timeuuidT -> (string)
A universally unique identifier (UUID) that includes a timestamp component, ensuring both uniqueness and time ordering.tinyintT -> (string)
An 8-bit signed integer value.tupleT -> (list)
A fixed-length ordered list of elements, where each element can be of a different data type.
( … recursive … )
uuidT -> (string)
A universally unique identifier (UUID) value.varcharT -> (string)
A UTF-8 encoded string value, functionally equivalent to text type.varintT -> (string)
A variable precision integer value with arbitrary length.udtT -> (map)
A user-defined type (UDT) value consisting of named fields, each with its own data type.
key -> (string)
( … recursive … )
metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.staticCells -> (map)
A map of static column cells shared by all rows with the same partition key, where keys are column names and values are the corresponding cells.
key -> (string)
value -> (structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
value -> (tagged union structure)
The value stored in this cell, which can be of various data types supported by Amazon Keyspaces.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:asciiT
,bigintT
,blobT
,boolT
,counterT
,dateT
,decimalT
,doubleT
,floatT
,inetT
,intT
,listT
,mapT
,setT
,smallintT
,textT
,timeT
,timestampT
,timeuuidT
,tinyintT
,tupleT
,uuidT
,varcharT
,varintT
,udtT
.asciiT -> (string)
A value of ASCII text type, containing US-ASCII characters.bigintT -> (string)
A 64-bit signed integer value.blobT -> (blob)
A binary large object (BLOB) value stored as a Base64-encoded string.boolT -> (boolean)
A Boolean value, eithertrue
orfalse
.counterT -> (string)
A distributed counter value that can be incremented and decremented.dateT -> (string)
A date value without a time component, represented as days since epoch (January 1, 1970).decimalT -> (string)
A variable-precision decimal number value.doubleT -> (string)
A 64-bit double-precision floating point value.floatT -> (string)
A 32-bit single-precision floating point value.inetT -> (string)
An IP address value, either IPv4 or IPv6 format.intT -> (string)
A 32-bit signed integer value.listT -> (list)
An ordered collection of elements that can contain duplicate values.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
value -> (tagged union structure)
The value stored in this cell, which can be of various data types supported by Amazon Keyspaces.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:asciiT
,bigintT
,blobT
,boolT
,counterT
,dateT
,decimalT
,doubleT
,floatT
,inetT
,intT
,listT
,mapT
,setT
,smallintT
,textT
,timeT
,timestampT
,timeuuidT
,tinyintT
,tupleT
,uuidT
,varcharT
,varintT
,udtT
.asciiT -> (string)
A value of ASCII text type, containing US-ASCII characters.bigintT -> (string)
A 64-bit signed integer value.blobT -> (blob)
A binary large object (BLOB) value stored as a Base64-encoded string.boolT -> (boolean)
A Boolean value, eithertrue
orfalse
.counterT -> (string)
A distributed counter value that can be incremented and decremented.dateT -> (string)
A date value without a time component, represented as days since epoch (January 1, 1970).decimalT -> (string)
A variable-precision decimal number value.doubleT -> (string)
A 64-bit double-precision floating point value.floatT -> (string)
A 32-bit single-precision floating point value.inetT -> (string)
An IP address value, either IPv4 or IPv6 format.intT -> (string)
A 32-bit signed integer value.listT -> (list)
An ordered collection of elements that can contain duplicate values.
( … recursive … )
mapT -> (list)
A collection of key-value pairs where each key is unique.
(structure)
Represents a key-value pair within a map data type in Amazon Keyspaces, including the associated metadata.
( … recursive … )( … recursive … )metadata -> (structure)
Metadata for this specific key-value pair within the map, such as timestamps and TTL information.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.setT -> (list)
An unordered collection of unique elements.
( … recursive … )
smallintT -> (string)
A 16-bit signed integer value.textT -> (string)
A UTF-8 encoded string value.timeT -> (string)
A time value without a date component, with nanosecond precision.timestampT -> (string)
A timestamp value representing date and time with millisecond precision.timeuuidT -> (string)
A universally unique identifier (UUID) that includes a timestamp component, ensuring both uniqueness and time ordering.tinyintT -> (string)
An 8-bit signed integer value.tupleT -> (list)
A fixed-length ordered list of elements, where each element can be of a different data type.
( … recursive … )
uuidT -> (string)
A universally unique identifier (UUID) value.varcharT -> (string)
A UTF-8 encoded string value, functionally equivalent to text type.varintT -> (string)
A variable precision integer value with arbitrary length.udtT -> (map)
A user-defined type (UDT) value consisting of named fields, each with its own data type.
key -> (string)
( … recursive … )
metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.mapT -> (list)
A collection of key-value pairs where each key is unique.
(structure)
Represents a key-value pair within a map data type in Amazon Keyspaces, including the associated metadata.
key -> (tagged union structure)
The key of this map entry in the Amazon Keyspaces cell.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:asciiT
,bigintT
,blobT
,boolT
,counterT
,dateT
,decimalT
,doubleT
,floatT
,inetT
,intT
,listT
,mapT
,setT
,smallintT
,textT
,timeT
,timestampT
,timeuuidT
,tinyintT
,tupleT
,uuidT
,varcharT
,varintT
,udtT
.asciiT -> (string)
A value of ASCII text type, containing US-ASCII characters.bigintT -> (string)
A 64-bit signed integer value.blobT -> (blob)
A binary large object (BLOB) value stored as a Base64-encoded string.boolT -> (boolean)
A Boolean value, eithertrue
orfalse
.counterT -> (string)
A distributed counter value that can be incremented and decremented.dateT -> (string)
A date value without a time component, represented as days since epoch (January 1, 1970).decimalT -> (string)
A variable-precision decimal number value.doubleT -> (string)
A 64-bit double-precision floating point value.floatT -> (string)
A 32-bit single-precision floating point value.inetT -> (string)
An IP address value, either IPv4 or IPv6 format.intT -> (string)
A 32-bit signed integer value.listT -> (list)
An ordered collection of elements that can contain duplicate values.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.mapT -> (list)
A collection of key-value pairs where each key is unique.
(structure)
Represents a key-value pair within a map data type in Amazon Keyspaces, including the associated metadata.
( … recursive … )( … recursive … )metadata -> (structure)
Metadata for this specific key-value pair within the map, such as timestamps and TTL information.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.setT -> (list)
An unordered collection of unique elements.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.smallintT -> (string)
A 16-bit signed integer value.textT -> (string)
A UTF-8 encoded string value.timeT -> (string)
A time value without a date component, with nanosecond precision.timestampT -> (string)
A timestamp value representing date and time with millisecond precision.timeuuidT -> (string)
A universally unique identifier (UUID) that includes a timestamp component, ensuring both uniqueness and time ordering.tinyintT -> (string)
An 8-bit signed integer value.tupleT -> (list)
A fixed-length ordered list of elements, where each element can be of a different data type.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.uuidT -> (string)
A universally unique identifier (UUID) value.varcharT -> (string)
A UTF-8 encoded string value, functionally equivalent to text type.varintT -> (string)
A variable precision integer value with arbitrary length.udtT -> (map)
A user-defined type (UDT) value consisting of named fields, each with its own data type.
key -> (string)
value -> (structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.value -> (tagged union structure)
The value associated with the key in this map entry.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:asciiT
,bigintT
,blobT
,boolT
,counterT
,dateT
,decimalT
,doubleT
,floatT
,inetT
,intT
,listT
,mapT
,setT
,smallintT
,textT
,timeT
,timestampT
,timeuuidT
,tinyintT
,tupleT
,uuidT
,varcharT
,varintT
,udtT
.asciiT -> (string)
A value of ASCII text type, containing US-ASCII characters.bigintT -> (string)
A 64-bit signed integer value.blobT -> (blob)
A binary large object (BLOB) value stored as a Base64-encoded string.boolT -> (boolean)
A Boolean value, eithertrue
orfalse
.counterT -> (string)
A distributed counter value that can be incremented and decremented.dateT -> (string)
A date value without a time component, represented as days since epoch (January 1, 1970).decimalT -> (string)
A variable-precision decimal number value.doubleT -> (string)
A 64-bit double-precision floating point value.floatT -> (string)
A 32-bit single-precision floating point value.inetT -> (string)
An IP address value, either IPv4 or IPv6 format.intT -> (string)
A 32-bit signed integer value.listT -> (list)
An ordered collection of elements that can contain duplicate values.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.mapT -> (list)
A collection of key-value pairs where each key is unique.
(structure)
Represents a key-value pair within a map data type in Amazon Keyspaces, including the associated metadata.
( … recursive … )( … recursive … )metadata -> (structure)
Metadata for this specific key-value pair within the map, such as timestamps and TTL information.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.setT -> (list)
An unordered collection of unique elements.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.smallintT -> (string)
A 16-bit signed integer value.textT -> (string)
A UTF-8 encoded string value.timeT -> (string)
A time value without a date component, with nanosecond precision.timestampT -> (string)
A timestamp value representing date and time with millisecond precision.timeuuidT -> (string)
A universally unique identifier (UUID) that includes a timestamp component, ensuring both uniqueness and time ordering.tinyintT -> (string)
An 8-bit signed integer value.tupleT -> (list)
A fixed-length ordered list of elements, where each element can be of a different data type.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.uuidT -> (string)
A universally unique identifier (UUID) value.varcharT -> (string)
A UTF-8 encoded string value, functionally equivalent to text type.varintT -> (string)
A variable precision integer value with arbitrary length.udtT -> (map)
A user-defined type (UDT) value consisting of named fields, each with its own data type.
key -> (string)
value -> (structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
( … recursive … )metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.metadata -> (structure)
Metadata for this specific key-value pair within the map, such as timestamps and TTL information.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.setT -> (list)
An unordered collection of unique elements.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
value -> (tagged union structure)
The value stored in this cell, which can be of various data types supported by Amazon Keyspaces.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:asciiT
,bigintT
,blobT
,boolT
,counterT
,dateT
,decimalT
,doubleT
,floatT
,inetT
,intT
,listT
,mapT
,setT
,smallintT
,textT
,timeT
,timestampT
,timeuuidT
,tinyintT
,tupleT
,uuidT
,varcharT
,varintT
,udtT
.asciiT -> (string)
A value of ASCII text type, containing US-ASCII characters.bigintT -> (string)
A 64-bit signed integer value.blobT -> (blob)
A binary large object (BLOB) value stored as a Base64-encoded string.boolT -> (boolean)
A Boolean value, eithertrue
orfalse
.counterT -> (string)
A distributed counter value that can be incremented and decremented.dateT -> (string)
A date value without a time component, represented as days since epoch (January 1, 1970).decimalT -> (string)
A variable-precision decimal number value.doubleT -> (string)
A 64-bit double-precision floating point value.floatT -> (string)
A 32-bit single-precision floating point value.inetT -> (string)
An IP address value, either IPv4 or IPv6 format.intT -> (string)
A 32-bit signed integer value.listT -> (list)
An ordered collection of elements that can contain duplicate values.
( … recursive … )
mapT -> (list)
A collection of key-value pairs where each key is unique.
(structure)
Represents a key-value pair within a map data type in Amazon Keyspaces, including the associated metadata.
( … recursive … )( … recursive … )metadata -> (structure)
Metadata for this specific key-value pair within the map, such as timestamps and TTL information.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.setT -> (list)
An unordered collection of unique elements.
( … recursive … )
smallintT -> (string)
A 16-bit signed integer value.textT -> (string)
A UTF-8 encoded string value.timeT -> (string)
A time value without a date component, with nanosecond precision.timestampT -> (string)
A timestamp value representing date and time with millisecond precision.timeuuidT -> (string)
A universally unique identifier (UUID) that includes a timestamp component, ensuring both uniqueness and time ordering.tinyintT -> (string)
An 8-bit signed integer value.tupleT -> (list)
A fixed-length ordered list of elements, where each element can be of a different data type.
( … recursive … )
uuidT -> (string)
A universally unique identifier (UUID) value.varcharT -> (string)
A UTF-8 encoded string value, functionally equivalent to text type.varintT -> (string)
A variable precision integer value with arbitrary length.udtT -> (map)
A user-defined type (UDT) value consisting of named fields, each with its own data type.
key -> (string)
( … recursive … )
metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.smallintT -> (string)
A 16-bit signed integer value.textT -> (string)
A UTF-8 encoded string value.timeT -> (string)
A time value without a date component, with nanosecond precision.timestampT -> (string)
A timestamp value representing date and time with millisecond precision.timeuuidT -> (string)
A universally unique identifier (UUID) that includes a timestamp component, ensuring both uniqueness and time ordering.tinyintT -> (string)
An 8-bit signed integer value.tupleT -> (list)
A fixed-length ordered list of elements, where each element can be of a different data type.
(structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
value -> (tagged union structure)
The value stored in this cell, which can be of various data types supported by Amazon Keyspaces.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:asciiT
,bigintT
,blobT
,boolT
,counterT
,dateT
,decimalT
,doubleT
,floatT
,inetT
,intT
,listT
,mapT
,setT
,smallintT
,textT
,timeT
,timestampT
,timeuuidT
,tinyintT
,tupleT
,uuidT
,varcharT
,varintT
,udtT
.asciiT -> (string)
A value of ASCII text type, containing US-ASCII characters.bigintT -> (string)
A 64-bit signed integer value.blobT -> (blob)
A binary large object (BLOB) value stored as a Base64-encoded string.boolT -> (boolean)
A Boolean value, eithertrue
orfalse
.counterT -> (string)
A distributed counter value that can be incremented and decremented.dateT -> (string)
A date value without a time component, represented as days since epoch (January 1, 1970).decimalT -> (string)
A variable-precision decimal number value.doubleT -> (string)
A 64-bit double-precision floating point value.floatT -> (string)
A 32-bit single-precision floating point value.inetT -> (string)
An IP address value, either IPv4 or IPv6 format.intT -> (string)
A 32-bit signed integer value.listT -> (list)
An ordered collection of elements that can contain duplicate values.
( … recursive … )
mapT -> (list)
A collection of key-value pairs where each key is unique.
(structure)
Represents a key-value pair within a map data type in Amazon Keyspaces, including the associated metadata.
( … recursive … )( … recursive … )metadata -> (structure)
Metadata for this specific key-value pair within the map, such as timestamps and TTL information.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.setT -> (list)
An unordered collection of unique elements.
( … recursive … )
smallintT -> (string)
A 16-bit signed integer value.textT -> (string)
A UTF-8 encoded string value.timeT -> (string)
A time value without a date component, with nanosecond precision.timestampT -> (string)
A timestamp value representing date and time with millisecond precision.timeuuidT -> (string)
A universally unique identifier (UUID) that includes a timestamp component, ensuring both uniqueness and time ordering.tinyintT -> (string)
An 8-bit signed integer value.tupleT -> (list)
A fixed-length ordered list of elements, where each element can be of a different data type.
( … recursive … )
uuidT -> (string)
A universally unique identifier (UUID) value.varcharT -> (string)
A UTF-8 encoded string value, functionally equivalent to text type.varintT -> (string)
A variable precision integer value with arbitrary length.udtT -> (map)
A user-defined type (UDT) value consisting of named fields, each with its own data type.
key -> (string)
( … recursive … )
metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.uuidT -> (string)
A universally unique identifier (UUID) value.varcharT -> (string)
A UTF-8 encoded string value, functionally equivalent to text type.varintT -> (string)
A variable precision integer value with arbitrary length.udtT -> (map)
A user-defined type (UDT) value consisting of named fields, each with its own data type.
key -> (string)
value -> (structure)
Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.
value -> (tagged union structure)
The value stored in this cell, which can be of various data types supported by Amazon Keyspaces.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:asciiT
,bigintT
,blobT
,boolT
,counterT
,dateT
,decimalT
,doubleT
,floatT
,inetT
,intT
,listT
,mapT
,setT
,smallintT
,textT
,timeT
,timestampT
,timeuuidT
,tinyintT
,tupleT
,uuidT
,varcharT
,varintT
,udtT
.asciiT -> (string)
A value of ASCII text type, containing US-ASCII characters.bigintT -> (string)
A 64-bit signed integer value.blobT -> (blob)
A binary large object (BLOB) value stored as a Base64-encoded string.boolT -> (boolean)
A Boolean value, eithertrue
orfalse
.counterT -> (string)
A distributed counter value that can be incremented and decremented.dateT -> (string)
A date value without a time component, represented as days since epoch (January 1, 1970).decimalT -> (string)
A variable-precision decimal number value.doubleT -> (string)
A 64-bit double-precision floating point value.floatT -> (string)
A 32-bit single-precision floating point value.inetT -> (string)
An IP address value, either IPv4 or IPv6 format.intT -> (string)
A 32-bit signed integer value.listT -> (list)
An ordered collection of elements that can contain duplicate values.
( … recursive … )
mapT -> (list)
A collection of key-value pairs where each key is unique.
(structure)
Represents a key-value pair within a map data type in Amazon Keyspaces, including the associated metadata.
( … recursive … )( … recursive … )metadata -> (structure)
Metadata for this specific key-value pair within the map, such as timestamps and TTL information.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.setT -> (list)
An unordered collection of unique elements.
( … recursive … )
smallintT -> (string)
A 16-bit signed integer value.textT -> (string)
A UTF-8 encoded string value.timeT -> (string)
A time value without a date component, with nanosecond precision.timestampT -> (string)
A timestamp value representing date and time with millisecond precision.timeuuidT -> (string)
A universally unique identifier (UUID) that includes a timestamp component, ensuring both uniqueness and time ordering.tinyintT -> (string)
An 8-bit signed integer value.tupleT -> (list)
A fixed-length ordered list of elements, where each element can be of a different data type.
( … recursive … )
uuidT -> (string)
A universally unique identifier (UUID) value.varcharT -> (string)
A UTF-8 encoded string value, functionally equivalent to text type.varintT -> (string)
A variable precision integer value with arbitrary length.udtT -> (map)
A user-defined type (UDT) value consisting of named fields, each with its own data type.
key -> (string)
( … recursive … )
metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.metadata -> (structure)
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.rowMetadata -> (structure)
Metadata that applies to the entire row, such as timestamps and TTL information.
expirationTime -> (string)
The time at which the associated data will expire, based on the time-to-live (TTL) setting.writeTime -> (string)
The timestamp at which the associated data was written to the database.sequenceNumber -> (string)
A unique identifier assigned to this record within the shard, used for ordering and tracking purposes.
nextShardIterator -> (string)
The next position in the shard from which to start sequentially reading data records. If null, the shard has been closed and the requested iterator doesn’t return any more data.