smithy.api.Input.scala Maven / Gradle / Ivy
package smithy.api
import smithy4s.Hints
import smithy4s.Schema
import smithy4s.ShapeId
import smithy4s.ShapeTag
import smithy4s.schema.Schema.constant
/** Specializes a structure for use only as the input of a single operation. */
final case class Input()
object Input extends ShapeTag.Companion[Input] {
val id: ShapeId = ShapeId("smithy.api", "input")
val hints: Hints = Hints(
smithy.api.Documentation("Specializes a structure for use only as the input of a single operation."),
smithy.api.Trait(selector = Some("structure"), structurallyExclusive = None, conflicts = Some(List(smithy.api.NonEmptyString("smithy.api#output"), smithy.api.NonEmptyString("smithy.api#error"))), breakingChanges = Some(List(smithy.api.TraitDiffRule(change = smithy.api.TraitChangeType.PRESENCE.widen, severity = smithy.api.Severity.ERROR.widen, path = None, message = None)))),
).lazily
implicit val schema: Schema[Input] = constant(Input()).withId(id).addHints(hints)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy