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

smithy.api.AuthTraitReference.scala Maven / Gradle / Ivy

There is a newer version: 0.19.0-41-91762fb
Show newest version
package smithy.api

import smithy4s.Hints
import smithy4s.Newtype
import smithy4s.Schema
import smithy4s.ShapeId
import smithy4s.schema.Schema.bijection
import smithy4s.schema.Schema.string

/** A string that must target an auth trait. */
object AuthTraitReference extends Newtype[ShapeId] {
  val id: ShapeId = ShapeId("smithy.api", "AuthTraitReference")
  val hints: Hints = Hints(
    smithy.api.Documentation("A string that must target an auth trait."),
    smithy.api.Private(),
  ).lazily
  val underlyingSchema: Schema[ShapeId] = string.refined[ShapeId](smithy.api.IdRef(selector = "[trait|authDefinition]", failWhenMissing = None, errorMessage = None)).withId(id).addHints(hints)
  implicit val schema: Schema[AuthTraitReference] = bijection(underlyingSchema, asBijection)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy