smithy.api.HttpLabel.scala Maven / Gradle / Ivy
package smithy.api
import smithy4s.Hints
import smithy4s.Schema
import smithy4s.ShapeId
import smithy4s.ShapeTag
import smithy4s.schema.Schema.constant
/** Binds an operation input structure member to an HTTP label. */
final case class HttpLabel()
object HttpLabel extends ShapeTag.Companion[HttpLabel] {
val id: ShapeId = ShapeId("smithy.api", "httpLabel")
val hints: Hints = Hints(
smithy.api.Documentation("Binds an operation input structure member to an HTTP label."),
smithy.api.Trait(selector = Some("structure > member[trait|required] :test(> :test(string, number, boolean, timestamp))"), structurallyExclusive = None, conflicts = Some(List(smithy.api.NonEmptyString("smithy.api#httpHeader"), smithy.api.NonEmptyString("smithy.api#httpQuery"), smithy.api.NonEmptyString("smithy.api#httpPrefixHeaders"), smithy.api.NonEmptyString("smithy.api#httpPayload"), smithy.api.NonEmptyString("smithy.api#httpResponseCode"), smithy.api.NonEmptyString("smithy.api#httpQueryParams"))), 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[HttpLabel] = constant(HttpLabel()).withId(id).addHints(hints)
}