Module Values.GlossaryTermItemSource

The details of a business glossary term.

Sourcetype nonrec t = {
  1. domainId : DomainId.t option;
    (*

    The identifier of the Amazon DataZone domain in which the business glossary exists.

    *)
  2. glossaryId : GlossaryId.t option;
    (*

    The identifier of the business glossary to which the term belongs.

    *)
  3. id : GlossaryTermId.t option;
    (*

    The identifier of the business glossary term.

    *)
  4. name : GlossaryTermName.t option;
    (*

    The name of the business glossary term.

    *)
  5. shortDescription : ShortDescription.t option;
    (*

    The short description of the business glossary term.

    *)
  6. usageRestrictions : GlossaryUsageRestrictions.t option;
    (*

    The usage restrictions associated with a goverened glossary term.

    *)
  7. longDescription : LongDescription.t option;
    (*

    The long description of the business glossary term.

    *)
  8. termRelations : TermRelations.t option;
    (*

    The relations of the business glossary term.

    *)
  9. status : GlossaryTermStatus.t option;
    (*

    The status of the business glossary term.

    *)
  10. createdAt : CreatedAt.t option;
    (*

    The timestamp of when a business glossary term was created.

    *)
  11. createdBy : CreatedBy.t option;
    (*

    The Amazon DataZone user who created the business glossary.

    *)
  12. updatedAt : UpdatedAt.t option;
    (*

    The timestamp of when a business glossary term was updated.

    *)
  13. updatedBy : UpdatedBy.t option;
    (*

    The Amazon DataZone user who updated the business glossary term.

    *)
  14. additionalAttributes : GlossaryTermItemAdditionalAttributes.t option;
    (*

    The additional attributes of an Amazon DataZone glossary term.

    *)
}
Sourceval make : ?domainId:??? -> ?glossaryId:??? -> ?id:??? -> ?name:??? -> ?shortDescription:??? -> ?usageRestrictions:??? -> ?longDescription:??? -> ?termRelations:??? -> ?status:??? -> ?createdAt:??? -> ?createdBy:??? -> ?updatedAt:??? -> ?updatedBy:??? -> ?additionalAttributes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string ] list | `String of DomainId.t | `Structure of (string * [> `List of [> `String of GlossaryTermId.t | `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `Structure of (string * [> `Integer of Integer.t ]) list ] list | `String of Attribute.t ]) list ] list ]) list ] list ]) list | `Timestamp of CreatedAt.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