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

org.http4k.format.AwsLambdaMoshi.kt Maven / Gradle / Ivy

There is a newer version: 5.45.1.0
Show newest version
package org.http4k.format

import com.squareup.moshi.Moshi

object AwsLambdaMoshi : ConfigurableMoshi(
    Moshi.Builder()
        .addTyped(CloudWatchLogsEventAdapter)
        .addTyped(DynamodbEventAdapter)
        .addTyped(EventBridgeEventAdapter)
        .addTyped(KinesisEventAdapter)
        .addTyped(KinesisFirehoseEventAdapter)
        .addTyped(S3EventAdapter)
        .addTyped(ScheduledEventAdapter)
        .addTyped(SNSEventAdapter)
        .addTyped(SQSBatchResponseAdapter)
        .addTyped(SQSEventAdapter)
        .addLast(MapAdapter)
        .addLast(ListAdapter)
        .addLast(EventAdapter)
        .asConfigurable()
        .withStandardMappings()
        .done()
)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy