Module Values_2.ProjectSummarySource

Information about a project.

Sourcetype nonrec t = {
  1. projectName : Values_1.ProjectEntityName.t option;
    (*

    The name of the project.

    *)
  2. projectDescription : Values_0.EntityDescription.t option;
    (*

    The description of the project.

    *)
  3. projectArn : Values_1.ProjectArn.t option;
    (*

    The Amazon Resource Name (ARN) of the project.

    *)
  4. projectId : Values_1.ProjectId.t option;
    (*

    The ID of the project.

    *)
  5. creationTime : Values_0.Timestamp.t option;
    (*

    The time that the project was created.

    *)
  6. projectStatus : Values_1.ProjectStatus.t option;
    (*

    The status of the project.

    *)
}
Sourceval make : ?projectName:??? -> ?projectDescription:??? -> ?projectArn:??? -> ?projectId:??? -> ?creationTime:??? -> ?projectStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_1.ProjectEntityName.t | `Timestamp of Values_0.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