commonMain.aws.sdk.kotlin.hll.dynamodbmapper.expressions.ScalarFunc.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dynamodb-mapper-jvm Show documentation
Show all versions of dynamodb-mapper-jvm Show documentation
High level DynamoDbMapper client
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
package aws.sdk.kotlin.hll.dynamodbmapper.expressions
import aws.smithy.kotlin.runtime.ExperimentalApi
/**
* Identifies a
* [DynamoDB expression function](https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.OperatorsAndFunctions.html#Expressions.OperatorsAndFunctions.Functions)
* which returns a non-boolean value
* @param exprString The literal name of the function to use in expression strings
*/
@ExperimentalApi
public enum class ScalarFunc(public val exprString: String) {
/**
* The `size` function
*/
SIZE("size"),
}