AWS SDK for Kotlin
Toggle table of contents
1.8.22
common
Platform filter
common
Switch theme
Skip to content
AWS SDK for Kotlin
dynamodb-mapper
/
aws.sdk.kotlin.hll.dynamodbmapper.operations
/
TransactWriteItemsRequestTableDsl
/
CompositeKey
Composite
Key
interface
CompositeKey
<
T
,
PK
:
KeyType
,
SK
:
KeyType
>
:
TransactWriteItemsRequestTableDsl
<
T
>
Members
Properties
condition
Checks
Link copied to clipboard
abstract
var
conditionChecks
:
List
<
TransactWriteItemsAction.ConditionCheck
<
Pair
<
PK
,
SK
>
>
>
deletes
Link copied to clipboard
abstract
var
deletes
:
List
<
TransactWriteItemsAction.Delete
<
Pair
<
PK
,
SK
>
>
>
updates
Link copied to clipboard
abstract
var
updates
:
List
<
TransactWriteItemsAction.Update
<
Pair
<
PK
,
SK
>
>
>
Inherited properties
puts
Link copied to clipboard
abstract
var
puts
:
List
<
TransactWriteItemsAction.Put
<
T
>
>
Functions
condition
Check
Link copied to clipboard
abstract
fun
conditionCheck
(
partitionKey
:
PK
,
sortKey
:
SK
,
block
:
TransactWriteItemsRequestTableDsl.ConditionCheck
.
(
)
->
Unit
=
{ }
)
delete
Link copied to clipboard
abstract
fun
delete
(
partitionKey
:
PK
,
sortKey
:
SK
,
block
:
TransactWriteItemsRequestTableDsl.Delete
.
(
)
->
Unit
=
{ }
)
update
Link copied to clipboard
abstract
fun
update
(
partitionKey
:
PK
,
sortKey
:
SK
,
block
:
TransactWriteItemsRequestTableDsl.Update
.
(
)
->
Unit
=
{ }
)
Inherited functions
put
Link copied to clipboard
abstract
fun
put
(
item
:
T
,
block
:
TransactWriteItemsRequestTableDsl.Put
.
(
)
->
Unit
=
{ }
)