Module Values.EntityDescriptionSource

Describes the properties of an entity.

Sourcetype nonrec t = {
  1. id : Urn.t option;
    (*

    The entity ID.

    *)
  2. arn : Arn.t option;
    (*

    The entity ARN.

    *)
  3. type_ : EntityType.t option;
    (*

    The entity type.

    *)
  4. createdAt : Timestamp.t option;
    (*

    The time at which the entity was created.

    *)
  5. definition : DefinitionDocument.t option;
    (*

    The definition document of the entity.

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?type_:??? -> ?createdAt:??? -> ?definition:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Urn.t | `Structure of (string * [> `Enum of string | `String of DefinitionText.t ]) list | `Timestamp of Timestamp.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t