All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.hll.dynamodbmapper.items.internal.ItemSchemaImpl.kt Maven / Gradle / Ivy

There is a newer version: 1.3.73-beta
Show newest version
/*
 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * SPDX-License-Identifier: Apache-2.0
 */
package aws.sdk.kotlin.hll.dynamodbmapper.items.internal

import aws.sdk.kotlin.hll.dynamodbmapper.items.ItemConverter
import aws.sdk.kotlin.hll.dynamodbmapper.items.ItemSchema
import aws.sdk.kotlin.hll.dynamodbmapper.items.KeySpec

internal data class ItemSchemaPartitionKeyImpl(
    override val converter: ItemConverter,
    override val partitionKey: KeySpec,
) : ItemSchema.PartitionKey

internal data class ItemSchemaCompositeKeyImpl(
    override val converter: ItemConverter,
    override val partitionKey: KeySpec,
    override val sortKey: KeySpec,
) : ItemSchema.CompositeKey




© 2015 - 2024 Weber Informatics LLC | Privacy Policy