smithy.api.LocalMixinTrait.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
object LocalMixinTrait extends Newtype[ShapeId] {
val id: ShapeId = ShapeId("smithy.api", "LocalMixinTrait")
val hints: Hints = Hints(
smithy.api.Private(),
).lazily
val underlyingSchema: Schema[ShapeId] = string.refined[ShapeId](smithy.api.IdRef(selector = "[trait|trait]", failWhenMissing = Some(true), errorMessage = Some("Strings provided to the localTraits property of a mixin trait\nmust target a valid trait."))).withId(id).addHints(hints)
implicit val schema: Schema[LocalMixinTrait] = bijection(underlyingSchema, asBijection)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy