Module Values.ExperimentTemplateSummarySource

Provides a summary of an experiment template.

Sourcetype nonrec t = {
  1. id : ExperimentTemplateId.t option;
    (*

    The ID of the experiment template.

    *)
  2. arn : ResourceArn.t option;
    (*

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

    *)
  3. description : ExperimentTemplateDescription.t option;
    (*

    The description of the experiment template.

    *)
  4. creationTime : CreationTime.t option;
    (*

    The time that the experiment template was created.

    *)
  5. lastUpdateTime : LastUpdateTime.t option;
    (*

    The time that the experiment template was last updated.

    *)
  6. tags : TagMap.t option;
    (*

    The tags for the experiment template.

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?description:??? -> ?creationTime:??? -> ?lastUpdateTime:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of ExperimentTemplateId.t | `Timestamp of CreationTime.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