smithy.api.AuthTraitReference.scala Maven / Gradle / Ivy
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)
}