Module Values.GlossaryItemSource

The details of a business glossary.

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

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

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

    The identifier of the glossary.

    *)
  3. name : GlossaryName.t option;
    (*

    The name of the glossary.

    *)
  4. owningProjectId : ProjectId.t option;
    (*

    The identifier of the project that owns the business glosary.

    *)
  5. description : GlossaryDescription.t option;
    (*

    The business glossary description.

    *)
  6. status : GlossaryStatus.t option;
    (*

    The business glossary status.

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

    The usage restrictions associated with a goverened glossary term.

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

    The timestamp of when the glossary was created.

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

    The Amazon DataZone user who created the glossary.

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

    The timestamp of when the business glossary was updated.

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

    The Amazon DataZone user who updated the business glossary.

    *)
  12. additionalAttributes : GlossaryItemAdditionalAttributes.t option;
    (*

    The additional attributes of an Amazon DataZone glossary.

    *)
}
Sourceval make : ?domainId:??? -> ?id:??? -> ?name:??? -> ?owningProjectId:??? -> ?description:??? -> ?status:??? -> ?usageRestrictions:??? -> ?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 [> `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