Module Values_1.DescribeExperimentResponseSource

Provides a list of an experiment's properties.

Sourcetype nonrec t = {
  1. experimentName : Values_0.ExperimentEntityName.t option;
    (*

    The name of the experiment.

    *)
  2. experimentArn : Values_0.ExperimentArn.t option;
    (*

    The Amazon Resource Name (ARN) of the experiment.

    *)
  3. displayName : Values_0.ExperimentEntityName.t option;
    (*

    The name of the experiment as displayed. If DisplayName isn't specified, ExperimentName is displayed.

    *)
  4. source : ExperimentSource.t option;
    (*

    The Amazon Resource Name (ARN) of the source and, optionally, the type.

    *)
  5. description : Values_0.ExperimentDescription.t option;
    (*

    The description of the experiment.

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

    When the experiment was created.

    *)
  7. createdBy : Values_0.UserContext.t option;
    (*

    Who created the experiment.

    *)
  8. lastModifiedTime : Values_0.Timestamp.t option;
    (*

    When the experiment was last modified.

    *)
  9. lastModifiedBy : Values_0.UserContext.t option;
    (*

    Who last modified the experiment.

    *)
}
Sourcetype nonrec error = [
  1. | `ResourceNotFound of Values_0.ResourceNotFound.t
  2. | `Unknown_operation_error of string * string option
]
Sourceval make : ?experimentName:??? -> ?experimentArn:??? -> ?displayName:??? -> ?source:??? -> ?description:??? -> ?creationTime:??? -> ?createdBy:??? -> ?lastModifiedTime:??? -> ?lastModifiedBy:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ResourceNotFound of Values_0.ResourceNotFound.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ResourceNotFound of Values_0.ResourceNotFound.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_0.ExperimentEntityName.t | `Structure of (string * [> `String of ExperimentSourceArn.t | `Structure of (string * [> `String of string ]) list ]) list | `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