smithy.api.Property.scala Maven / Gradle / Ivy
package smithy.api
import smithy4s.Hints
import smithy4s.Schema
import smithy4s.ShapeId
import smithy4s.ShapeTag
import smithy4s.schema.Schema.recursive
import smithy4s.schema.Schema.string
import smithy4s.schema.Schema.struct
/** Configures a structure member's resource property mapping behavior. */
final case class Property(name: Option[String] = None)
object Property extends ShapeTag.Companion[Property] {
val id: ShapeId = ShapeId("smithy.api", "property")
val hints: Hints = Hints(
smithy.api.Documentation("Configures a structure member\'s resource property mapping behavior."),
smithy.api.Trait(selector = Some("structure > member"), structurallyExclusive = None, conflicts = Some(List(smithy.api.NonEmptyString("smithy.api#resourceIdentifier"))), breakingChanges = Some(List(smithy.api.TraitDiffRule(change = smithy.api.TraitChangeType.REMOVE.widen, severity = smithy.api.Severity.ERROR.widen, path = None, message = None), smithy.api.TraitDiffRule(change = smithy.api.TraitChangeType.UPDATE.widen, severity = smithy.api.Severity.ERROR.widen, path = None, message = None)))),
).lazily
// constructor using the original order from the spec
private def make(name: Option[String]): Property = Property(name)
implicit val schema: Schema[Property] = recursive(struct(
string.optional[Property]("name", _.name),
)(make).withId(id).addHints(hints))
}