Skip to content

Commit fded3b8

Browse files
committed
Add missing imports
1 parent 3c95c43 commit fded3b8

File tree

6 files changed

+6
-0
lines changed

6 files changed

+6
-0
lines changed

hll/dynamodb-mapper/dynamodb-mapper/common/src/aws/sdk/kotlin/hll/dynamodbmapper/expressions/Filter.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ package aws.sdk.kotlin.hll.dynamodbmapper.expressions
66

77
import aws.sdk.kotlin.hll.dynamodbmapper.util.dynamicAttr
88
import aws.smithy.kotlin.runtime.ExperimentalApi
9+
import kotlin.jvm.JvmName
910

1011
/**
1112
* A DSL interface providing support for "low-level" filter expressions. Implementations of this interface provide

hll/dynamodb-mapper/dynamodb-mapper/common/src/aws/sdk/kotlin/hll/dynamodbmapper/expressions/LiteralExpr.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import aws.sdk.kotlin.hll.dynamodbmapper.expressions.internal.LiteralExprImpl
88
import aws.sdk.kotlin.hll.dynamodbmapper.util.attr
99
import aws.sdk.kotlin.services.dynamodb.model.AttributeValue
1010
import aws.smithy.kotlin.runtime.ExperimentalApi
11+
import kotlin.jvm.JvmName
1112

1213
/**
1314
* Represents an expression that consists of a single literal value

hll/dynamodb-mapper/dynamodb-mapper/common/src/aws/sdk/kotlin/hll/dynamodbmapper/expressions/SortKeyFilter.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
package aws.sdk.kotlin.hll.dynamodbmapper.expressions
66

77
import aws.smithy.kotlin.runtime.ExperimentalApi
8+
import kotlin.jvm.JvmName
89

910
/**
1011
* Represents a sort key independent of schema

hll/dynamodb-mapper/dynamodb-mapper/common/src/aws/sdk/kotlin/hll/dynamodbmapper/internal/DynamoDbMapperImpl.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ import aws.sdk.kotlin.services.dynamodb.withConfig
1414
import aws.smithy.kotlin.runtime.businessmetrics.emitBusinessMetric
1515
import aws.smithy.kotlin.runtime.client.RequestInterceptorContext
1616
import aws.smithy.kotlin.runtime.http.interceptors.HttpInterceptor
17+
import aws.smithy.kotlin.runtime.io.use
1718

1819
internal data class DynamoDbMapperImpl(
1920
override val client: DynamoDbClient,

hll/dynamodb-mapper/dynamodb-mapper/common/src/aws/sdk/kotlin/hll/dynamodbmapper/model/Item.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import aws.sdk.kotlin.hll.dynamodbmapper.model.internal.ItemImpl
88
import aws.sdk.kotlin.hll.dynamodbmapper.util.dynamicAttr
99
import aws.sdk.kotlin.services.dynamodb.model.AttributeValue
1010
import aws.smithy.kotlin.runtime.ExperimentalApi
11+
import kotlin.jvm.JvmName
1112

1213
/**
1314
* An immutable representation of a low-level item in a DynamoDB table. Items consist of attributes, each of which have

hll/dynamodb-mapper/dynamodb-mapper/common/src/aws/sdk/kotlin/hll/dynamodbmapper/util/AttributeValues.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
package aws.sdk.kotlin.hll.dynamodbmapper.util
66

77
import aws.sdk.kotlin.services.dynamodb.model.AttributeValue
8+
import kotlin.jvm.JvmName
89

910
internal val NULL_ATTR = AttributeValue.Null(true)
1011

0 commit comments

Comments
 (0)