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

zio.lambda.event.CloudFormationCustomResourceEvent.scala Maven / Gradle / Ivy

The newest version!
package zio.lambda.event

import zio.json._

final case class CloudFormationCustomResourceEvent(
  requestType: String,
  serviceToken: String,
  responseUrl: String,
  stackId: String,
  requestId: String,
  logicalResourceId: String,
  physicalResourceId: String,
  resourceType: String,
  resourceProperties: Map[String, String],
  oldResourceProperties: Map[String, String]
)

object CloudFormationCustomResourceEvent {
  implicit val decoder: JsonDecoder[CloudFormationCustomResourceEvent] =
    DeriveJsonDecoder.gen[CloudFormationCustomResourceEvent]
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy