Module Values.AnalysisTemplateSummarySource

The metadata of the analysis template.

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 analysis template summary 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 analysis template summary was last updated.

    *)
  6. membershipArn : MembershipArn.t option;
    (*

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

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

    The identifier for a membership resource.

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

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

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

    A unique identifier for the collaboration that the analysis template summary belongs to. Currently accepts collaboration ID.

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

    The description of the analysis template.

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

    Indicates if this analysis template summary generated synthetic data.

    *)
}
Sourceval make : ?arn:??? -> ?createTime:??? -> ?id:??? -> ?name:??? -> ?updateTime:??? -> ?membershipArn:??? -> ?membershipId:??? -> ?collaborationArn:??? -> ?collaborationId:??? -> ?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