smithy.api.HttpResponseCode.scala Maven / Gradle / Ivy
package smithy.api
import smithy4s.Hints
import smithy4s.Schema
import smithy4s.ShapeId
import smithy4s.ShapeTag
import smithy4s.schema.Schema.constant
/** Indicates that the structure member represents the HTTP response
* status code. The value MAY differ from the HTTP status code provided
* on the response.
*/
final case class HttpResponseCode()
object HttpResponseCode extends ShapeTag.Companion[HttpResponseCode] {
val id: ShapeId = ShapeId("smithy.api", "httpResponseCode")
val hints: Hints = Hints(
smithy.api.Documentation("Indicates that the structure member represents the HTTP response\nstatus code. The value MAY differ from the HTTP status code provided\non the response."),
smithy.api.Trait(selector = Some("structure :not([trait|input]) > member :test(> integer)"), structurallyExclusive = Some(smithy.api.StructurallyExclusive.MEMBER.widen), conflicts = Some(List(smithy.api.NonEmptyString("smithy.api#httpLabel"), smithy.api.NonEmptyString("smithy.api#httpQuery"), smithy.api.NonEmptyString("smithy.api#httpHeader"), smithy.api.NonEmptyString("smithy.api#httpPrefixHeaders"), smithy.api.NonEmptyString("smithy.api#httpPayload"), smithy.api.NonEmptyString("smithy.api#httpQueryParams"))), breakingChanges = Some(List(smithy.api.TraitDiffRule(change = smithy.api.TraitChangeType.ANY.widen, severity = smithy.api.Severity.ERROR.widen, path = None, message = None)))),
).lazily
implicit val schema: Schema[HttpResponseCode] = constant(HttpResponseCode()).withId(id).addHints(hints)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy