Module Values.CollaborationAnalysisTemplateSummarySource

The metadata of the analysis template within a collaboration.

Sourcetype nonrec t = {
  1. arn : AnalysisTemplateArn.t option;
    (*

    The Amazon Resource Name (ARN) of the analysis template.

    *)
  2. createTime : Timestamp.t option;
    (*

    The time that the summary of the analysis template in a collaboration was created.

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

    The identifier of the analysis template.

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

    The name of the analysis template.

    *)
  5. updateTime : Timestamp.t option;
    (*

    The time that the summary of the analysis template in the collaboration was last updated.

    *)
  6. collaborationArn : CollaborationArn.t option;
    (*

    The unique ARN for the analysis template’s associated collaboration.

    *)
  7. collaborationId : UUID.t option;
    (*

    A unique identifier for the collaboration that the analysis templates belong to. Currently accepts collaboration ID.

    *)
  8. creatorAccountId : AccountId.t option;
    (*

    The identifier used to reference members of the collaboration. Currently only supports Amazon Web Services account ID.

    *)
  9. description : ResourceDescription.t option;
    (*

    The description of the analysis template.

    *)
  10. isSyntheticData : Boolean.t option;
    (*

    Indicates if this collaboration analysis template uses synthetic data generation.

    *)
}
Sourceval make : ?arn:??? -> ?createTime:??? -> ?id:??? -> ?name:??? -> ?updateTime:??? -> ?collaborationArn:??? -> ?collaborationId:??? -> ?creatorAccountId:??? -> ?description:??? -> ?isSyntheticData:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of AnalysisTemplateArn.t | `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