Module Values.ProjectSummarySource

The details of a Amazon DataZone project.

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

    The identifier of a Amazon DataZone domain where the project exists.

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

    The identifier of a project.

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

    The name of a project.

    *)
  4. description : Description.t option;
    (*

    The description of a project.

    *)
  5. projectStatus : ProjectStatus.t option;
    (*

    The status of the project.

    *)
  6. failureReasons : FailureReasons.t option;
    (*

    Specifies the error message that is returned if the operation cannot be successfully completed.

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

    The Amazon DataZone user who created the project.

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

    The timestamp of when a project was created.

    *)
  9. updatedAt : SyntheticTimestamp_date_time.t option;
    (*

    The timestamp of when the project was updated.

    *)
  10. domainUnitId : DomainUnitId.t option;
    (*

    The ID of the domain unit.

    *)
  11. projectCategory : String_.t option;
    (*

    The category of the project.

    *)
}
Sourceval make : ?domainId:??? -> ?id:??? -> ?name:??? -> ?description:??? -> ?projectStatus:??? -> ?failureReasons:??? -> ?createdBy:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?domainUnitId:??? -> ?projectCategory:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of DomainId.t | `Timestamp of SyntheticTimestamp_date_time.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