-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add DSL overloads, paginators, and better builder integration for DDB…
… Mapper ops codegen (#1409)
- Loading branch information
Showing
48 changed files
with
1,464 additions
and
573 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
...pper-codegen/src/main/kotlin/aws/sdk/kotlin/hll/dynamodbmapper/codegen/model/MapperPkg.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* | ||
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
package aws.sdk.kotlin.hll.dynamodbmapper.codegen.model | ||
|
||
import aws.sdk.kotlin.runtime.InternalSdkApi | ||
|
||
@InternalSdkApi | ||
public object MapperPkg { | ||
@InternalSdkApi | ||
public object Hl { | ||
public val Base: String = "aws.sdk.kotlin.hll.dynamodbmapper" | ||
public val Annotations: String = "$Base.annotations" | ||
public val Items: String = "$Base.items" | ||
public val Model: String = "$Base.model" | ||
public val Ops: String = "$Base.operations" | ||
public val PipelineImpl: String = "$Base.pipeline.internal" | ||
public val Values: String = "$Base.values" | ||
public val CollectionValues: String = "$Values.collections" | ||
public val ScalarValues: String = "$Values.scalars" | ||
public val SmithyTypeValues: String = "$Values.smithytypes" | ||
} | ||
|
||
@InternalSdkApi | ||
public object Ll { | ||
public val Base: String = "aws.sdk.kotlin.services.dynamodb" | ||
public val Model: String = "$Base.model" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.